diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index c6061f0..d8bfbd5 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -1,6 +1,5 @@ fn main() { let src_dir = std::path::Path::new("src"); - let mut c_config = cc::Build::new(); c_config.include(&src_dir); c_config @@ -8,33 +7,10 @@ fn main() { .flag_if_supported("-Wno-unused-but-set-variable") .flag_if_supported("-Wno-trigraphs"); let parser_path = src_dir.join("parser.c"); - c_config.file(&parser_path); - - // If your language uses an external scanner written in C, - // then include this block of code: - - /* let scanner_path = src_dir.join("scanner.c"); - c_config.file(&scanner_path); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - */ - - c_config.compile("parser"); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - - // If your language uses an external scanner written in C++, - // then include this block of code: - - /* - let mut cpp_config = cc::Build::new(); - cpp_config.cpp(true); - cpp_config.include(&src_dir); - cpp_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable"); - let scanner_path = src_dir.join("scanner.cc"); - cpp_config.file(&scanner_path); - cpp_config.compile("scanner"); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - */ + c_config.file(&parser_path); + c_config.file(&scanner_path); + c_config.compile("parser-scanner"); } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 39b1183..a0831d4 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -33,11 +33,14 @@ pub fn language() -> Language { /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); -// Uncomment these to include any queries that this grammar contains +/// The source of the Rust tree-sitter grammar description. +pub const GRAMMAR: &str = include_str!("../../grammar.js"); -// pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm"); -// pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); -// pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); +// Uncomment these to include any queries that this grammar contains +pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm"); +pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); +pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); +pub const TEXTOBJECTS_QUERY: &'static str = include_str!("../../queries/textobjects.scm"); // pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); #[cfg(test)] diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 3ea51bb..2dfd283 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -1,37 +1,18 @@ ================================================================================ -Dependencies +Modules ================================================================================ -dep english; +mod english; -dep english {} - -dep english { - dep greetings {} - dep farewells {} -} - -dep bar/baz; +pub mod english; -------------------------------------------------------------------------------- (source_file - (dep_item + (mod_item (identifier)) - (dep_item - (identifier) - (declaration_list)) - (dep_item - (identifier) - (declaration_list - (dep_item - (identifier) - (declaration_list)) - (dep_item - (identifier) - (declaration_list)))) - (dep_item - (identifier) + (mod_item + (visibility_modifier) (identifier))) ================================================================================ @@ -777,6 +758,28 @@ const OWNER_ADDRESS = Address::from(0x8900c5bec4ca97d4febf9ceb4754a60d782abbf3cd (arguments (integer_literal))))) +================================================================================ +Type aliases +================================================================================ + +type Inch = u64; +type Name = Vec; + +-------------------------------------------------------------------------------- + +(source_file + (type_item + (type_identifier) + (primitive_type)) + (type_item + (type_identifier) + (type_parameters + (type_identifier)) + (generic_type + (type_identifier) + (type_arguments + (type_identifier))))) + ================================================================================ Empty statements ================================================================================ @@ -808,7 +811,7 @@ struct Baz; struct Foo; #[cfg(target_os = "macos")] -dep macos_only {} +mod macos_only; #![allow(clippy::useless_transmute)] @@ -850,9 +853,8 @@ fn receive_funds() { arguments: (token_tree (identifier) (string_literal)))) - (dep_item - name: (identifier) - body: (declaration_list)) + (mod_item + name: (identifier)) (inner_attribute_item (attribute (identifier) @@ -879,27 +881,6 @@ fn receive_funds() { body: (block (line_comment)))) -================================================================================ -Inner attributes -================================================================================ - -dep macos_only { - #![cfg(target_os = "macos")] -} - --------------------------------------------------------------------------------- - -(source_file - (dep_item - name: (identifier) - body: (declaration_list - (inner_attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier) - (string_literal))))))) - ================================================================================ Key-Value Attribute Expressions ================================================================================ diff --git a/corpus/keywords.txt b/corpus/keywords.txt index 43cbce0..e6a4916 100644 --- a/corpus/keywords.txt +++ b/corpus/keywords.txt @@ -96,6 +96,19 @@ configurable { C8: u64 = 0, // Unused - should not show up in the JSON file } +configurable { + // Only compiles for FVM + #[cfg(target = "fuel")] + CFG_VALUE: u64 = 40, + // Only compiles for EVM + #[cfg(target = "evm")] + CFG_VALUE: () = (), + // Never compiles + #[cfg(target = "fuel")] + #[cfg(target = "evm")] + CFG_VALUE: () = (), +} + -------------------------------------------------------------------------------- (source_file @@ -116,7 +129,7 @@ configurable { (storage_content (field_declaration (field_identifier) - (type_identifier)) + (primitive_type)) (integer_literal)) (storage_content (field_declaration @@ -173,7 +186,51 @@ configurable { (field_identifier) (primitive_type)) (integer_literal)) - (line_comment)))) + (line_comment))) + (configurable_item + (storage_content_list + (line_comment) + (storage_content + (attribute_item + (attribute + (identifier) + (token_tree + (identifier) + (string_literal)))) + (field_declaration + (field_identifier) + (primitive_type)) + (integer_literal)) + (line_comment) + (storage_content + (attribute_item + (attribute + (identifier) + (token_tree + (identifier) + (string_literal)))) + (field_declaration + (field_identifier) + (unit_type)) + (unit_expression)) + (line_comment) + (storage_content + (attribute_item + (attribute + (identifier) + (token_tree + (identifier) + (string_literal)))) + (attribute_item + (attribute + (identifier) + (token_tree + (identifier) + (string_literal)))) + (field_declaration + (field_identifier) + (unit_type)) + (unit_expression))))) ================================================================================ ABI items @@ -615,7 +672,7 @@ script; predicate; -library my_lib; +library; -------------------------------------------------------------------------------- @@ -623,6 +680,5 @@ library my_lib; (program_type) (program_type) (program_type) - (program_type - (identifier))) + (program_type)) diff --git a/corpus/literals.txt b/corpus/literals.txt index a7a225e..f8e4a13 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -13,6 +13,8 @@ Integer literals 0o70_i16; 0b1111_1111_1001_0000_i32; 1u128; +0x0000000000000000000000000000000000000000000000000000000000000001u256; +0x0000000000000000000000000000000000000000000000000000000000000001b256; -------------------------------------------------------------------------------- @@ -37,6 +39,10 @@ Integer literals (integer_literal)) (expression_statement (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) (expression_statement (integer_literal))) diff --git a/corpus/types.txt b/corpus/types.txt index ec6e2f4..5e8b916 100644 --- a/corpus/types.txt +++ b/corpus/types.txt @@ -75,28 +75,28 @@ let b: *const str; Generic types ================================================================================ -let a: B; -let d: E; -let j: H; +type A = B; +type D = E; +type J = H; -------------------------------------------------------------------------------- (source_file - (let_declaration - (identifier) + (type_item + (type_identifier) (generic_type (type_identifier) (type_arguments (type_identifier)))) - (let_declaration - (identifier) + (type_item + (type_identifier) (generic_type (type_identifier) (type_arguments (type_identifier) (primitive_type)))) - (let_declaration - (identifier) + (type_item + (type_identifier) (generic_type (type_identifier) (type_arguments diff --git a/grammar.js b/grammar.js index b4b6b55..f74c9be 100644 --- a/grammar.js +++ b/grammar.js @@ -29,6 +29,9 @@ const numeric_types = [ 'i64', 'u128', 'i128', + 'u256', + 'i256', + 'b256', 'isize', 'usize', 'f32', @@ -117,9 +120,10 @@ module.exports = grammar({ $.empty_statement, $.attribute_item, $.inner_attribute_item, - $.dep_item, + $.mod_item, $.struct_item, $.enum_item, + $.type_item, $.function_item, $.function_signature_item, $.impl_item, @@ -165,8 +169,8 @@ module.exports = grammar({ $.primitive_type, /[/_\-=->,;:::!=?.@*&#%^+<>|~]+/, '\'', - 'abi', 'as', 'break', 'configurable', 'const', 'continue', 'default', 'dep', 'enum', 'fn', 'for', 'if', 'impl', - 'let', 'match', 'pub', 'return', 'storage', 'struct', 'trait', 'use', 'where', 'while' + 'abi', 'as', 'break', 'configurable', 'const', 'continue', 'default', 'mod', 'enum', 'fn', 'for', 'if', 'impl', + 'let', 'match', 'mod', 'pub', 'return', 'storage', 'struct', 'trait', 'type', 'use', 'where', 'while' ), // Section - Declarations @@ -194,14 +198,11 @@ module.exports = grammar({ )) ), - dep_item: $ => seq( + mod_item: $ => seq( optional($.visibility_modifier), - 'dep', - field('name', sepBy('/', $.identifier)), - choice( - ';', - field('body', $.declaration_list) - ) + 'mod', + field('name', $.identifier), + ';', ), declaration_list: $ => seq( @@ -272,6 +273,7 @@ module.exports = grammar({ ), storage_content: $ => seq( + optional(repeat($.attribute_item)), $.field_declaration, '=', field('value', $._expression) @@ -322,6 +324,16 @@ module.exports = grammar({ field('body', $.asm_block), ), + type_item: $ => seq( + optional($.visibility_modifier), + 'type', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + '=', + field('type', $._type), + ';', + ), + function_item: $ => seq( optional($.visibility_modifier), optional($.function_modifiers), diff --git a/queries/highlights.scm b/queries/highlights.scm index 98f4d44..9387c90 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -134,7 +134,7 @@ ] @keyword.other "use" @keyword.control.import -(dep_item "dep" @keyword.control.import !body) +(mod_item "mod" @keyword.control.import !body) (use_as_clause "as" @keyword.control.import) (type_cast_expression "as" @keyword.operator) @@ -142,8 +142,7 @@ [ "as" "pub" - "dep" - + "mod" "abi" "impl" "where" @@ -305,7 +304,7 @@ argument: (identifier) @namespace) (use_wildcard (identifier) @namespace) -(dep_item +(mod_item name: (identifier) @namespace) (scoped_use_list path: (identifier)? @namespace) diff --git a/src/grammar.json b/src/grammar.json index 735229c..08404e3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -85,6 +85,18 @@ "type": "STRING", "value": "i128" }, + { + "type": "STRING", + "value": "u256" + }, + { + "type": "STRING", + "value": "i256" + }, + { + "type": "STRING", + "value": "b256" + }, { "type": "STRING", "value": "isize" @@ -255,7 +267,7 @@ }, { "type": "SYMBOL", - "name": "dep_item" + "name": "mod_item" }, { "type": "SYMBOL", @@ -265,6 +277,10 @@ "type": "SYMBOL", "name": "enum_item" }, + { + "type": "SYMBOL", + "name": "type_item" + }, { "type": "SYMBOL", "name": "function_item" @@ -533,7 +549,7 @@ }, { "type": "STRING", - "value": "dep" + "value": "mod" }, { "type": "STRING", @@ -563,6 +579,10 @@ "type": "STRING", "value": "match" }, + { + "type": "STRING", + "value": "mod" + }, { "type": "STRING", "value": "pub" @@ -583,6 +603,10 @@ "type": "STRING", "value": "trait" }, + { + "type": "STRING", + "value": "type" + }, { "type": "STRING", "value": "use" @@ -724,7 +748,7 @@ } ] }, - "dep_item": { + "mod_item": { "type": "SEQ", "members": [ { @@ -741,61 +765,19 @@ }, { "type": "STRING", - "value": "dep" + "value": "mod" }, { "type": "FIELD", "name": "name", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "identifier" } }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "declaration_list" - } - } - ] + "type": "STRING", + "value": ";" } ] }, @@ -1219,6 +1201,21 @@ "storage_content": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "field_declaration" @@ -1578,6 +1575,67 @@ } ] }, + "type_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "type" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, "function_item": { "type": "SEQ", "members": [ @@ -7232,6 +7290,18 @@ "type": "STRING", "value": "i128" }, + { + "type": "STRING", + "value": "u256" + }, + { + "type": "STRING", + "value": "i256" + }, + { + "type": "STRING", + "value": "b256" + }, { "type": "STRING", "value": "isize" diff --git a/src/node-types.json b/src/node-types.json index 71cf0d2..16236b1 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -15,10 +15,6 @@ "type": "const_item", "named": true }, - { - "type": "dep_item", - "named": true - }, { "type": "empty_statement", "named": true @@ -47,6 +43,10 @@ "type": "let_declaration", "named": true }, + { + "type": "mod_item", + "named": true + }, { "type": "struct_item", "named": true @@ -55,6 +55,10 @@ "type": "trait_item", "named": true }, + { + "type": "type_item", + "named": true + }, { "type": "use_declaration", "named": true @@ -1527,46 +1531,6 @@ ] } }, - { - "type": "dep_item", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "declaration_list", - "named": true - } - ] - }, - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "/", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "visibility_modifier", - "named": true - } - ] - } - }, { "type": "deref_pattern", "named": true, @@ -2671,6 +2635,32 @@ ] } }, + { + "type": "mod_item", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, { "type": "mut_pattern", "named": true, @@ -3369,9 +3359,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "field_declaration", "named": true @@ -3878,6 +3872,52 @@ } } }, + { + "type": "type_item", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, { "type": "type_parameters", "named": true, @@ -4464,6 +4504,10 @@ "type": "asm", "named": false }, + { + "type": "b256", + "named": false + }, { "type": "block", "named": false @@ -4508,10 +4552,6 @@ "type": "default", "named": false }, - { - "type": "dep", - "named": false - }, { "type": "deref", "named": false @@ -4568,6 +4608,10 @@ "type": "i16", "named": false }, + { + "type": "i256", + "named": false + }, { "type": "i32", "named": false @@ -4636,6 +4680,10 @@ "type": "metavariable", "named": true }, + { + "type": "mod", + "named": false + }, { "type": "move", "named": false @@ -4716,6 +4764,10 @@ "type": "ty", "named": false }, + { + "type": "type", + "named": false + }, { "type": "type_identifier", "named": true @@ -4728,6 +4780,10 @@ "type": "u16", "named": false }, + { + "type": "u256", + "named": false + }, { "type": "u32", "named": false diff --git a/src/parser.c b/src/parser.c index a59cd70..f1fcb91 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2185 -#define LARGE_STATE_COUNT 479 -#define SYMBOL_COUNT 309 +#define STATE_COUNT 2198 +#define LARGE_STATE_COUNT 490 +#define SYMBOL_COUNT 313 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 135 +#define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 206 +#define PRODUCTION_ID_COUNT 204 enum { sym_identifier = 1, @@ -29,307 +29,311 @@ enum { anon_sym_i64 = 10, anon_sym_u128 = 11, anon_sym_i128 = 12, - anon_sym_isize = 13, - anon_sym_usize = 14, - anon_sym_f32 = 15, - anon_sym_f64 = 16, - anon_sym_bool = 17, - anon_sym_char = 18, - anon_sym_str = 19, - anon_sym_LBRACK = 20, - anon_sym_RBRACK = 21, - anon_sym_contract = 22, - anon_sym_script = 23, - anon_sym_predicate = 24, - anon_sym_library = 25, - anon_sym_ = 26, - anon_sym_COLON = 27, - anon_sym_block = 28, - anon_sym_expr = 29, - anon_sym_ident = 30, - anon_sym_item = 31, - anon_sym_literal = 32, - anon_sym_meta = 33, - anon_sym_pat = 34, - anon_sym_path = 35, - anon_sym_stmt = 36, - anon_sym_tt = 37, - anon_sym_ty = 38, - anon_sym_vis = 39, - anon_sym_LPAREN = 40, - anon_sym_RPAREN = 41, - anon_sym_LBRACE = 42, - anon_sym_RBRACE = 43, - aux_sym__non_special_token_token1 = 44, - anon_sym_SQUOTE = 45, - anon_sym_abi = 46, - anon_sym_as = 47, - anon_sym_break = 48, - anon_sym_configurable = 49, - anon_sym_const = 50, - anon_sym_continue = 51, - anon_sym_default = 52, - anon_sym_dep = 53, - anon_sym_enum = 54, - anon_sym_fn = 55, - anon_sym_for = 56, - anon_sym_if = 57, - anon_sym_impl = 58, - anon_sym_let = 59, - anon_sym_match = 60, - anon_sym_pub = 61, - anon_sym_return = 62, - anon_sym_storage = 63, - anon_sym_struct = 64, - anon_sym_trait = 65, - anon_sym_use = 66, - anon_sym_where = 67, - anon_sym_while = 68, - anon_sym_POUND = 69, - anon_sym_COMMA = 70, - anon_sym_BANG = 71, - anon_sym_EQ = 72, - anon_sym_SLASH = 73, - anon_sym_asm = 74, - anon_sym_DASH_GT = 75, - anon_sym_PLUS = 76, - anon_sym_QMARK = 77, - anon_sym_LT = 78, - anon_sym_GT = 79, - anon_sym_else = 80, - anon_sym_COLON_COLON = 81, - anon_sym_STAR = 82, - anon_sym__ = 83, - anon_sym_AMP = 84, - anon_sym_ref = 85, - anon_sym_DOT_DOT_DOT = 86, - anon_sym_in = 87, - anon_sym_LT2 = 88, - sym_mutable_specifier = 89, - anon_sym_DOLLAR = 90, - anon_sym_DOT_DOT = 91, - anon_sym_DOT_DOT_EQ = 92, - anon_sym_DASH = 93, - anon_sym_AMP_AMP = 94, - anon_sym_PIPE_PIPE = 95, - anon_sym_PIPE = 96, - anon_sym_CARET = 97, - anon_sym_EQ_EQ = 98, - anon_sym_BANG_EQ = 99, - anon_sym_LT_EQ = 100, - anon_sym_GT_EQ = 101, - anon_sym_LT_LT = 102, - anon_sym_GT_GT = 103, - anon_sym_PERCENT = 104, - anon_sym_PLUS_EQ = 105, - anon_sym_DASH_EQ = 106, - anon_sym_STAR_EQ = 107, - anon_sym_SLASH_EQ = 108, - anon_sym_PERCENT_EQ = 109, - anon_sym_AMP_EQ = 110, - anon_sym_PIPE_EQ = 111, - anon_sym_CARET_EQ = 112, - anon_sym_LT_LT_EQ = 113, - anon_sym_GT_GT_EQ = 114, - anon_sym_yield = 115, - anon_sym_EQ_GT = 116, - anon_sym_move = 117, - anon_sym_DOT = 118, - anon_sym_deref = 119, - anon_sym_AT = 120, - sym_integer_literal = 121, - aux_sym_string_literal_token1 = 122, - anon_sym_DQUOTE = 123, - sym_char_literal = 124, - sym_escape_sequence = 125, - anon_sym_true = 126, - anon_sym_false = 127, - sym_line_comment = 128, - sym_self = 129, - sym_metavariable = 130, - sym__string_content = 131, - sym_raw_string_literal = 132, - sym_float_literal = 133, - sym_block_comment = 134, - sym_source_file = 135, - sym__statement = 136, - sym_empty_statement = 137, - sym_primitive_type = 138, - sym_program_type = 139, - sym_expression_statement = 140, - sym_attribute_item = 141, - sym_inner_attribute_item = 142, - sym_attribute = 143, - sym_dep_item = 144, - sym_declaration_list = 145, - sym_struct_item = 146, - sym_enum_item = 147, - sym_enum_variant_list = 148, - sym_enum_variant = 149, - sym_configurable_item = 150, - sym_storage_item = 151, - sym_storage_content_list = 152, - sym_storage_content = 153, - sym_field_declaration_list = 154, - sym_field_declaration = 155, - sym_ordered_field_declaration_list = 156, - sym_const_item = 157, - sym_asm_item = 158, - sym_function_item = 159, - sym_function_signature_item = 160, - sym_function_modifiers = 161, - sym_where_clause = 162, - sym_where_predicate = 163, - sym_impl_item = 164, - sym_abi_item = 165, - sym_trait_item = 166, - sym_trait_bounds = 167, - sym_higher_ranked_trait_bound = 168, - sym_removed_trait_bound = 169, - sym_type_parameters = 170, - sym_const_parameter = 171, - sym_constrained_type_parameter = 172, - sym_optional_type_parameter = 173, - sym_let_declaration = 174, - sym_use_declaration = 175, - sym__use_clause = 176, - sym_scoped_use_list = 177, - sym_use_list = 178, - sym_use_as_clause = 179, - sym_use_wildcard = 180, - sym_parameters = 181, - sym_self_parameter = 182, - sym_variadic_parameter = 183, - sym_parameter = 184, - sym_asm_parameters = 185, - sym_asm_parameter = 186, - sym_visibility_modifier = 187, - sym__type = 188, - sym_bracketed_type = 189, - sym_qualified_type = 190, - sym_array_type = 191, - sym_function_type = 192, - sym_tuple_type = 193, - sym_unit_type = 194, - sym_generic_function = 195, - sym_generic_type = 196, - sym_generic_type_with_turbofish = 197, - sym_bounded_type = 198, - sym_type_arguments = 199, - sym_type_binding = 200, - sym_reference_type = 201, - sym_pointer_type = 202, - sym_empty_type = 203, - sym_abstract_type = 204, - sym__expression_except_range = 205, - sym__expression = 206, - sym_delim_token_tree = 207, - sym__delim_tokens = 208, - sym__non_delim_token = 209, - sym_scoped_identifier = 210, - sym_scoped_type_identifier_in_expression_position = 211, - sym_scoped_type_identifier = 212, - sym_range_expression = 213, - sym_unary_expression = 214, - sym_try_expression = 215, - sym_reference_expression = 216, - sym_binary_expression = 217, - sym_assignment_expression = 218, - sym_compound_assignment_expr = 219, - sym_type_cast_expression = 220, - sym_return_expression = 221, - sym_yield_expression = 222, - sym_call_expression = 223, - sym_abi_call_expression = 224, - sym_abi_instance_expression = 225, - sym_arguments = 226, - sym_array_expression = 227, - sym_parenthesized_expression = 228, - sym_tuple_expression = 229, - sym_unit_expression = 230, - sym_struct_expression = 231, - sym_field_initializer_list = 232, - sym_shorthand_field_initializer = 233, - sym_field_initializer = 234, - sym_base_field_initializer = 235, - sym_if_expression = 236, - sym_let_condition = 237, - sym__let_chain = 238, - sym__condition = 239, - sym_else_clause = 240, - sym_match_expression = 241, - sym_match_block = 242, - sym_match_arm = 243, - sym_last_match_arm = 244, - sym_match_pattern = 245, - sym_while_expression = 246, - sym_for_expression = 247, - sym_const_block = 248, - sym_closure_expression = 249, - sym_closure_parameters = 250, - sym_loop_label = 251, - sym_break_expression = 252, - sym_continue_expression = 253, - sym_index_expression = 254, - sym_field_expression = 255, - sym_block = 256, - sym_asm_block = 257, - sym_asm_content = 258, - sym__pattern = 259, - sym_tuple_pattern = 260, - sym_slice_pattern = 261, - sym_tuple_struct_pattern = 262, - sym_struct_pattern = 263, - sym_field_pattern = 264, - sym_remaining_field_pattern = 265, - sym_mut_pattern = 266, - sym_range_pattern = 267, - sym_ref_pattern = 268, - sym_deref_pattern = 269, - sym_captured_pattern = 270, - sym_reference_pattern = 271, - sym_or_pattern = 272, - sym__literal = 273, - sym__literal_pattern = 274, - sym_negative_literal = 275, - sym_string_literal = 276, - sym_boolean_literal = 277, - sym_storage = 278, - aux_sym_source_file_repeat1 = 279, - aux_sym_attribute_item_repeat1 = 280, - aux_sym_dep_item_repeat1 = 281, - aux_sym_declaration_list_repeat1 = 282, - aux_sym_enum_variant_list_repeat1 = 283, - aux_sym_enum_variant_list_repeat2 = 284, - aux_sym_storage_content_list_repeat1 = 285, - aux_sym_field_declaration_list_repeat1 = 286, - aux_sym_ordered_field_declaration_list_repeat1 = 287, - aux_sym_function_modifiers_repeat1 = 288, - aux_sym_where_clause_repeat1 = 289, - aux_sym_trait_bounds_repeat1 = 290, - aux_sym_type_parameters_repeat1 = 291, - aux_sym_use_list_repeat1 = 292, - aux_sym_parameters_repeat1 = 293, - aux_sym_asm_parameters_repeat1 = 294, - aux_sym_tuple_type_repeat1 = 295, - aux_sym_type_arguments_repeat1 = 296, - aux_sym_delim_token_tree_repeat1 = 297, - aux_sym_arguments_repeat1 = 298, - aux_sym_array_expression_repeat1 = 299, - aux_sym_tuple_expression_repeat1 = 300, - aux_sym_field_initializer_list_repeat1 = 301, - aux_sym_match_block_repeat1 = 302, - aux_sym_closure_parameters_repeat1 = 303, - aux_sym_asm_block_repeat1 = 304, - aux_sym_asm_content_repeat1 = 305, - aux_sym_tuple_pattern_repeat1 = 306, - aux_sym_struct_pattern_repeat1 = 307, - aux_sym_string_literal_repeat1 = 308, - alias_sym_asm_expression = 309, - alias_sym_field_identifier = 310, - alias_sym_let_chain = 311, - alias_sym_shorthand_field_identifier = 312, - alias_sym_type_identifier = 313, + anon_sym_u256 = 13, + anon_sym_i256 = 14, + anon_sym_b256 = 15, + anon_sym_isize = 16, + anon_sym_usize = 17, + anon_sym_f32 = 18, + anon_sym_f64 = 19, + anon_sym_bool = 20, + anon_sym_char = 21, + anon_sym_str = 22, + anon_sym_LBRACK = 23, + anon_sym_RBRACK = 24, + anon_sym_contract = 25, + anon_sym_script = 26, + anon_sym_predicate = 27, + anon_sym_library = 28, + anon_sym_ = 29, + anon_sym_COLON = 30, + anon_sym_block = 31, + anon_sym_expr = 32, + anon_sym_ident = 33, + anon_sym_item = 34, + anon_sym_literal = 35, + anon_sym_meta = 36, + anon_sym_pat = 37, + anon_sym_path = 38, + anon_sym_stmt = 39, + anon_sym_tt = 40, + anon_sym_ty = 41, + anon_sym_vis = 42, + anon_sym_LPAREN = 43, + anon_sym_RPAREN = 44, + anon_sym_LBRACE = 45, + anon_sym_RBRACE = 46, + aux_sym__non_special_token_token1 = 47, + anon_sym_SQUOTE = 48, + anon_sym_abi = 49, + anon_sym_as = 50, + anon_sym_break = 51, + anon_sym_configurable = 52, + anon_sym_const = 53, + anon_sym_continue = 54, + anon_sym_default = 55, + anon_sym_mod = 56, + anon_sym_enum = 57, + anon_sym_fn = 58, + anon_sym_for = 59, + anon_sym_if = 60, + anon_sym_impl = 61, + anon_sym_let = 62, + anon_sym_match = 63, + anon_sym_pub = 64, + anon_sym_return = 65, + anon_sym_storage = 66, + anon_sym_struct = 67, + anon_sym_trait = 68, + anon_sym_type = 69, + anon_sym_use = 70, + anon_sym_where = 71, + anon_sym_while = 72, + anon_sym_POUND = 73, + anon_sym_COMMA = 74, + anon_sym_BANG = 75, + anon_sym_EQ = 76, + anon_sym_asm = 77, + anon_sym_DASH_GT = 78, + anon_sym_PLUS = 79, + anon_sym_QMARK = 80, + anon_sym_LT = 81, + anon_sym_GT = 82, + anon_sym_else = 83, + anon_sym_COLON_COLON = 84, + anon_sym_STAR = 85, + anon_sym__ = 86, + anon_sym_AMP = 87, + anon_sym_ref = 88, + anon_sym_DOT_DOT_DOT = 89, + anon_sym_in = 90, + anon_sym_LT2 = 91, + sym_mutable_specifier = 92, + anon_sym_DOLLAR = 93, + anon_sym_DOT_DOT = 94, + anon_sym_DOT_DOT_EQ = 95, + anon_sym_DASH = 96, + anon_sym_AMP_AMP = 97, + anon_sym_PIPE_PIPE = 98, + anon_sym_PIPE = 99, + anon_sym_CARET = 100, + anon_sym_EQ_EQ = 101, + anon_sym_BANG_EQ = 102, + anon_sym_LT_EQ = 103, + anon_sym_GT_EQ = 104, + anon_sym_LT_LT = 105, + anon_sym_GT_GT = 106, + anon_sym_SLASH = 107, + anon_sym_PERCENT = 108, + anon_sym_PLUS_EQ = 109, + anon_sym_DASH_EQ = 110, + anon_sym_STAR_EQ = 111, + anon_sym_SLASH_EQ = 112, + anon_sym_PERCENT_EQ = 113, + anon_sym_AMP_EQ = 114, + anon_sym_PIPE_EQ = 115, + anon_sym_CARET_EQ = 116, + anon_sym_LT_LT_EQ = 117, + anon_sym_GT_GT_EQ = 118, + anon_sym_yield = 119, + anon_sym_EQ_GT = 120, + anon_sym_move = 121, + anon_sym_DOT = 122, + anon_sym_deref = 123, + anon_sym_AT = 124, + sym_integer_literal = 125, + aux_sym_string_literal_token1 = 126, + anon_sym_DQUOTE = 127, + sym_char_literal = 128, + sym_escape_sequence = 129, + anon_sym_true = 130, + anon_sym_false = 131, + sym_line_comment = 132, + sym_self = 133, + sym_metavariable = 134, + sym__string_content = 135, + sym_raw_string_literal = 136, + sym_float_literal = 137, + sym_block_comment = 138, + sym_source_file = 139, + sym__statement = 140, + sym_empty_statement = 141, + sym_primitive_type = 142, + sym_program_type = 143, + sym_expression_statement = 144, + sym_attribute_item = 145, + sym_inner_attribute_item = 146, + sym_attribute = 147, + sym_mod_item = 148, + sym_declaration_list = 149, + sym_struct_item = 150, + sym_enum_item = 151, + sym_enum_variant_list = 152, + sym_enum_variant = 153, + sym_configurable_item = 154, + sym_storage_item = 155, + sym_storage_content_list = 156, + sym_storage_content = 157, + sym_field_declaration_list = 158, + sym_field_declaration = 159, + sym_ordered_field_declaration_list = 160, + sym_const_item = 161, + sym_asm_item = 162, + sym_type_item = 163, + sym_function_item = 164, + sym_function_signature_item = 165, + sym_function_modifiers = 166, + sym_where_clause = 167, + sym_where_predicate = 168, + sym_impl_item = 169, + sym_abi_item = 170, + sym_trait_item = 171, + sym_trait_bounds = 172, + sym_higher_ranked_trait_bound = 173, + sym_removed_trait_bound = 174, + sym_type_parameters = 175, + sym_const_parameter = 176, + sym_constrained_type_parameter = 177, + sym_optional_type_parameter = 178, + sym_let_declaration = 179, + sym_use_declaration = 180, + sym__use_clause = 181, + sym_scoped_use_list = 182, + sym_use_list = 183, + sym_use_as_clause = 184, + sym_use_wildcard = 185, + sym_parameters = 186, + sym_self_parameter = 187, + sym_variadic_parameter = 188, + sym_parameter = 189, + sym_asm_parameters = 190, + sym_asm_parameter = 191, + sym_visibility_modifier = 192, + sym__type = 193, + sym_bracketed_type = 194, + sym_qualified_type = 195, + sym_array_type = 196, + sym_function_type = 197, + sym_tuple_type = 198, + sym_unit_type = 199, + sym_generic_function = 200, + sym_generic_type = 201, + sym_generic_type_with_turbofish = 202, + sym_bounded_type = 203, + sym_type_arguments = 204, + sym_type_binding = 205, + sym_reference_type = 206, + sym_pointer_type = 207, + sym_empty_type = 208, + sym_abstract_type = 209, + sym__expression_except_range = 210, + sym__expression = 211, + sym_delim_token_tree = 212, + sym__delim_tokens = 213, + sym__non_delim_token = 214, + sym_scoped_identifier = 215, + sym_scoped_type_identifier_in_expression_position = 216, + sym_scoped_type_identifier = 217, + sym_range_expression = 218, + sym_unary_expression = 219, + sym_try_expression = 220, + sym_reference_expression = 221, + sym_binary_expression = 222, + sym_assignment_expression = 223, + sym_compound_assignment_expr = 224, + sym_type_cast_expression = 225, + sym_return_expression = 226, + sym_yield_expression = 227, + sym_call_expression = 228, + sym_abi_call_expression = 229, + sym_abi_instance_expression = 230, + sym_arguments = 231, + sym_array_expression = 232, + sym_parenthesized_expression = 233, + sym_tuple_expression = 234, + sym_unit_expression = 235, + sym_struct_expression = 236, + sym_field_initializer_list = 237, + sym_shorthand_field_initializer = 238, + sym_field_initializer = 239, + sym_base_field_initializer = 240, + sym_if_expression = 241, + sym_let_condition = 242, + sym__let_chain = 243, + sym__condition = 244, + sym_else_clause = 245, + sym_match_expression = 246, + sym_match_block = 247, + sym_match_arm = 248, + sym_last_match_arm = 249, + sym_match_pattern = 250, + sym_while_expression = 251, + sym_for_expression = 252, + sym_const_block = 253, + sym_closure_expression = 254, + sym_closure_parameters = 255, + sym_loop_label = 256, + sym_break_expression = 257, + sym_continue_expression = 258, + sym_index_expression = 259, + sym_field_expression = 260, + sym_block = 261, + sym_asm_block = 262, + sym_asm_content = 263, + sym__pattern = 264, + sym_tuple_pattern = 265, + sym_slice_pattern = 266, + sym_tuple_struct_pattern = 267, + sym_struct_pattern = 268, + sym_field_pattern = 269, + sym_remaining_field_pattern = 270, + sym_mut_pattern = 271, + sym_range_pattern = 272, + sym_ref_pattern = 273, + sym_deref_pattern = 274, + sym_captured_pattern = 275, + sym_reference_pattern = 276, + sym_or_pattern = 277, + sym__literal = 278, + sym__literal_pattern = 279, + sym_negative_literal = 280, + sym_string_literal = 281, + sym_boolean_literal = 282, + sym_storage = 283, + aux_sym_source_file_repeat1 = 284, + aux_sym_attribute_item_repeat1 = 285, + aux_sym_declaration_list_repeat1 = 286, + aux_sym_enum_variant_list_repeat1 = 287, + aux_sym_enum_variant_list_repeat2 = 288, + aux_sym_storage_content_list_repeat1 = 289, + aux_sym_field_declaration_list_repeat1 = 290, + aux_sym_ordered_field_declaration_list_repeat1 = 291, + aux_sym_function_modifiers_repeat1 = 292, + aux_sym_where_clause_repeat1 = 293, + aux_sym_trait_bounds_repeat1 = 294, + aux_sym_type_parameters_repeat1 = 295, + aux_sym_use_list_repeat1 = 296, + aux_sym_parameters_repeat1 = 297, + aux_sym_asm_parameters_repeat1 = 298, + aux_sym_tuple_type_repeat1 = 299, + aux_sym_type_arguments_repeat1 = 300, + aux_sym_delim_token_tree_repeat1 = 301, + aux_sym_arguments_repeat1 = 302, + aux_sym_array_expression_repeat1 = 303, + aux_sym_tuple_expression_repeat1 = 304, + aux_sym_field_initializer_list_repeat1 = 305, + aux_sym_match_block_repeat1 = 306, + aux_sym_closure_parameters_repeat1 = 307, + aux_sym_asm_block_repeat1 = 308, + aux_sym_asm_content_repeat1 = 309, + aux_sym_tuple_pattern_repeat1 = 310, + aux_sym_struct_pattern_repeat1 = 311, + aux_sym_string_literal_repeat1 = 312, + alias_sym_asm_expression = 313, + alias_sym_field_identifier = 314, + alias_sym_let_chain = 315, + alias_sym_shorthand_field_identifier = 316, + alias_sym_type_identifier = 317, }; static const char * const ts_symbol_names[] = { @@ -346,6 +350,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_i64] = "i64", [anon_sym_u128] = "u128", [anon_sym_i128] = "i128", + [anon_sym_u256] = "u256", + [anon_sym_i256] = "i256", + [anon_sym_b256] = "b256", [anon_sym_isize] = "isize", [anon_sym_usize] = "usize", [anon_sym_f32] = "f32", @@ -386,7 +393,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_const] = "const", [anon_sym_continue] = "continue", [anon_sym_default] = "default", - [anon_sym_dep] = "dep", + [anon_sym_mod] = "mod", [anon_sym_enum] = "enum", [anon_sym_fn] = "fn", [anon_sym_for] = "for", @@ -399,6 +406,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_storage] = "storage", [anon_sym_struct] = "struct", [anon_sym_trait] = "trait", + [anon_sym_type] = "type", [anon_sym_use] = "use", [anon_sym_where] = "where", [anon_sym_while] = "while", @@ -406,7 +414,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_COMMA] = ",", [anon_sym_BANG] = "!", [anon_sym_EQ] = "=", - [anon_sym_SLASH] = "/", [anon_sym_asm] = "asm", [anon_sym_DASH_GT] = "->", [anon_sym_PLUS] = "+", @@ -437,6 +444,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_GT_EQ] = ">=", [anon_sym_LT_LT] = "<<", [anon_sym_GT_GT] = ">>", + [anon_sym_SLASH] = "/", [anon_sym_PERCENT] = "%", [anon_sym_PLUS_EQ] = "+=", [anon_sym_DASH_EQ] = "-=", @@ -477,7 +485,7 @@ static const char * const ts_symbol_names[] = { [sym_attribute_item] = "attribute_item", [sym_inner_attribute_item] = "inner_attribute_item", [sym_attribute] = "attribute", - [sym_dep_item] = "dep_item", + [sym_mod_item] = "mod_item", [sym_declaration_list] = "declaration_list", [sym_struct_item] = "struct_item", [sym_enum_item] = "enum_item", @@ -492,6 +500,7 @@ static const char * const ts_symbol_names[] = { [sym_ordered_field_declaration_list] = "ordered_field_declaration_list", [sym_const_item] = "const_item", [sym_asm_item] = "asm_item", + [sym_type_item] = "type_item", [sym_function_item] = "function_item", [sym_function_signature_item] = "function_signature_item", [sym_function_modifiers] = "function_modifiers", @@ -614,7 +623,6 @@ static const char * const ts_symbol_names[] = { [sym_storage] = "storage", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_attribute_item_repeat1] = "attribute_item_repeat1", - [aux_sym_dep_item_repeat1] = "dep_item_repeat1", [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", [aux_sym_enum_variant_list_repeat1] = "enum_variant_list_repeat1", [aux_sym_enum_variant_list_repeat2] = "enum_variant_list_repeat2", @@ -663,6 +671,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_i64] = anon_sym_i64, [anon_sym_u128] = anon_sym_u128, [anon_sym_i128] = anon_sym_i128, + [anon_sym_u256] = anon_sym_u256, + [anon_sym_i256] = anon_sym_i256, + [anon_sym_b256] = anon_sym_b256, [anon_sym_isize] = anon_sym_isize, [anon_sym_usize] = anon_sym_usize, [anon_sym_f32] = anon_sym_f32, @@ -703,7 +714,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_const] = anon_sym_const, [anon_sym_continue] = anon_sym_continue, [anon_sym_default] = anon_sym_default, - [anon_sym_dep] = anon_sym_dep, + [anon_sym_mod] = anon_sym_mod, [anon_sym_enum] = anon_sym_enum, [anon_sym_fn] = anon_sym_fn, [anon_sym_for] = anon_sym_for, @@ -716,6 +727,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_storage] = anon_sym_storage, [anon_sym_struct] = anon_sym_struct, [anon_sym_trait] = anon_sym_trait, + [anon_sym_type] = anon_sym_type, [anon_sym_use] = anon_sym_use, [anon_sym_where] = anon_sym_where, [anon_sym_while] = anon_sym_while, @@ -723,7 +735,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_BANG] = anon_sym_BANG, [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_asm] = anon_sym_asm, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_PLUS] = anon_sym_PLUS, @@ -754,6 +765,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_GT_EQ] = anon_sym_GT_EQ, [anon_sym_LT_LT] = anon_sym_LT_LT, [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, @@ -794,7 +806,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_attribute_item] = sym_attribute_item, [sym_inner_attribute_item] = sym_inner_attribute_item, [sym_attribute] = sym_attribute, - [sym_dep_item] = sym_dep_item, + [sym_mod_item] = sym_mod_item, [sym_declaration_list] = sym_declaration_list, [sym_struct_item] = sym_struct_item, [sym_enum_item] = sym_enum_item, @@ -809,6 +821,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_ordered_field_declaration_list] = sym_ordered_field_declaration_list, [sym_const_item] = sym_const_item, [sym_asm_item] = sym_asm_item, + [sym_type_item] = sym_type_item, [sym_function_item] = sym_function_item, [sym_function_signature_item] = sym_function_signature_item, [sym_function_modifiers] = sym_function_modifiers, @@ -931,7 +944,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_storage] = sym_storage, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_attribute_item_repeat1] = aux_sym_attribute_item_repeat1, - [aux_sym_dep_item_repeat1] = aux_sym_dep_item_repeat1, [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, [aux_sym_enum_variant_list_repeat1] = aux_sym_enum_variant_list_repeat1, [aux_sym_enum_variant_list_repeat2] = aux_sym_enum_variant_list_repeat2, @@ -1019,6 +1031,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_u256] = { + .visible = true, + .named = false, + }, + [anon_sym_i256] = { + .visible = true, + .named = false, + }, + [anon_sym_b256] = { + .visible = true, + .named = false, + }, [anon_sym_isize] = { .visible = true, .named = false, @@ -1179,7 +1203,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_dep] = { + [anon_sym_mod] = { .visible = true, .named = false, }, @@ -1231,6 +1255,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_type] = { + .visible = true, + .named = false, + }, [anon_sym_use] = { .visible = true, .named = false, @@ -1259,10 +1287,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, [anon_sym_asm] = { .visible = true, .named = false, @@ -1383,6 +1407,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -1543,7 +1571,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_dep_item] = { + [sym_mod_item] = { .visible = true, .named = true, }, @@ -1603,6 +1631,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_type_item] = { + .visible = true, + .named = true, + }, [sym_function_item] = { .visible = true, .named = true, @@ -2096,10 +2128,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_dep_item_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_declaration_list_repeat1] = { .visible = false, .named = false, @@ -2306,191 +2334,189 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [14] = {.index = 10, .length = 2}, [15] = {.index = 12, .length = 2}, [16] = {.index = 12, .length = 2}, - [17] = {.index = 10, .length = 2}, + [17] = {.index = 14, .length = 2}, [18] = {.index = 14, .length = 2}, - [19] = {.index = 14, .length = 2}, - [20] = {.index = 16, .length = 2}, - [21] = {.index = 18, .length = 1}, + [19] = {.index = 16, .length = 2}, + [20] = {.index = 18, .length = 1}, + [21] = {.index = 19, .length = 1}, [22] = {.index = 19, .length = 1}, - [23] = {.index = 19, .length = 1}, - [24] = {.index = 20, .length = 1}, - [25] = {.index = 21, .length = 2}, - [26] = {.index = 23, .length = 2}, - [27] = {.index = 21, .length = 2}, - [28] = {.index = 25, .length = 1}, - [29] = {.index = 26, .length = 2}, - [30] = {.index = 28, .length = 1}, - [31] = {.index = 29, .length = 1}, - [32] = {.index = 30, .length = 2}, - [33] = {.index = 32, .length = 1}, - [34] = {.index = 33, .length = 2}, - [35] = {.index = 35, .length = 1}, + [23] = {.index = 20, .length = 1}, + [24] = {.index = 21, .length = 2}, + [25] = {.index = 23, .length = 2}, + [26] = {.index = 21, .length = 2}, + [27] = {.index = 25, .length = 1}, + [28] = {.index = 26, .length = 2}, + [29] = {.index = 28, .length = 1}, + [30] = {.index = 29, .length = 1}, + [31] = {.index = 30, .length = 2}, + [32] = {.index = 32, .length = 1}, + [33] = {.index = 33, .length = 2}, + [34] = {.index = 35, .length = 1}, + [35] = {.index = 12, .length = 2}, [36] = {.index = 12, .length = 2}, - [37] = {.index = 12, .length = 2}, - [38] = {.index = 36, .length = 2}, - [39] = {.index = 38, .length = 2}, - [40] = {.index = 40, .length = 1}, - [41] = {.index = 12, .length = 2}, - [42] = {.index = 12, .length = 2}, - [43] = {.index = 41, .length = 2}, - [44] = {.index = 43, .length = 2}, - [45] = {.index = 45, .length = 3}, - [46] = {.index = 48, .length = 2}, - [47] = {.index = 48, .length = 2}, - [48] = {.index = 38, .length = 2}, - [49] = {.index = 50, .length = 3}, - [50] = {.index = 53, .length = 1}, - [51] = {.index = 54, .length = 3}, - [52] = {.index = 57, .length = 2}, - [53] = {.index = 59, .length = 3}, - [54] = {.index = 62, .length = 1}, - [55] = {.index = 63, .length = 2}, - [56] = {.index = 65, .length = 3}, - [57] = {.index = 68, .length = 2}, - [58] = {.index = 70, .length = 3}, - [60] = {.index = 73, .length = 1}, - [61] = {.index = 73, .length = 1}, - [62] = {.index = 62, .length = 1}, - [64] = {.index = 74, .length = 3}, - [65] = {.index = 77, .length = 1}, - [67] = {.index = 78, .length = 2}, - [68] = {.index = 80, .length = 1}, - [69] = {.index = 81, .length = 1}, - [70] = {.index = 82, .length = 2}, - [71] = {.index = 84, .length = 3}, - [72] = {.index = 87, .length = 2}, - [73] = {.index = 89, .length = 1}, - [74] = {.index = 90, .length = 2}, - [75] = {.index = 92, .length = 2}, - [76] = {.index = 94, .length = 2}, - [77] = {.index = 92, .length = 2}, - [78] = {.index = 94, .length = 2}, - [79] = {.index = 0, .length = 1}, - [80] = {.index = 96, .length = 1}, - [81] = {.index = 97, .length = 2}, - [82] = {.index = 99, .length = 2}, - [83] = {.index = 101, .length = 2}, - [84] = {.index = 101, .length = 2}, - [85] = {.index = 53, .length = 1}, - [86] = {.index = 103, .length = 1}, - [87] = {.index = 104, .length = 3}, - [88] = {.index = 107, .length = 1}, - [89] = {.index = 108, .length = 2}, - [90] = {.index = 110, .length = 2}, - [91] = {.index = 112, .length = 2}, - [92] = {.index = 78, .length = 2}, - [93] = {.index = 114, .length = 3}, - [94] = {.index = 117, .length = 3}, - [95] = {.index = 120, .length = 4}, - [96] = {.index = 124, .length = 3}, - [97] = {.index = 2, .length = 1}, - [98] = {.index = 127, .length = 3}, - [99] = {.index = 130, .length = 2}, - [100] = {.index = 132, .length = 2}, - [101] = {.index = 134, .length = 2}, - [102] = {.index = 134, .length = 2}, - [103] = {.index = 136, .length = 2}, - [104] = {.index = 138, .length = 3}, - [105] = {.index = 141, .length = 3}, - [106] = {.index = 144, .length = 3}, - [107] = {.index = 136, .length = 2}, - [108] = {.index = 138, .length = 3}, - [109] = {.index = 141, .length = 3}, - [110] = {.index = 147, .length = 2}, - [111] = {.index = 149, .length = 2}, - [113] = {.index = 151, .length = 3}, - [114] = {.index = 154, .length = 4}, - [115] = {.index = 35, .length = 1}, - [116] = {.index = 158, .length = 1}, - [117] = {.index = 159, .length = 2}, - [118] = {.index = 161, .length = 3}, - [119] = {.index = 164, .length = 2}, - [120] = {.index = 166, .length = 2}, - [121] = {.index = 168, .length = 3}, - [122] = {.index = 171, .length = 2}, - [123] = {.index = 173, .length = 3}, - [124] = {.index = 176, .length = 2}, - [125] = {.index = 178, .length = 3}, - [126] = {.index = 181, .length = 2}, - [127] = {.index = 183, .length = 3}, - [128] = {.index = 186, .length = 2}, - [129] = {.index = 188, .length = 1}, - [130] = {.index = 110, .length = 2}, - [131] = {.index = 164, .length = 2}, - [132] = {.index = 189, .length = 4}, - [133] = {.index = 193, .length = 3}, - [134] = {.index = 196, .length = 4}, - [135] = {.index = 53, .length = 1}, - [136] = {.index = 200, .length = 2}, - [137] = {.index = 108, .length = 2}, - [138] = {.index = 202, .length = 2}, - [139] = {.index = 204, .length = 3}, - [140] = {.index = 207, .length = 2}, - [141] = {.index = 209, .length = 3}, - [142] = {.index = 212, .length = 4}, - [143] = {.index = 209, .length = 3}, - [144] = {.index = 212, .length = 4}, - [145] = {.index = 204, .length = 3}, - [146] = {.index = 216, .length = 2}, - [147] = {.index = 218, .length = 2}, - [148] = {.index = 220, .length = 2}, - [149] = {.index = 222, .length = 2}, - [150] = {.index = 224, .length = 1}, - [151] = {.index = 225, .length = 2}, - [152] = {.index = 227, .length = 2}, - [153] = {.index = 229, .length = 4}, - [154] = {.index = 112, .length = 2}, - [155] = {.index = 233, .length = 3}, - [156] = {.index = 236, .length = 4}, - [157] = {.index = 240, .length = 3}, - [158] = {.index = 243, .length = 2}, - [159] = {.index = 245, .length = 2}, - [160] = {.index = 247, .length = 3}, - [161] = {.index = 250, .length = 3}, - [162] = {.index = 253, .length = 4}, - [163] = {.index = 257, .length = 2}, - [164] = {.index = 259, .length = 3}, - [165] = {.index = 262, .length = 3}, - [166] = {.index = 265, .length = 4}, - [167] = {.index = 269, .length = 5}, - [168] = {.index = 274, .length = 4}, - [169] = {.index = 278, .length = 2}, + [37] = {.index = 36, .length = 2}, + [38] = {.index = 38, .length = 2}, + [39] = {.index = 12, .length = 2}, + [40] = {.index = 12, .length = 2}, + [41] = {.index = 40, .length = 2}, + [42] = {.index = 42, .length = 2}, + [43] = {.index = 44, .length = 3}, + [44] = {.index = 47, .length = 2}, + [45] = {.index = 47, .length = 2}, + [46] = {.index = 38, .length = 2}, + [47] = {.index = 49, .length = 3}, + [48] = {.index = 52, .length = 1}, + [49] = {.index = 53, .length = 3}, + [50] = {.index = 56, .length = 1}, + [51] = {.index = 57, .length = 2}, + [52] = {.index = 59, .length = 3}, + [53] = {.index = 62, .length = 2}, + [54] = {.index = 64, .length = 3}, + [56] = {.index = 67, .length = 1}, + [57] = {.index = 67, .length = 1}, + [58] = {.index = 56, .length = 1}, + [60] = {.index = 68, .length = 3}, + [61] = {.index = 71, .length = 1}, + [63] = {.index = 72, .length = 2}, + [64] = {.index = 74, .length = 1}, + [65] = {.index = 75, .length = 1}, + [66] = {.index = 76, .length = 2}, + [67] = {.index = 78, .length = 3}, + [68] = {.index = 81, .length = 2}, + [69] = {.index = 83, .length = 1}, + [70] = {.index = 84, .length = 2}, + [71] = {.index = 86, .length = 2}, + [72] = {.index = 88, .length = 2}, + [73] = {.index = 86, .length = 2}, + [74] = {.index = 88, .length = 2}, + [75] = {.index = 0, .length = 1}, + [76] = {.index = 90, .length = 1}, + [77] = {.index = 91, .length = 2}, + [78] = {.index = 93, .length = 2}, + [79] = {.index = 95, .length = 2}, + [80] = {.index = 52, .length = 1}, + [81] = {.index = 97, .length = 1}, + [82] = {.index = 98, .length = 3}, + [83] = {.index = 101, .length = 1}, + [84] = {.index = 102, .length = 2}, + [85] = {.index = 104, .length = 2}, + [86] = {.index = 106, .length = 2}, + [87] = {.index = 72, .length = 2}, + [88] = {.index = 108, .length = 3}, + [89] = {.index = 111, .length = 3}, + [90] = {.index = 114, .length = 4}, + [91] = {.index = 118, .length = 3}, + [92] = {.index = 2, .length = 1}, + [93] = {.index = 121, .length = 3}, + [94] = {.index = 124, .length = 2}, + [95] = {.index = 126, .length = 2}, + [96] = {.index = 128, .length = 2}, + [97] = {.index = 128, .length = 2}, + [98] = {.index = 130, .length = 2}, + [99] = {.index = 132, .length = 3}, + [100] = {.index = 135, .length = 3}, + [101] = {.index = 138, .length = 3}, + [102] = {.index = 130, .length = 2}, + [103] = {.index = 132, .length = 3}, + [104] = {.index = 135, .length = 3}, + [105] = {.index = 141, .length = 2}, + [106] = {.index = 143, .length = 2}, + [108] = {.index = 145, .length = 3}, + [109] = {.index = 148, .length = 4}, + [110] = {.index = 104, .length = 2}, + [111] = {.index = 35, .length = 1}, + [112] = {.index = 152, .length = 1}, + [113] = {.index = 153, .length = 2}, + [114] = {.index = 155, .length = 3}, + [115] = {.index = 158, .length = 2}, + [116] = {.index = 160, .length = 2}, + [117] = {.index = 162, .length = 3}, + [118] = {.index = 165, .length = 2}, + [119] = {.index = 167, .length = 3}, + [120] = {.index = 170, .length = 2}, + [121] = {.index = 172, .length = 3}, + [122] = {.index = 175, .length = 2}, + [123] = {.index = 177, .length = 1}, + [124] = {.index = 104, .length = 2}, + [125] = {.index = 178, .length = 1}, + [126] = {.index = 158, .length = 2}, + [127] = {.index = 179, .length = 4}, + [128] = {.index = 183, .length = 3}, + [129] = {.index = 186, .length = 4}, + [130] = {.index = 52, .length = 1}, + [131] = {.index = 190, .length = 2}, + [132] = {.index = 102, .length = 2}, + [133] = {.index = 192, .length = 2}, + [134] = {.index = 194, .length = 3}, + [135] = {.index = 197, .length = 2}, + [136] = {.index = 199, .length = 3}, + [137] = {.index = 202, .length = 4}, + [138] = {.index = 199, .length = 3}, + [139] = {.index = 202, .length = 4}, + [140] = {.index = 194, .length = 3}, + [141] = {.index = 206, .length = 2}, + [142] = {.index = 208, .length = 2}, + [143] = {.index = 210, .length = 2}, + [144] = {.index = 212, .length = 2}, + [145] = {.index = 214, .length = 1}, + [146] = {.index = 215, .length = 2}, + [147] = {.index = 217, .length = 2}, + [148] = {.index = 219, .length = 4}, + [149] = {.index = 223, .length = 3}, + [150] = {.index = 106, .length = 2}, + [151] = {.index = 226, .length = 3}, + [152] = {.index = 229, .length = 4}, + [153] = {.index = 233, .length = 3}, + [154] = {.index = 236, .length = 2}, + [155] = {.index = 238, .length = 2}, + [156] = {.index = 240, .length = 3}, + [157] = {.index = 243, .length = 3}, + [158] = {.index = 246, .length = 4}, + [159] = {.index = 236, .length = 2}, + [160] = {.index = 250, .length = 2}, + [161] = {.index = 252, .length = 3}, + [162] = {.index = 255, .length = 3}, + [163] = {.index = 258, .length = 4}, + [164] = {.index = 262, .length = 5}, + [165] = {.index = 267, .length = 4}, + [166] = {.index = 271, .length = 2}, + [167] = {.index = 273, .length = 3}, + [168] = {.index = 276, .length = 4}, + [169] = {.index = 276, .length = 4}, [170] = {.index = 280, .length = 3}, - [171] = {.index = 283, .length = 4}, - [172] = {.index = 283, .length = 4}, - [173] = {.index = 287, .length = 3}, - [174] = {.index = 290, .length = 3}, - [175] = {.index = 293, .length = 3}, - [176] = {.index = 296, .length = 2}, - [177] = {.index = 298, .length = 1}, - [178] = {.index = 299, .length = 4}, - [179] = {.index = 303, .length = 3}, - [180] = {.index = 306, .length = 4}, - [181] = {.index = 310, .length = 4}, - [182] = {.index = 314, .length = 3}, - [183] = {.index = 317, .length = 4}, - [184] = {.index = 321, .length = 3}, - [185] = {.index = 324, .length = 3}, - [186] = {.index = 327, .length = 5}, - [187] = {.index = 332, .length = 2}, - [188] = {.index = 334, .length = 3}, - [189] = {.index = 337, .length = 3}, - [190] = {.index = 340, .length = 3}, - [191] = {.index = 343, .length = 2}, - [192] = {.index = 345, .length = 4}, - [193] = {.index = 349, .length = 5}, - [194] = {.index = 354, .length = 4}, - [195] = {.index = 358, .length = 3}, - [196] = {.index = 361, .length = 4}, - [197] = {.index = 365, .length = 3}, - [198] = {.index = 368, .length = 4}, - [199] = {.index = 372, .length = 4}, - [200] = {.index = 376, .length = 5}, - [201] = {.index = 381, .length = 4}, - [202] = {.index = 385, .length = 5}, - [203] = {.index = 390, .length = 4}, - [204] = {.index = 394, .length = 4}, - [205] = {.index = 398, .length = 5}, + [171] = {.index = 283, .length = 3}, + [172] = {.index = 286, .length = 3}, + [173] = {.index = 289, .length = 2}, + [174] = {.index = 291, .length = 1}, + [175] = {.index = 292, .length = 4}, + [176] = {.index = 296, .length = 3}, + [177] = {.index = 299, .length = 4}, + [178] = {.index = 303, .length = 4}, + [179] = {.index = 307, .length = 3}, + [180] = {.index = 310, .length = 3}, + [181] = {.index = 313, .length = 4}, + [182] = {.index = 317, .length = 3}, + [183] = {.index = 320, .length = 3}, + [184] = {.index = 323, .length = 5}, + [185] = {.index = 328, .length = 2}, + [186] = {.index = 330, .length = 3}, + [187] = {.index = 333, .length = 3}, + [188] = {.index = 336, .length = 3}, + [189] = {.index = 339, .length = 2}, + [190] = {.index = 341, .length = 4}, + [191] = {.index = 345, .length = 5}, + [192] = {.index = 350, .length = 4}, + [193] = {.index = 354, .length = 3}, + [194] = {.index = 357, .length = 4}, + [195] = {.index = 361, .length = 3}, + [196] = {.index = 364, .length = 4}, + [197] = {.index = 368, .length = 4}, + [198] = {.index = 372, .length = 5}, + [199] = {.index = 377, .length = 4}, + [200] = {.index = 381, .length = 5}, + [201] = {.index = 386, .length = 4}, + [202] = {.index = 390, .length = 4}, + [203] = {.index = 394, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2561,498 +2587,492 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 0}, {field_type_arguments, 2}, [40] = - {field_body, 2}, - [41] = {field_type, 2}, {field_value, 0}, - [43] = + [42] = {field_left, 0}, {field_right, 2}, - [45] = + [44] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [48] = + [47] = {field_field, 2}, {field_value, 0}, - [50] = + [49] = {field_arguments, 2}, {field_function, 0}, {field_initalizer, 1}, - [53] = + [52] = {field_name, 2}, - [54] = + [53] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [57] = - {field_name, 1}, - {field_name, 2}, - [59] = - {field_body, 3}, - {field_name, 1}, - {field_name, 2}, - [62] = + [56] = {field_name, 0}, - [63] = + [57] = {field_body, 3}, {field_name, 1}, - [65] = + [59] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [68] = + [62] = {field_name, 1}, {field_parameters, 2}, - [70] = + [64] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [73] = + [67] = {field_type, 0}, - [74] = + [68] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [77] = + [71] = {field_element, 1}, - [78] = + [72] = {field_bounds, 1}, {field_left, 0}, - [80] = + [74] = {field_type, 2}, - [81] = + [75] = {field_parameters, 2}, - [82] = + [76] = {field_type, 2}, {field_type_parameters, 1}, - [84] = + [78] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [87] = + [81] = {field_body, 3}, {field_type, 1}, - [89] = + [83] = {field_pattern, 2}, - [90] = + [84] = {field_name, 1}, {field_type_parameters, 2}, - [92] = + [86] = {field_alias, 2}, {field_path, 0}, - [94] = + [88] = {field_list, 2}, {field_path, 0}, - [96] = + [90] = {field_value, 0}, - [97] = + [91] = {field_alias, 2}, {field_type, 0}, - [99] = + [93] = {field_pattern, 0}, {field_type, 2}, - [101] = + [95] = {field_body, 3}, {field_name, 2}, - [103] = + [97] = {field_argument, 2}, - [104] = + [98] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [107] = + [101] = {field_length, 3}, - [108] = + [102] = {field_name, 0}, {field_type, 2}, - [110] = + [104] = {field_name, 1}, {field_type, 3}, - [112] = + [106] = {field_name, 1}, {field_value, 3}, - [114] = + [108] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [117] = + [111] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [120] = + [114] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [124] = + [118] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [127] = + [121] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [130] = + [124] = {field_pattern, 1}, {field_value, 3}, - [132] = + [126] = {field_parameters, 1}, {field_return_type, 3}, - [134] = + [128] = {field_default_type, 2}, {field_name, 0}, - [136] = + [130] = {field_trait, 1}, {field_type, 3}, - [138] = + [132] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [141] = + [135] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [144] = + [138] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [147] = + [141] = {field_pattern, 1}, {field_type, 3}, - [149] = + [143] = {field_alternative, 3}, {field_pattern, 1}, - [151] = + [145] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [154] = + [148] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [158] = + [152] = {field_value, 1, .inherited = true}, - [159] = + [153] = {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [161] = + [155] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [164] = + [158] = {field_name, 0}, {field_value, 2}, - [166] = + [160] = {field_name, 2}, {field_parameters, 3}, - [168] = + [162] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [171] = - {field_name, 2}, - {field_name, 3}, - [173] = + [165] = {field_body, 4}, {field_name, 2}, - {field_name, 3}, - [176] = - {field_body, 4}, - {field_name, 2}, - [178] = + [167] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [181] = + [170] = {field_name, 2}, {field_type_parameters, 3}, - [183] = + [172] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [186] = + [175] = {field_body, 4}, {field_condition, 3}, - [188] = + [177] = {field_length, 4}, - [189] = + [178] = + {field_value, 3}, + [179] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [193] = + [183] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [196] = + [186] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [200] = + [190] = {field_name, 0}, {field_pattern, 2}, - [202] = + [192] = {field_element, 1}, {field_length, 3}, - [204] = + [194] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [207] = + [197] = {field_parameters, 2}, {field_return_type, 4}, - [209] = + [199] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [212] = + [202] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [216] = + [206] = {field_pattern, 2}, {field_type, 4}, - [218] = + [208] = {field_pattern, 2}, {field_value, 4}, - [220] = + [210] = {field_alternative, 4}, {field_pattern, 2}, - [222] = + [212] = {field_pattern, 0}, {field_value, 2}, - [224] = + [214] = {field_condition, 2}, - [225] = + [215] = {field_type, 1}, {field_type, 2, .inherited = true}, - [227] = + [217] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [229] = + [219] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [233] = + [223] = + {field_name, 1}, + {field_type, 4}, + {field_type_parameters, 2}, + [226] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [236] = + [229] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [240] = + [233] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [243] = + [236] = {field_name, 2}, {field_type, 4}, - [245] = + [238] = {field_name, 2}, {field_value, 4}, - [247] = + [240] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [250] = + [243] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [253] = + [246] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [257] = + [250] = {field_name, 3}, {field_parameters, 4}, - [259] = + [252] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [262] = + [255] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [265] = + [258] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [269] = + [262] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [274] = + [267] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [278] = + [271] = {field_name, 1}, {field_pattern, 3}, - [280] = + [273] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [283] = + [276] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [287] = + [280] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [290] = + [283] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [293] = + [286] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [296] = + [289] = {field_type, 2}, {field_type, 3, .inherited = true}, - [298] = + [291] = {field_type, 3}, - [299] = + [292] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [303] = + [296] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [306] = + [299] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [310] = + [303] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [314] = + [307] = + {field_name, 2}, + {field_type, 5}, + {field_type_parameters, 3}, + [310] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [317] = + [313] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [321] = + [317] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [324] = + [320] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [327] = + [323] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [332] = + [328] = {field_name, 2}, {field_pattern, 4}, - [334] = + [330] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [337] = + [333] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [340] = + [336] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [343] = + [339] = {field_type, 3}, {field_type, 4, .inherited = true}, - [345] = + [341] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [349] = + [345] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [354] = + [350] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [358] = + [354] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [361] = + [357] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [365] = + [361] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [368] = + [364] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [372] = + [368] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [376] = + [372] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [381] = + [377] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [385] = + [381] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [390] = + [386] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [394] = + [390] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [398] = + [394] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3090,174 +3110,186 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_identifier, [2] = alias_sym_type_identifier, }, - [18] = { + [17] = { [0] = alias_sym_type_identifier, }, - [22] = { + [21] = { [1] = alias_sym_type_identifier, }, - [25] = { + [24] = { [0] = alias_sym_type_identifier, }, - [37] = { + [36] = { [2] = alias_sym_type_identifier, }, - [39] = { + [38] = { [0] = alias_sym_type_identifier, }, - [41] = { + [39] = { [0] = sym_generic_type, }, - [42] = { + [40] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [47] = { + [45] = { [2] = alias_sym_field_identifier, }, - [51] = { + [49] = { [1] = alias_sym_type_identifier, }, - [55] = { + [51] = { [1] = alias_sym_type_identifier, }, - [56] = { + [52] = { [1] = alias_sym_type_identifier, }, - [59] = { + [55] = { [0] = sym_identifier, [2] = sym_identifier, }, - [61] = { + [57] = { [0] = alias_sym_type_identifier, }, - [62] = { + [58] = { [0] = alias_sym_shorthand_field_identifier, }, - [63] = { + [59] = { [2] = sym_identifier, }, - [66] = { + [62] = { [1] = alias_sym_type_identifier, }, - [67] = { + [63] = { [0] = alias_sym_type_identifier, }, - [74] = { + [70] = { [1] = alias_sym_type_identifier, }, - [75] = { + [71] = { [0] = sym_identifier, }, - [76] = { + [72] = { [0] = sym_identifier, }, - [79] = { + [75] = { [0] = sym_identifier, }, - [84] = { + [79] = { [2] = alias_sym_type_identifier, }, - [85] = { + [80] = { [2] = alias_sym_type_identifier, }, - [89] = { + [84] = { [0] = alias_sym_field_identifier, }, - [93] = { + [88] = { [1] = alias_sym_type_identifier, }, - [97] = { + [92] = { [1] = alias_sym_shorthand_field_identifier, }, - [101] = { + [96] = { [0] = alias_sym_type_identifier, }, - [103] = { + [98] = { [1] = alias_sym_type_identifier, }, - [104] = { + [99] = { [1] = alias_sym_type_identifier, }, - [105] = { + [100] = { [0] = alias_sym_type_identifier, }, - [112] = { + [107] = { [3] = sym_identifier, }, - [113] = { + [108] = { [1] = alias_sym_type_identifier, }, - [114] = { + [109] = { [1] = alias_sym_type_identifier, }, - [115] = { + [110] = { + [1] = alias_sym_type_identifier, + }, + [111] = { [0] = sym_identifier, }, - [119] = { + [115] = { [0] = alias_sym_field_identifier, }, - [124] = { + [118] = { [2] = alias_sym_type_identifier, }, - [125] = { + [119] = { [2] = alias_sym_type_identifier, }, - [126] = { + [120] = { [2] = alias_sym_type_identifier, }, - [127] = { + [121] = { [2] = alias_sym_type_identifier, }, - [130] = { + [124] = { [1] = alias_sym_field_identifier, }, - [135] = { + [130] = { [2] = alias_sym_shorthand_field_identifier, }, - [136] = { + [131] = { [0] = alias_sym_field_identifier, }, - [137] = { + [132] = { [0] = alias_sym_type_identifier, }, - [139] = { + [134] = { [1] = alias_sym_type_identifier, }, - [141] = { + [136] = { [2] = alias_sym_type_identifier, }, - [142] = { + [137] = { [2] = alias_sym_type_identifier, }, - [153] = { + [148] = { [1] = alias_sym_type_identifier, }, - [154] = { + [149] = { + [1] = alias_sym_type_identifier, + }, + [150] = { [1] = alias_sym_field_identifier, }, - [160] = { + [156] = { [2] = alias_sym_type_identifier, }, - [161] = { + [157] = { [2] = alias_sym_type_identifier, }, - [162] = { + [158] = { [2] = alias_sym_type_identifier, }, - [169] = { + [159] = { + [2] = alias_sym_type_identifier, + }, + [166] = { [1] = alias_sym_field_identifier, }, - [170] = { + [167] = { [0] = alias_sym_type_identifier, }, - [171] = { + [168] = { [2] = alias_sym_type_identifier, }, - [181] = { + [178] = { [2] = alias_sym_type_identifier, }, - [187] = { + [179] = { + [2] = alias_sym_type_identifier, + }, + [185] = { [2] = alias_sym_field_identifier, }, }; @@ -3284,32 +3316,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 2, [4] = 4, - [5] = 5, - [6] = 2, - [7] = 2, + [5] = 2, + [6] = 4, + [7] = 7, [8] = 8, - [9] = 8, - [10] = 8, - [11] = 2, + [9] = 4, + [10] = 4, + [11] = 4, [12] = 8, - [13] = 5, - [14] = 8, + [13] = 2, + [14] = 2, [15] = 15, [16] = 16, [17] = 17, - [18] = 16, - [19] = 19, + [18] = 18, + [19] = 17, [20] = 20, - [21] = 20, - [22] = 22, + [21] = 21, + [22] = 21, [23] = 15, - [24] = 17, - [25] = 16, - [26] = 19, + [24] = 21, + [25] = 18, + [26] = 21, [27] = 20, - [28] = 22, - [29] = 20, - [30] = 16, + [28] = 16, + [29] = 17, + [30] = 17, [31] = 31, [32] = 32, [33] = 32, @@ -3319,8 +3351,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [37] = 35, [38] = 38, [39] = 38, - [40] = 40, - [41] = 38, + [40] = 38, + [41] = 41, [42] = 42, [43] = 43, [44] = 44, @@ -3331,36 +3363,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [49] = 49, [50] = 50, [51] = 51, - [52] = 48, + [52] = 52, [53] = 53, - [54] = 53, + [54] = 54, [55] = 55, [56] = 56, - [57] = 57, - [58] = 48, + [57] = 53, + [58] = 53, [59] = 59, - [60] = 53, - [61] = 55, - [62] = 55, + [60] = 60, + [61] = 61, + [62] = 62, [63] = 63, - [64] = 64, + [64] = 63, [65] = 65, [66] = 66, [67] = 67, - [68] = 68, - [69] = 69, + [68] = 63, + [69] = 60, [70] = 70, [71] = 71, [72] = 72, [73] = 73, [74] = 74, - [75] = 75, + [75] = 60, [76] = 76, [77] = 77, [78] = 78, [79] = 79, [80] = 80, - [81] = 81, + [81] = 52, [82] = 82, [83] = 83, [84] = 84, @@ -3369,20 +3401,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [87] = 87, [88] = 88, [89] = 89, - [90] = 90, - [91] = 86, - [92] = 66, - [93] = 84, + [90] = 87, + [91] = 85, + [92] = 92, + [93] = 93, [94] = 94, [95] = 95, [96] = 96, [97] = 97, [98] = 98, - [99] = 99, + [99] = 94, [100] = 100, - [101] = 94, - [102] = 96, - [103] = 97, + [101] = 95, + [102] = 102, + [103] = 98, [104] = 104, [105] = 105, [106] = 106, @@ -3390,123 +3422,123 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [108] = 108, [109] = 109, [110] = 110, - [111] = 110, - [112] = 112, + [111] = 111, + [112] = 104, [113] = 113, [114] = 114, [115] = 115, [116] = 116, - [117] = 117, + [117] = 111, [118] = 118, - [119] = 118, - [120] = 120, - [121] = 121, + [119] = 116, + [120] = 106, + [121] = 114, [122] = 122, [123] = 123, [124] = 124, [125] = 125, [126] = 126, - [127] = 127, - [128] = 128, + [127] = 125, + [128] = 118, [129] = 129, [130] = 130, [131] = 131, [132] = 132, [133] = 133, - [134] = 130, - [135] = 133, - [136] = 122, - [137] = 132, - [138] = 118, + [134] = 134, + [135] = 126, + [136] = 129, + [137] = 105, + [138] = 122, [139] = 139, - [140] = 129, - [141] = 126, - [142] = 128, - [143] = 127, - [144] = 124, - [145] = 145, - [146] = 125, - [147] = 123, - [148] = 117, - [149] = 113, - [150] = 106, + [140] = 116, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 130, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 107, [151] = 151, - [152] = 152, + [152] = 122, [153] = 153, - [154] = 114, + [154] = 154, [155] = 153, - [156] = 156, - [157] = 157, - [158] = 151, - [159] = 132, - [160] = 157, - [161] = 104, + [156] = 149, + [157] = 108, + [158] = 116, + [159] = 142, + [160] = 160, + [161] = 149, [162] = 162, - [163] = 162, - [164] = 131, - [165] = 107, + [163] = 163, + [164] = 164, + [165] = 105, [166] = 110, - [167] = 167, - [168] = 168, - [169] = 132, - [170] = 156, - [171] = 171, - [172] = 172, - [173] = 173, - [174] = 122, - [175] = 121, - [176] = 105, + [167] = 133, + [168] = 160, + [169] = 113, + [170] = 170, + [171] = 124, + [172] = 148, + [173] = 146, + [174] = 115, + [175] = 123, + [176] = 139, [177] = 177, [178] = 178, [179] = 179, - [180] = 178, + [180] = 179, [181] = 179, - [182] = 179, - [183] = 183, - [184] = 183, + [182] = 182, + [183] = 182, + [184] = 184, [185] = 185, [186] = 186, - [187] = 185, - [188] = 186, - [189] = 189, + [187] = 186, + [188] = 184, + [189] = 185, [190] = 190, - [191] = 190, + [191] = 191, [192] = 192, - [193] = 193, + [193] = 191, [194] = 194, - [195] = 193, - [196] = 196, - [197] = 193, + [195] = 195, + [196] = 195, + [197] = 195, [198] = 198, [199] = 199, [200] = 200, - [201] = 198, - [202] = 200, - [203] = 199, - [204] = 198, - [205] = 205, - [206] = 205, - [207] = 205, - [208] = 45, - [209] = 59, - [210] = 47, - [211] = 51, - [212] = 69, - [213] = 67, - [214] = 76, - [215] = 215, - [216] = 75, - [217] = 74, - [218] = 81, - [219] = 73, - [220] = 78, - [221] = 64, - [222] = 222, - [223] = 80, - [224] = 68, - [225] = 225, - [226] = 225, - [227] = 225, + [201] = 200, + [202] = 202, + [203] = 203, + [204] = 203, + [205] = 202, + [206] = 199, + [207] = 199, + [208] = 200, + [209] = 42, + [210] = 43, + [211] = 48, + [212] = 47, + [213] = 77, + [214] = 56, + [215] = 59, + [216] = 71, + [217] = 50, + [218] = 78, + [219] = 67, + [220] = 220, + [221] = 74, + [222] = 54, + [223] = 62, + [224] = 224, + [225] = 76, + [226] = 226, + [227] = 227, [228] = 228, [229] = 229, [230] = 230, @@ -3533,18 +3565,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [251] = 251, [252] = 252, [253] = 253, - [254] = 59, + [254] = 254, [255] = 255, [256] = 256, [257] = 257, - [258] = 47, + [258] = 258, [259] = 259, [260] = 260, [261] = 261, [262] = 262, [263] = 263, [264] = 264, - [265] = 51, + [265] = 265, [266] = 266, [267] = 267, [268] = 268, @@ -3560,7 +3592,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [278] = 278, [279] = 279, [280] = 280, - [281] = 281, + [281] = 229, [282] = 282, [283] = 283, [284] = 284, @@ -3612,9 +3644,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [330] = 330, [331] = 331, [332] = 332, - [333] = 233, + [333] = 333, [334] = 334, - [335] = 233, + [335] = 335, [336] = 336, [337] = 337, [338] = 338, @@ -3623,7 +3655,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [341] = 341, [342] = 342, [343] = 343, - [344] = 344, + [344] = 229, [345] = 345, [346] = 346, [347] = 347, @@ -3634,15 +3666,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [352] = 352, [353] = 353, [354] = 354, - [355] = 355, + [355] = 48, [356] = 356, [357] = 357, - [358] = 358, + [358] = 43, [359] = 359, [360] = 360, [361] = 361, [362] = 362, - [363] = 363, + [363] = 47, [364] = 364, [365] = 365, [366] = 366, @@ -3688,8 +3720,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [406] = 406, [407] = 407, [408] = 408, - [409] = 409, - [410] = 410, + [409] = 408, + [410] = 408, [411] = 411, [412] = 412, [413] = 413, @@ -3698,75 +3730,75 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [416] = 416, [417] = 417, [418] = 418, - [419] = 419, + [419] = 417, [420] = 420, - [421] = 421, + [421] = 418, [422] = 422, [423] = 423, - [424] = 424, + [424] = 420, [425] = 425, [426] = 426, [427] = 427, [428] = 428, [429] = 429, [430] = 430, - [431] = 431, - [432] = 432, - [433] = 428, + [431] = 416, + [432] = 430, + [433] = 426, [434] = 434, [435] = 435, [436] = 436, [437] = 437, - [438] = 429, + [438] = 438, [439] = 439, - [440] = 432, - [441] = 431, + [440] = 440, + [441] = 441, [442] = 442, [443] = 443, - [444] = 442, + [444] = 444, [445] = 445, - [446] = 435, + [446] = 444, [447] = 447, [448] = 448, [449] = 449, [450] = 450, - [451] = 447, + [451] = 451, [452] = 452, - [453] = 453, + [453] = 444, [454] = 454, [455] = 455, - [456] = 456, + [456] = 443, [457] = 457, [458] = 458, [459] = 459, [460] = 460, - [461] = 461, + [461] = 448, [462] = 462, - [463] = 459, + [463] = 463, [464] = 464, - [465] = 465, + [465] = 451, [466] = 466, - [467] = 450, - [468] = 468, - [469] = 457, + [467] = 458, + [468] = 451, + [469] = 469, [470] = 470, [471] = 471, - [472] = 460, - [473] = 450, - [474] = 457, - [475] = 475, + [472] = 470, + [473] = 471, + [474] = 474, + [475] = 474, [476] = 476, - [477] = 475, - [478] = 476, + [477] = 477, + [478] = 280, [479] = 479, [480] = 480, [481] = 481, - [482] = 479, - [483] = 414, - [484] = 378, - [485] = 260, + [482] = 482, + [483] = 483, + [484] = 336, + [485] = 485, [486] = 486, - [487] = 487, + [487] = 227, [488] = 488, [489] = 489, [490] = 490, @@ -3787,39 +3819,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [505] = 505, [506] = 506, [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, + [508] = 505, + [509] = 506, + [510] = 507, [511] = 511, - [512] = 510, - [513] = 511, + [512] = 512, + [513] = 513, [514] = 514, - [515] = 514, - [516] = 516, - [517] = 517, + [515] = 513, + [516] = 514, + [517] = 512, [518] = 518, - [519] = 519, + [519] = 518, [520] = 520, - [521] = 521, - [522] = 520, - [523] = 523, - [524] = 523, - [525] = 519, - [526] = 517, - [527] = 520, - [528] = 521, - [529] = 520, + [521] = 513, + [522] = 522, + [523] = 520, + [524] = 513, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 527, + [529] = 529, [530] = 530, [531] = 531, - [532] = 489, + [532] = 532, [533] = 533, [534] = 534, [535] = 535, - [536] = 535, + [536] = 536, [537] = 537, - [538] = 538, + [538] = 525, [539] = 539, - [540] = 531, + [540] = 540, [541] = 541, [542] = 542, [543] = 543, @@ -3832,77 +3864,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [550] = 550, [551] = 551, [552] = 552, - [553] = 553, + [553] = 529, [554] = 554, - [555] = 555, - [556] = 556, - [557] = 557, + [555] = 554, + [556] = 551, + [557] = 530, [558] = 558, - [559] = 559, + [559] = 541, [560] = 560, [561] = 561, [562] = 562, [563] = 563, - [564] = 564, + [564] = 552, [565] = 565, - [566] = 562, - [567] = 546, - [568] = 557, - [569] = 569, + [566] = 566, + [567] = 560, + [568] = 566, + [569] = 546, [570] = 570, - [571] = 571, - [572] = 572, - [573] = 561, - [574] = 538, - [575] = 546, - [576] = 576, + [571] = 540, + [572] = 560, + [573] = 566, + [574] = 574, + [575] = 575, + [576] = 531, [577] = 577, - [578] = 533, - [579] = 552, - [580] = 580, - [581] = 581, - [582] = 576, - [583] = 534, - [584] = 488, - [585] = 585, + [578] = 542, + [579] = 579, + [580] = 526, + [581] = 560, + [582] = 566, + [583] = 535, + [584] = 584, + [585] = 550, [586] = 586, - [587] = 564, - [588] = 576, + [587] = 587, + [588] = 588, [589] = 589, - [590] = 554, - [591] = 544, - [592] = 533, - [593] = 555, - [594] = 594, - [595] = 543, - [596] = 596, - [597] = 550, - [598] = 585, - [599] = 542, - [600] = 600, - [601] = 533, - [602] = 576, - [603] = 552, - [604] = 558, - [605] = 548, - [606] = 541, - [607] = 555, - [608] = 600, - [609] = 585, - [610] = 494, - [611] = 611, - [612] = 549, - [613] = 556, - [614] = 577, - [615] = 581, - [616] = 558, + [590] = 545, + [591] = 591, + [592] = 575, + [593] = 537, + [594] = 544, + [595] = 549, + [596] = 548, + [597] = 597, + [598] = 539, + [599] = 574, + [600] = 547, + [601] = 543, + [602] = 602, + [603] = 574, + [604] = 588, + [605] = 587, + [606] = 606, + [607] = 525, + [608] = 587, + [609] = 609, + [610] = 579, + [611] = 588, + [612] = 612, + [613] = 536, + [614] = 614, + [615] = 526, + [616] = 489, [617] = 617, [618] = 618, - [619] = 619, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 623, + [619] = 485, + [620] = 480, + [621] = 227, + [622] = 280, + [623] = 336, [624] = 624, [625] = 625, [626] = 626, @@ -3920,18 +3952,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [638] = 638, [639] = 639, [640] = 640, - [641] = 45, + [641] = 641, [642] = 642, [643] = 643, [644] = 644, [645] = 645, [646] = 646, - [647] = 647, + [647] = 42, [648] = 648, [649] = 649, [650] = 650, [651] = 651, - [652] = 177, + [652] = 652, [653] = 653, [654] = 654, [655] = 655, @@ -3942,69 +3974,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [660] = 660, [661] = 661, [662] = 662, - [663] = 414, - [664] = 81, + [663] = 663, + [664] = 664, [665] = 665, - [666] = 666, + [666] = 178, [667] = 667, - [668] = 73, - [669] = 76, - [670] = 59, + [668] = 62, + [669] = 70, + [670] = 483, [671] = 671, - [672] = 672, - [673] = 673, - [674] = 674, + [672] = 660, + [673] = 76, + [674] = 50, [675] = 675, [676] = 676, - [677] = 78, + [677] = 677, [678] = 678, [679] = 679, [680] = 680, [681] = 681, - [682] = 682, + [682] = 59, [683] = 683, - [684] = 64, - [685] = 685, - [686] = 72, - [687] = 687, - [688] = 627, - [689] = 689, - [690] = 690, + [684] = 684, + [685] = 481, + [686] = 686, + [687] = 48, + [688] = 660, + [689] = 66, + [690] = 72, [691] = 691, - [692] = 692, + [692] = 482, [693] = 693, [694] = 694, - [695] = 490, - [696] = 75, + [695] = 695, + [696] = 78, [697] = 697, [698] = 698, [699] = 699, - [700] = 700, - [701] = 378, - [702] = 491, + [700] = 54, + [701] = 701, + [702] = 702, [703] = 703, - [704] = 260, + [704] = 704, [705] = 705, [706] = 706, [707] = 707, [708] = 708, [709] = 709, - [710] = 710, - [711] = 711, + [710] = 47, + [711] = 479, [712] = 712, - [713] = 80, + [713] = 71, [714] = 714, - [715] = 715, + [715] = 56, [716] = 716, [717] = 717, [718] = 718, [719] = 719, [720] = 720, - [721] = 71, - [722] = 627, + [721] = 721, + [722] = 722, [723] = 723, [724] = 724, - [725] = 74, + [725] = 725, [726] = 726, [727] = 727, [728] = 728, @@ -4014,23 +4046,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [732] = 732, [733] = 733, [734] = 734, - [735] = 68, - [736] = 51, - [737] = 82, - [738] = 69, - [739] = 67, + [735] = 735, + [736] = 736, + [737] = 737, + [738] = 738, + [739] = 739, [740] = 740, - [741] = 486, + [741] = 741, [742] = 742, [743] = 743, [744] = 744, - [745] = 47, - [746] = 492, + [745] = 745, + [746] = 67, [747] = 747, - [748] = 748, - [749] = 749, + [748] = 43, + [749] = 77, [750] = 750, - [751] = 751, + [751] = 74, [752] = 752, [753] = 753, [754] = 754, @@ -4051,448 +4083,448 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [769] = 769, [770] = 770, [771] = 771, - [772] = 749, + [772] = 772, [773] = 773, [774] = 774, - [775] = 621, - [776] = 770, - [777] = 773, - [778] = 769, - [779] = 770, + [775] = 775, + [776] = 776, + [777] = 777, + [778] = 778, + [779] = 779, [780] = 780, - [781] = 773, - [782] = 769, - [783] = 774, - [784] = 774, - [785] = 785, - [786] = 621, - [787] = 787, - [788] = 788, + [781] = 781, + [782] = 759, + [783] = 783, + [784] = 781, + [785] = 776, + [786] = 777, + [787] = 777, + [788] = 778, [789] = 789, - [790] = 790, - [791] = 791, - [792] = 749, - [793] = 621, + [790] = 781, + [791] = 776, + [792] = 778, + [793] = 629, [794] = 794, - [795] = 632, - [796] = 628, - [797] = 787, + [795] = 759, + [796] = 642, + [797] = 797, [798] = 798, [799] = 799, - [800] = 800, - [801] = 623, - [802] = 791, - [803] = 624, - [804] = 794, - [805] = 788, - [806] = 806, - [807] = 807, + [800] = 629, + [801] = 801, + [802] = 802, + [803] = 665, + [804] = 804, + [805] = 629, + [806] = 802, + [807] = 798, [808] = 808, - [809] = 787, - [810] = 788, - [811] = 632, - [812] = 812, + [809] = 797, + [810] = 810, + [811] = 802, + [812] = 799, [813] = 813, [814] = 814, [815] = 798, - [816] = 816, - [817] = 650, - [818] = 628, - [819] = 723, - [820] = 699, - [821] = 643, - [822] = 698, - [823] = 697, - [824] = 798, - [825] = 659, - [826] = 635, - [827] = 827, - [828] = 828, + [816] = 630, + [817] = 631, + [818] = 665, + [819] = 813, + [820] = 820, + [821] = 729, + [822] = 667, + [823] = 671, + [824] = 676, + [825] = 639, + [826] = 740, + [827] = 650, + [828] = 642, [829] = 829, - [830] = 830, + [830] = 813, [831] = 831, [832] = 832, - [833] = 833, - [834] = 831, - [835] = 835, - [836] = 836, - [837] = 833, + [833] = 655, + [834] = 834, + [835] = 769, + [836] = 476, + [837] = 799, [838] = 838, - [839] = 838, + [839] = 766, [840] = 840, - [841] = 831, - [842] = 842, - [843] = 843, + [841] = 841, + [842] = 770, + [843] = 772, [844] = 844, - [845] = 833, - [846] = 840, - [847] = 847, - [848] = 847, - [849] = 838, - [850] = 830, - [851] = 851, - [852] = 794, - [853] = 853, + [845] = 845, + [846] = 764, + [847] = 771, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 753, + [852] = 755, + [853] = 775, [854] = 854, - [855] = 751, - [856] = 843, - [857] = 757, + [855] = 855, + [856] = 856, + [857] = 857, [858] = 858, - [859] = 844, - [860] = 835, - [861] = 840, - [862] = 750, - [863] = 833, + [859] = 859, + [860] = 860, + [861] = 859, + [862] = 862, + [863] = 863, [864] = 864, - [865] = 763, - [866] = 761, - [867] = 748, - [868] = 831, - [869] = 760, - [870] = 762, - [871] = 768, - [872] = 764, - [873] = 752, - [874] = 844, - [875] = 766, - [876] = 767, - [877] = 765, - [878] = 759, - [879] = 756, - [880] = 833, - [881] = 758, - [882] = 755, + [865] = 855, + [866] = 866, + [867] = 762, + [868] = 858, + [869] = 838, + [870] = 870, + [871] = 758, + [872] = 850, + [873] = 857, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 838, + [880] = 761, + [881] = 877, + [882] = 882, [883] = 883, [884] = 884, - [885] = 885, - [886] = 754, - [887] = 753, - [888] = 888, + [885] = 850, + [886] = 760, + [887] = 765, + [888] = 838, [889] = 889, - [890] = 791, - [891] = 891, - [892] = 831, - [893] = 893, + [890] = 756, + [891] = 850, + [892] = 757, + [893] = 862, [894] = 894, [895] = 895, - [896] = 896, + [896] = 857, [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 894, - [905] = 900, - [906] = 895, - [907] = 907, - [908] = 896, - [909] = 898, + [898] = 862, + [899] = 838, + [900] = 768, + [901] = 858, + [902] = 754, + [903] = 850, + [904] = 773, + [905] = 848, + [906] = 797, + [907] = 763, + [908] = 908, + [909] = 909, [910] = 910, [911] = 911, - [912] = 903, + [912] = 912, [913] = 913, - [914] = 910, - [915] = 907, + [914] = 914, + [915] = 915, [916] = 916, [917] = 917, [918] = 918, [919] = 919, [920] = 920, [921] = 921, - [922] = 480, - [923] = 923, - [924] = 924, - [925] = 925, + [922] = 922, + [923] = 911, + [924] = 922, + [925] = 919, [926] = 926, [927] = 927, - [928] = 928, - [929] = 928, - [930] = 930, - [931] = 931, - [932] = 932, + [928] = 908, + [929] = 929, + [930] = 915, + [931] = 910, + [932] = 927, [933] = 933, - [934] = 931, - [935] = 933, - [936] = 931, - [937] = 937, - [938] = 937, - [939] = 939, - [940] = 940, - [941] = 939, - [942] = 414, - [943] = 260, - [944] = 378, + [934] = 912, + [935] = 935, + [936] = 929, + [937] = 922, + [938] = 909, + [939] = 933, + [940] = 227, + [941] = 336, + [942] = 942, + [943] = 280, + [944] = 944, [945] = 945, [946] = 946, - [947] = 947, - [948] = 948, + [947] = 946, + [948] = 944, [949] = 949, - [950] = 949, - [951] = 949, - [952] = 949, - [953] = 949, - [954] = 954, - [955] = 955, - [956] = 954, - [957] = 957, - [958] = 957, - [959] = 59, - [960] = 47, - [961] = 51, - [962] = 962, - [963] = 620, - [964] = 626, - [965] = 621, - [966] = 625, - [967] = 489, - [968] = 620, - [969] = 644, - [970] = 621, - [971] = 494, - [972] = 626, - [973] = 488, - [974] = 625, - [975] = 651, - [976] = 572, - [977] = 977, - [978] = 646, - [979] = 634, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 953, + [955] = 953, + [956] = 953, + [957] = 953, + [958] = 958, + [959] = 958, + [960] = 960, + [961] = 961, + [962] = 961, + [963] = 47, + [964] = 48, + [965] = 43, + [966] = 966, + [967] = 628, + [968] = 485, + [969] = 627, + [970] = 629, + [971] = 626, + [972] = 635, + [973] = 629, + [974] = 628, + [975] = 480, + [976] = 626, + [977] = 489, + [978] = 627, + [979] = 654, [980] = 980, - [981] = 655, - [982] = 982, - [983] = 642, - [984] = 551, - [985] = 653, - [986] = 638, - [987] = 618, - [988] = 378, - [989] = 414, - [990] = 990, - [991] = 633, - [992] = 647, - [993] = 631, - [994] = 260, - [995] = 654, - [996] = 629, - [997] = 645, - [998] = 657, - [999] = 648, - [1000] = 660, - [1001] = 630, - [1002] = 619, - [1003] = 262, - [1004] = 348, - [1005] = 291, - [1006] = 347, - [1007] = 350, - [1008] = 390, - [1009] = 367, + [981] = 981, + [982] = 280, + [983] = 662, + [984] = 336, + [985] = 985, + [986] = 618, + [987] = 652, + [988] = 227, + [989] = 651, + [990] = 617, + [991] = 646, + [992] = 349, + [993] = 404, + [994] = 354, + [995] = 373, + [996] = 402, + [997] = 403, + [998] = 271, + [999] = 269, + [1000] = 265, + [1001] = 270, + [1002] = 369, + [1003] = 389, + [1004] = 339, + [1005] = 261, + [1006] = 340, + [1007] = 653, + [1008] = 259, + [1009] = 405, [1010] = 352, - [1011] = 355, - [1012] = 231, - [1013] = 234, - [1014] = 411, - [1015] = 415, - [1016] = 283, - [1017] = 285, - [1018] = 492, - [1019] = 343, - [1020] = 326, - [1021] = 320, - [1022] = 318, - [1023] = 374, - [1024] = 683, - [1025] = 680, - [1026] = 360, - [1027] = 711, - [1028] = 356, - [1029] = 353, - [1030] = 662, - [1031] = 317, - [1032] = 710, - [1033] = 344, - [1034] = 316, - [1035] = 339, - [1036] = 1036, - [1037] = 306, - [1038] = 337, - [1039] = 305, - [1040] = 228, - [1041] = 248, - [1042] = 708, - [1043] = 249, - [1044] = 257, - [1045] = 706, - [1046] = 269, - [1047] = 277, - [1048] = 281, - [1049] = 321, - [1050] = 323, - [1051] = 665, - [1052] = 666, - [1053] = 273, - [1054] = 268, - [1055] = 266, - [1056] = 263, - [1057] = 410, - [1058] = 689, - [1059] = 259, - [1060] = 313, - [1061] = 299, - [1062] = 325, - [1063] = 270, - [1064] = 289, - [1065] = 310, - [1066] = 311, - [1067] = 743, - [1068] = 334, - [1069] = 329, - [1070] = 327, - [1071] = 298, - [1072] = 288, - [1073] = 376, - [1074] = 491, - [1075] = 399, - [1076] = 244, - [1077] = 243, - [1078] = 346, - [1079] = 286, - [1080] = 235, - [1081] = 362, - [1082] = 294, - [1083] = 303, - [1084] = 380, - [1085] = 382, - [1086] = 386, - [1087] = 744, - [1088] = 413, - [1089] = 322, - [1090] = 490, - [1091] = 314, - [1092] = 307, - [1093] = 276, - [1094] = 728, - [1095] = 271, - [1096] = 261, - [1097] = 247, - [1098] = 72, - [1099] = 675, - [1100] = 674, - [1101] = 71, - [1102] = 242, - [1103] = 241, - [1104] = 237, - [1105] = 287, - [1106] = 236, - [1107] = 230, - [1108] = 232, - [1109] = 245, - [1110] = 82, - [1111] = 255, - [1112] = 264, - [1113] = 267, - [1114] = 732, - [1115] = 290, - [1116] = 733, - [1117] = 284, - [1118] = 282, - [1119] = 280, - [1120] = 279, - [1121] = 292, - [1122] = 278, - [1123] = 293, - [1124] = 274, - [1125] = 272, - [1126] = 256, - [1127] = 252, - [1128] = 251, - [1129] = 295, - [1130] = 246, - [1131] = 238, - [1132] = 375, - [1133] = 336, - [1134] = 328, - [1135] = 296, - [1136] = 324, - [1137] = 297, - [1138] = 312, - [1139] = 309, - [1140] = 300, - [1141] = 302, - [1142] = 275, - [1143] = 340, - [1144] = 342, - [1145] = 304, - [1146] = 315, - [1147] = 349, - [1148] = 354, - [1149] = 319, - [1150] = 357, - [1151] = 365, - [1152] = 330, - [1153] = 331, - [1154] = 377, - [1155] = 332, - [1156] = 345, - [1157] = 351, - [1158] = 391, - [1159] = 358, - [1160] = 392, - [1161] = 393, - [1162] = 395, - [1163] = 396, - [1164] = 398, - [1165] = 400, - [1166] = 401, - [1167] = 405, - [1168] = 407, - [1169] = 409, - [1170] = 412, - [1171] = 406, - [1172] = 404, - [1173] = 403, - [1174] = 359, - [1175] = 361, - [1176] = 402, - [1177] = 363, - [1178] = 397, - [1179] = 394, - [1180] = 389, - [1181] = 388, - [1182] = 364, - [1183] = 229, - [1184] = 387, - [1185] = 366, - [1186] = 384, - [1187] = 368, - [1188] = 369, - [1189] = 370, - [1190] = 371, - [1191] = 372, - [1192] = 381, - [1193] = 379, - [1194] = 373, - [1195] = 1195, - [1196] = 1196, + [1011] = 260, + [1012] = 262, + [1013] = 338, + [1014] = 337, + [1015] = 356, + [1016] = 392, + [1017] = 272, + [1018] = 235, + [1019] = 372, + [1020] = 332, + [1021] = 331, + [1022] = 362, + [1023] = 268, + [1024] = 326, + [1025] = 391, + [1026] = 645, + [1027] = 307, + [1028] = 399, + [1029] = 246, + [1030] = 329, + [1031] = 361, + [1032] = 390, + [1033] = 643, + [1034] = 388, + [1035] = 624, + [1036] = 258, + [1037] = 327, + [1038] = 385, + [1039] = 359, + [1040] = 636, + [1041] = 263, + [1042] = 383, + [1043] = 305, + [1044] = 325, + [1045] = 302, + [1046] = 267, + [1047] = 279, + [1048] = 290, + [1049] = 382, + [1050] = 243, + [1051] = 312, + [1052] = 375, + [1053] = 406, + [1054] = 380, + [1055] = 301, + [1056] = 379, + [1057] = 236, + [1058] = 384, + [1059] = 238, + [1060] = 407, + [1061] = 249, + [1062] = 275, + [1063] = 401, + [1064] = 274, + [1065] = 366, + [1066] = 300, + [1067] = 364, + [1068] = 360, + [1069] = 357, + [1070] = 70, + [1071] = 251, + [1072] = 345, + [1073] = 353, + [1074] = 294, + [1075] = 232, + [1076] = 348, + [1077] = 634, + [1078] = 250, + [1079] = 398, + [1080] = 324, + [1081] = 228, + [1082] = 638, + [1083] = 241, + [1084] = 297, + [1085] = 295, + [1086] = 293, + [1087] = 278, + [1088] = 248, + [1089] = 266, + [1090] = 264, + [1091] = 346, + [1092] = 343, + [1093] = 234, + [1094] = 231, + [1095] = 400, + [1096] = 233, + [1097] = 334, + [1098] = 230, + [1099] = 292, + [1100] = 347, + [1101] = 368, + [1102] = 367, + [1103] = 240, + [1104] = 335, + [1105] = 663, + [1106] = 371, + [1107] = 273, + [1108] = 386, + [1109] = 658, + [1110] = 656, + [1111] = 381, + [1112] = 625, + [1113] = 365, + [1114] = 323, + [1115] = 254, + [1116] = 387, + [1117] = 657, + [1118] = 322, + [1119] = 291, + [1120] = 320, + [1121] = 318, + [1122] = 397, + [1123] = 289, + [1124] = 394, + [1125] = 393, + [1126] = 1126, + [1127] = 317, + [1128] = 374, + [1129] = 66, + [1130] = 239, + [1131] = 659, + [1132] = 333, + [1133] = 350, + [1134] = 244, + [1135] = 633, + [1136] = 257, + [1137] = 342, + [1138] = 341, + [1139] = 242, + [1140] = 316, + [1141] = 245, + [1142] = 310, + [1143] = 378, + [1144] = 315, + [1145] = 287, + [1146] = 247, + [1147] = 314, + [1148] = 313, + [1149] = 311, + [1150] = 319, + [1151] = 276, + [1152] = 298, + [1153] = 303, + [1154] = 226, + [1155] = 328, + [1156] = 377, + [1157] = 308, + [1158] = 309, + [1159] = 330, + [1160] = 351, + [1161] = 306, + [1162] = 376, + [1163] = 288, + [1164] = 304, + [1165] = 252, + [1166] = 286, + [1167] = 296, + [1168] = 285, + [1169] = 283, + [1170] = 256, + [1171] = 72, + [1172] = 722, + [1173] = 482, + [1174] = 1174, + [1175] = 686, + [1176] = 716, + [1177] = 742, + [1178] = 736, + [1179] = 735, + [1180] = 730, + [1181] = 709, + [1182] = 681, + [1183] = 483, + [1184] = 752, + [1185] = 714, + [1186] = 750, + [1187] = 695, + [1188] = 725, + [1189] = 705, + [1190] = 479, + [1191] = 732, + [1192] = 734, + [1193] = 1193, + [1194] = 1194, + [1195] = 1194, + [1196] = 1194, [1197] = 1197, - [1198] = 1195, - [1199] = 1195, + [1198] = 1198, + [1199] = 1199, [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 636, - [1205] = 1205, - [1206] = 639, + [1201] = 637, + [1202] = 644, + [1203] = 640, + [1204] = 641, + [1205] = 648, + [1206] = 1206, [1207] = 1207, - [1208] = 637, - [1209] = 640, + [1208] = 1208, + [1209] = 1209, [1210] = 1210, [1211] = 1211, [1212] = 1212, - [1213] = 649, + [1213] = 1213, [1214] = 1214, [1215] = 1215, [1216] = 1216, @@ -4515,43 +4547,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1233] = 1233, [1234] = 1234, [1235] = 1235, - [1236] = 73, + [1236] = 1236, [1237] = 1237, [1238] = 1238, [1239] = 1239, [1240] = 1240, [1241] = 1241, [1242] = 1242, - [1243] = 1243, + [1243] = 71, [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 625, - [1248] = 621, - [1249] = 626, - [1250] = 620, - [1251] = 620, - [1252] = 626, - [1253] = 621, - [1254] = 625, - [1255] = 620, - [1256] = 572, - [1257] = 621, - [1258] = 625, - [1259] = 551, - [1260] = 626, - [1261] = 1261, - [1262] = 947, - [1263] = 1263, - [1264] = 1264, - [1265] = 619, + [1245] = 628, + [1246] = 626, + [1247] = 629, + [1248] = 628, + [1249] = 1249, + [1250] = 626, + [1251] = 952, + [1252] = 627, + [1253] = 629, + [1254] = 618, + [1255] = 627, + [1256] = 617, + [1257] = 626, + [1258] = 629, + [1259] = 1249, + [1260] = 627, + [1261] = 628, + [1262] = 625, + [1263] = 624, + [1264] = 949, + [1265] = 1265, [1266] = 1266, - [1267] = 618, - [1268] = 1261, - [1269] = 1264, - [1270] = 1270, - [1271] = 1271, - [1272] = 1266, + [1267] = 1267, + [1268] = 1265, + [1269] = 1269, + [1270] = 1269, + [1271] = 951, + [1272] = 950, [1273] = 1273, [1274] = 1274, [1275] = 1275, @@ -4559,294 +4591,294 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1277] = 1277, [1278] = 1278, [1279] = 1279, - [1280] = 1276, - [1281] = 1279, - [1282] = 948, - [1283] = 1271, - [1284] = 1284, - [1285] = 1277, + [1280] = 1280, + [1281] = 1273, + [1282] = 1282, + [1283] = 1279, + [1284] = 1280, + [1285] = 1276, [1286] = 1286, - [1287] = 1284, + [1287] = 1286, [1288] = 1288, [1289] = 1289, - [1290] = 1286, - [1291] = 1273, - [1292] = 946, - [1293] = 945, - [1294] = 1294, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1292, + [1294] = 1288, [1295] = 1295, [1296] = 1296, - [1297] = 1297, + [1297] = 1126, [1298] = 1298, - [1299] = 1299, - [1300] = 1297, - [1301] = 1295, + [1299] = 1296, + [1300] = 1300, + [1301] = 1301, [1302] = 1302, [1303] = 1303, - [1304] = 1271, + [1304] = 1304, [1305] = 1305, - [1306] = 1296, - [1307] = 1294, - [1308] = 1299, + [1306] = 1306, + [1307] = 1303, + [1308] = 1273, [1309] = 1309, - [1310] = 1302, - [1311] = 1311, - [1312] = 1312, + [1310] = 1295, + [1311] = 1300, + [1312] = 1304, [1313] = 1313, - [1314] = 1314, + [1314] = 1298, [1315] = 1315, - [1316] = 1299, - [1317] = 990, - [1318] = 1303, + [1316] = 1316, + [1317] = 1317, + [1318] = 1315, [1319] = 1319, [1320] = 1320, - [1321] = 1305, - [1322] = 1320, - [1323] = 1323, - [1324] = 1324, + [1321] = 1304, + [1322] = 1322, + [1323] = 1322, + [1324] = 1302, [1325] = 1325, [1326] = 1326, - [1327] = 1327, - [1328] = 1328, + [1327] = 644, + [1328] = 637, [1329] = 1329, [1330] = 1330, [1331] = 1331, [1332] = 1332, - [1333] = 990, - [1334] = 1328, - [1335] = 636, - [1336] = 640, + [1333] = 1333, + [1334] = 1333, + [1335] = 1335, + [1336] = 1336, [1337] = 1337, - [1338] = 1324, + [1338] = 1338, [1339] = 1339, - [1340] = 637, - [1341] = 1341, - [1342] = 639, - [1343] = 1343, + [1340] = 1340, + [1341] = 1339, + [1342] = 1342, + [1343] = 1336, [1344] = 1344, - [1345] = 1331, + [1345] = 1345, [1346] = 1346, [1347] = 1347, [1348] = 1348, - [1349] = 1326, - [1350] = 1350, - [1351] = 1337, - [1352] = 1327, - [1353] = 1353, - [1354] = 1332, - [1355] = 1350, - [1356] = 1356, - [1357] = 1357, + [1349] = 640, + [1350] = 1346, + [1351] = 1126, + [1352] = 1345, + [1353] = 1347, + [1354] = 1354, + [1355] = 1348, + [1356] = 641, + [1357] = 1335, [1358] = 1358, [1359] = 1359, [1360] = 1360, [1361] = 1361, [1362] = 1362, [1363] = 1363, - [1364] = 1364, + [1364] = 1126, [1365] = 1365, [1366] = 1366, [1367] = 1367, [1368] = 1368, - [1369] = 1369, + [1369] = 1363, [1370] = 1370, [1371] = 1371, [1372] = 1372, - [1373] = 1373, - [1374] = 1365, - [1375] = 1375, - [1376] = 1371, - [1377] = 1364, - [1378] = 1367, - [1379] = 1362, - [1380] = 1364, - [1381] = 1358, - [1382] = 1382, - [1383] = 1383, - [1384] = 1370, - [1385] = 1358, + [1373] = 1362, + [1374] = 1371, + [1375] = 1363, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1361, + [1381] = 1381, + [1382] = 1377, + [1383] = 1368, + [1384] = 1384, + [1385] = 1385, [1386] = 1386, [1387] = 1387, - [1388] = 1388, - [1389] = 1375, - [1390] = 990, - [1391] = 1357, - [1392] = 1387, + [1388] = 1370, + [1389] = 1387, + [1390] = 1359, + [1391] = 1391, + [1392] = 1392, [1393] = 1393, [1394] = 1394, [1395] = 1395, - [1396] = 1369, + [1396] = 1396, [1397] = 1397, [1398] = 1398, - [1399] = 1372, - [1400] = 1400, + [1399] = 1358, + [1400] = 1384, [1401] = 1401, - [1402] = 1361, - [1403] = 1403, - [1404] = 1359, + [1402] = 1367, + [1403] = 1394, + [1404] = 1401, [1405] = 1405, [1406] = 1406, - [1407] = 1407, - [1408] = 1360, - [1409] = 1409, - [1410] = 1369, - [1411] = 1397, - [1412] = 1398, + [1407] = 1406, + [1408] = 1408, + [1409] = 1396, + [1410] = 1410, + [1411] = 1411, + [1412] = 1408, [1413] = 1365, - [1414] = 1414, - [1415] = 1356, - [1416] = 1405, - [1417] = 1407, - [1418] = 1373, + [1414] = 1378, + [1415] = 1411, + [1416] = 1408, + [1417] = 1395, + [1418] = 1361, [1419] = 1419, - [1420] = 1420, - [1421] = 1366, - [1422] = 1422, - [1423] = 1414, - [1424] = 1363, - [1425] = 1425, - [1426] = 1406, + [1420] = 1394, + [1421] = 1385, + [1422] = 1386, + [1423] = 1376, + [1424] = 1398, + [1425] = 1381, + [1426] = 1410, [1427] = 1427, - [1428] = 1401, - [1429] = 1419, - [1430] = 1395, - [1431] = 1393, - [1432] = 1403, - [1433] = 1433, - [1434] = 1394, + [1428] = 1393, + [1429] = 1429, + [1430] = 1405, + [1431] = 1431, + [1432] = 1427, + [1433] = 1397, + [1434] = 1434, [1435] = 1435, [1436] = 1436, [1437] = 1437, [1438] = 1438, [1439] = 1439, - [1440] = 480, - [1441] = 1441, - [1442] = 1442, + [1440] = 1440, + [1441] = 1391, + [1442] = 1392, [1443] = 1443, [1444] = 1444, - [1445] = 1445, - [1446] = 1438, - [1447] = 1443, + [1445] = 1436, + [1446] = 1446, + [1447] = 1447, [1448] = 1448, - [1449] = 1435, - [1450] = 1443, + [1449] = 1431, + [1450] = 1450, [1451] = 1451, - [1452] = 1452, - [1453] = 1452, - [1454] = 1454, - [1455] = 1448, - [1456] = 1456, + [1452] = 1439, + [1453] = 1453, + [1454] = 1440, + [1455] = 1455, + [1456] = 1436, [1457] = 1457, - [1458] = 1448, - [1459] = 1441, - [1460] = 1457, - [1461] = 1438, - [1462] = 1422, - [1463] = 1433, - [1464] = 1464, - [1465] = 1464, - [1466] = 1452, - [1467] = 1441, - [1468] = 1468, + [1458] = 1444, + [1459] = 1455, + [1460] = 1460, + [1461] = 1446, + [1462] = 1460, + [1463] = 1434, + [1464] = 1446, + [1465] = 1450, + [1466] = 1460, + [1467] = 1467, + [1468] = 1443, [1469] = 1444, - [1470] = 1454, - [1471] = 1442, - [1472] = 1442, - [1473] = 1436, - [1474] = 1474, - [1475] = 1475, - [1476] = 1439, + [1470] = 1443, + [1471] = 1447, + [1472] = 1455, + [1473] = 1473, + [1474] = 476, + [1475] = 663, + [1476] = 1476, [1477] = 1477, [1478] = 1478, - [1479] = 1425, + [1479] = 1479, [1480] = 1480, - [1481] = 1451, - [1482] = 1368, - [1483] = 1483, + [1481] = 1481, + [1482] = 1482, + [1483] = 663, [1484] = 1484, [1485] = 1485, [1486] = 1486, [1487] = 1487, [1488] = 1488, - [1489] = 1489, + [1489] = 663, [1490] = 1490, - [1491] = 631, + [1491] = 1491, [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 1497, + [1497] = 1492, [1498] = 1498, [1499] = 1499, - [1500] = 1500, + [1500] = 1488, [1501] = 1501, [1502] = 1502, [1503] = 1503, [1504] = 1504, - [1505] = 1505, - [1506] = 1506, + [1505] = 1477, + [1506] = 1501, [1507] = 1507, [1508] = 1508, [1509] = 1509, - [1510] = 1484, - [1511] = 1511, - [1512] = 1486, - [1513] = 1505, - [1514] = 1514, + [1510] = 1510, + [1511] = 1495, + [1512] = 1512, + [1513] = 1498, + [1514] = 1490, [1515] = 1515, - [1516] = 1516, + [1516] = 1501, [1517] = 1517, - [1518] = 631, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, + [1518] = 1518, + [1519] = 1490, + [1520] = 1494, + [1521] = 1480, [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1515, - [1526] = 1526, - [1527] = 1527, - [1528] = 1503, + [1525] = 1525, + [1526] = 1518, + [1527] = 1486, + [1528] = 1528, [1529] = 1529, - [1530] = 1507, - [1531] = 1531, + [1530] = 1530, + [1531] = 1525, [1532] = 1532, - [1533] = 1498, - [1534] = 1496, - [1535] = 1531, + [1533] = 1508, + [1534] = 1477, + [1535] = 1535, [1536] = 1536, - [1537] = 1509, + [1537] = 1503, [1538] = 1538, - [1539] = 1522, + [1539] = 1539, [1540] = 1540, - [1541] = 1541, - [1542] = 1494, - [1543] = 1540, - [1544] = 1544, - [1545] = 1545, - [1546] = 1532, + [1541] = 1504, + [1542] = 1542, + [1543] = 1478, + [1544] = 1529, + [1545] = 1523, + [1546] = 1515, [1547] = 1547, - [1548] = 1514, + [1548] = 1479, [1549] = 1549, - [1550] = 1489, - [1551] = 1551, - [1552] = 1499, + [1550] = 1550, + [1551] = 1510, + [1552] = 1552, [1553] = 1553, - [1554] = 1514, + [1554] = 1554, [1555] = 1555, - [1556] = 1492, - [1557] = 1493, - [1558] = 1538, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, [1559] = 1559, - [1560] = 1517, + [1560] = 1560, [1561] = 1561, - [1562] = 1538, + [1562] = 1562, [1563] = 1563, - [1564] = 1488, - [1565] = 1499, - [1566] = 1511, - [1567] = 631, + [1564] = 841, + [1565] = 894, + [1566] = 1566, + [1567] = 1567, [1568] = 1568, [1569] = 1569, [1570] = 1570, @@ -4861,10 +4893,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1579] = 1579, [1580] = 1580, [1581] = 1581, - [1582] = 1578, + [1582] = 1582, [1583] = 1583, - [1584] = 1577, - [1585] = 1580, + [1584] = 1584, + [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, @@ -4877,47 +4909,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1595] = 1595, [1596] = 1596, [1597] = 1597, - [1598] = 1578, + [1598] = 1598, [1599] = 1599, [1600] = 1600, - [1601] = 1580, + [1601] = 1601, [1602] = 1602, - [1603] = 1594, + [1603] = 1603, [1604] = 1604, - [1605] = 1597, + [1605] = 1605, [1606] = 1606, [1607] = 1607, - [1608] = 1578, + [1608] = 1608, [1609] = 1609, - [1610] = 1580, + [1610] = 1610, [1611] = 1611, [1612] = 1612, [1613] = 1613, [1614] = 1614, [1615] = 1615, - [1616] = 1616, + [1616] = 1579, [1617] = 1617, [1618] = 1618, [1619] = 1619, - [1620] = 1620, + [1620] = 1599, [1621] = 1621, [1622] = 1622, - [1623] = 1623, + [1623] = 874, [1624] = 1624, [1625] = 1625, [1626] = 1626, - [1627] = 1594, + [1627] = 860, [1628] = 1628, [1629] = 1629, - [1630] = 1630, - [1631] = 1631, - [1632] = 1597, - [1633] = 1578, + [1630] = 1485, + [1631] = 1599, + [1632] = 1632, + [1633] = 1633, [1634] = 1634, - [1635] = 1580, + [1635] = 1635, [1636] = 1636, [1637] = 1637, - [1638] = 1638, + [1638] = 1579, [1639] = 1639, [1640] = 1640, [1641] = 1641, @@ -4928,15 +4960,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1646] = 1646, [1647] = 1647, [1648] = 1648, - [1649] = 1648, - [1650] = 1590, + [1649] = 1649, + [1650] = 1640, [1651] = 1651, [1652] = 1652, - [1653] = 1646, + [1653] = 1653, [1654] = 1654, [1655] = 1655, [1656] = 1656, - [1657] = 1606, + [1657] = 1657, [1658] = 1658, [1659] = 1659, [1660] = 1660, @@ -4944,162 +4976,162 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1662] = 1662, [1663] = 1663, [1664] = 1664, - [1665] = 1663, - [1666] = 1618, - [1667] = 1667, + [1665] = 1665, + [1666] = 1662, + [1667] = 1665, [1668] = 1668, - [1669] = 1652, - [1670] = 1619, - [1671] = 1594, + [1669] = 1669, + [1670] = 1656, + [1671] = 1671, [1672] = 1672, [1673] = 1673, [1674] = 1674, - [1675] = 1675, + [1675] = 1579, [1676] = 1676, - [1677] = 1618, + [1677] = 1646, [1678] = 1678, - [1679] = 1679, + [1679] = 1661, [1680] = 1680, - [1681] = 1681, + [1681] = 1643, [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 924, - [1686] = 1686, + [1683] = 1641, + [1684] = 1584, + [1685] = 1685, + [1686] = 1639, [1687] = 1687, - [1688] = 923, - [1689] = 1642, - [1690] = 1620, - [1691] = 1691, - [1692] = 1577, + [1688] = 1688, + [1689] = 1579, + [1690] = 1614, + [1691] = 1599, + [1692] = 1692, [1693] = 1693, [1694] = 1694, - [1695] = 1654, - [1696] = 1696, + [1695] = 1637, + [1696] = 1617, [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1617, - [1701] = 1676, - [1702] = 1571, + [1698] = 1605, + [1699] = 1640, + [1700] = 1700, + [1701] = 1701, + [1702] = 1583, [1703] = 1703, - [1704] = 1640, + [1704] = 1704, [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1577, + [1706] = 1659, + [1707] = 1599, + [1708] = 1708, [1709] = 1709, [1710] = 1710, - [1711] = 1711, + [1711] = 1663, [1712] = 1712, - [1713] = 1619, - [1714] = 1714, + [1713] = 1606, + [1714] = 1574, [1715] = 1715, - [1716] = 1716, - [1717] = 1717, + [1716] = 1694, + [1717] = 1599, [1718] = 1718, - [1719] = 1600, + [1719] = 1575, [1720] = 1720, [1721] = 1721, - [1722] = 1623, - [1723] = 1660, - [1724] = 1724, - [1725] = 1639, - [1726] = 1589, + [1722] = 1715, + [1723] = 1568, + [1724] = 1563, + [1725] = 1725, + [1726] = 1612, [1727] = 1727, - [1728] = 1644, - [1729] = 927, - [1730] = 926, - [1731] = 1580, - [1732] = 1711, + [1728] = 1728, + [1729] = 1579, + [1730] = 1730, + [1731] = 1661, + [1732] = 1732, [1733] = 1733, - [1734] = 1684, - [1735] = 1576, - [1736] = 1736, - [1737] = 1737, + [1734] = 1598, + [1735] = 1735, + [1736] = 1653, + [1737] = 1579, [1738] = 1738, [1739] = 1739, - [1740] = 1580, - [1741] = 1741, - [1742] = 1707, - [1743] = 1743, - [1744] = 1578, - [1745] = 1636, - [1746] = 1746, - [1747] = 1597, - [1748] = 1694, + [1740] = 1642, + [1741] = 1599, + [1742] = 1661, + [1743] = 1710, + [1744] = 866, + [1745] = 1596, + [1746] = 1632, + [1747] = 864, + [1748] = 1593, [1749] = 1749, [1750] = 1750, - [1751] = 1751, + [1751] = 1589, [1752] = 1752, - [1753] = 1681, - [1754] = 1754, - [1755] = 1570, - [1756] = 1698, - [1757] = 1687, - [1758] = 1758, - [1759] = 1717, - [1760] = 1682, - [1761] = 1691, - [1762] = 1680, + [1753] = 1678, + [1754] = 1646, + [1755] = 1755, + [1756] = 1582, + [1757] = 1757, + [1758] = 1687, + [1759] = 1668, + [1760] = 1760, + [1761] = 1761, + [1762] = 1728, [1763] = 1763, [1764] = 1764, - [1765] = 1765, + [1765] = 1640, [1766] = 1766, - [1767] = 1767, - [1768] = 1597, - [1769] = 1769, - [1770] = 1714, - [1771] = 1771, - [1772] = 1772, - [1773] = 1643, + [1767] = 1721, + [1768] = 1596, + [1769] = 1618, + [1770] = 1658, + [1771] = 1576, + [1772] = 1685, + [1773] = 1773, [1774] = 1774, - [1775] = 1733, - [1776] = 1776, - [1777] = 1578, - [1778] = 1741, - [1779] = 1749, - [1780] = 1780, - [1781] = 1746, - [1782] = 1769, - [1783] = 1783, - [1784] = 1594, - [1785] = 1738, + [1775] = 1591, + [1776] = 1669, + [1777] = 1646, + [1778] = 1634, + [1779] = 1611, + [1780] = 1597, + [1781] = 1593, + [1782] = 1782, + [1783] = 1594, + [1784] = 1784, + [1785] = 1557, [1786] = 1786, - [1787] = 1502, - [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, - [1792] = 1792, - [1793] = 1574, - [1794] = 925, - [1795] = 1575, - [1796] = 1662, + [1787] = 1633, + [1788] = 1562, + [1789] = 1561, + [1790] = 1661, + [1791] = 1577, + [1792] = 1586, + [1793] = 1793, + [1794] = 1566, + [1795] = 1640, + [1796] = 1628, [1797] = 1797, - [1798] = 1583, - [1799] = 930, - [1800] = 1772, + [1798] = 1798, + [1799] = 1613, + [1800] = 1648, [1801] = 1801, - [1802] = 1607, - [1803] = 1638, - [1804] = 1622, + [1802] = 1802, + [1803] = 1803, + [1804] = 1804, [1805] = 1805, - [1806] = 1641, + [1806] = 1806, [1807] = 1807, - [1808] = 1673, - [1809] = 1661, + [1808] = 1808, + [1809] = 1809, [1810] = 1810, [1811] = 1811, - [1812] = 674, + [1812] = 1808, [1813] = 1813, [1814] = 1814, [1815] = 1815, [1816] = 1816, - [1817] = 1814, + [1817] = 1817, [1818] = 1818, [1819] = 1819, - [1820] = 1816, + [1820] = 1820, [1821] = 1821, [1822] = 1822, [1823] = 1823, @@ -5107,246 +5139,246 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1825] = 1825, [1826] = 1826, [1827] = 1827, - [1828] = 1828, + [1828] = 1809, [1829] = 1829, - [1830] = 493, + [1830] = 1830, [1831] = 1831, [1832] = 1832, - [1833] = 487, + [1833] = 1833, [1834] = 1834, [1835] = 1835, - [1836] = 1815, + [1836] = 1836, [1837] = 1837, [1838] = 1838, - [1839] = 1839, - [1840] = 1840, - [1841] = 1841, + [1839] = 1827, + [1840] = 1811, + [1841] = 1801, [1842] = 1842, [1843] = 1843, - [1844] = 1844, + [1844] = 1843, [1845] = 1845, [1846] = 1846, - [1847] = 486, - [1848] = 1818, - [1849] = 1828, - [1850] = 1343, + [1847] = 1847, + [1848] = 1848, + [1849] = 1849, + [1850] = 481, [1851] = 1851, [1852] = 1852, - [1853] = 1841, - [1854] = 1841, - [1855] = 1822, - [1856] = 1831, + [1853] = 1853, + [1854] = 1831, + [1855] = 1855, + [1856] = 1856, [1857] = 1857, [1858] = 1858, - [1859] = 1859, + [1859] = 1857, [1860] = 1860, - [1861] = 1857, + [1861] = 1861, [1862] = 1862, - [1863] = 1863, + [1863] = 1818, [1864] = 1864, - [1865] = 1832, - [1866] = 1832, - [1867] = 1858, + [1865] = 1819, + [1866] = 1866, + [1867] = 1867, [1868] = 1868, [1869] = 1869, - [1870] = 1870, + [1870] = 1864, [1871] = 1871, - [1872] = 1825, - [1873] = 1873, + [1872] = 1872, + [1873] = 486, [1874] = 1874, - [1875] = 1862, - [1876] = 1874, + [1875] = 1875, + [1876] = 1876, [1877] = 1877, - [1878] = 1862, - [1879] = 1879, - [1880] = 1879, - [1881] = 1857, + [1878] = 1878, + [1879] = 1829, + [1880] = 1880, + [1881] = 1881, [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, + [1883] = 1866, + [1884] = 1826, + [1885] = 1824, [1886] = 1886, [1887] = 1887, - [1888] = 665, + [1888] = 1888, [1889] = 1889, [1890] = 1890, [1891] = 1891, - [1892] = 1851, - [1893] = 1829, - [1894] = 1860, - [1895] = 675, + [1892] = 1892, + [1893] = 1893, + [1894] = 1894, + [1895] = 1895, [1896] = 1896, - [1897] = 1897, + [1897] = 1868, [1898] = 1898, - [1899] = 1871, - [1900] = 1891, + [1899] = 1809, + [1900] = 1869, [1901] = 1901, - [1902] = 1897, + [1902] = 1902, [1903] = 1903, - [1904] = 1904, - [1905] = 1905, - [1906] = 1869, - [1907] = 1907, - [1908] = 1868, + [1904] = 725, + [1905] = 1804, + [1906] = 1906, + [1907] = 1817, + [1908] = 1908, [1909] = 1909, [1910] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1913, - [1914] = 1914, - [1915] = 1905, - [1916] = 1823, - [1917] = 1917, - [1918] = 1918, - [1919] = 1844, + [1911] = 1804, + [1912] = 1882, + [1913] = 1893, + [1914] = 1811, + [1915] = 1829, + [1916] = 1862, + [1917] = 1891, + [1918] = 1890, + [1919] = 1861, [1920] = 1920, - [1921] = 1921, - [1922] = 1838, - [1923] = 1821, - [1924] = 1824, - [1925] = 1925, - [1926] = 1879, - [1927] = 1927, + [1921] = 1849, + [1922] = 1848, + [1923] = 1810, + [1924] = 1807, + [1925] = 1889, + [1926] = 1871, + [1927] = 1856, [1928] = 1928, - [1929] = 1842, - [1930] = 1928, - [1931] = 1927, + [1929] = 1855, + [1930] = 1886, + [1931] = 1931, [1932] = 1932, - [1933] = 1933, - [1934] = 1871, - [1935] = 1840, + [1933] = 1860, + [1934] = 1934, + [1935] = 1935, [1936] = 1936, [1937] = 1937, - [1938] = 1938, - [1939] = 1939, - [1940] = 1897, - [1941] = 1859, - [1942] = 1882, - [1943] = 1882, - [1944] = 1862, - [1945] = 1945, - [1946] = 1869, - [1947] = 1868, - [1948] = 1835, - [1949] = 1887, - [1950] = 1950, - [1951] = 1951, - [1952] = 1884, - [1953] = 1953, - [1954] = 1954, - [1955] = 1885, - [1956] = 1907, - [1957] = 1957, - [1958] = 1913, - [1959] = 1843, - [1960] = 1960, - [1961] = 1858, - [1962] = 1921, + [1938] = 1855, + [1939] = 1856, + [1940] = 1836, + [1941] = 1896, + [1942] = 1866, + [1943] = 1860, + [1944] = 1855, + [1945] = 1852, + [1946] = 1851, + [1947] = 1830, + [1948] = 1813, + [1949] = 1814, + [1950] = 1815, + [1951] = 1816, + [1952] = 1952, + [1953] = 1821, + [1954] = 1801, + [1955] = 1822, + [1956] = 1823, + [1957] = 1825, + [1958] = 1958, + [1959] = 1959, + [1960] = 1326, + [1961] = 1851, + [1962] = 1962, [1963] = 1963, - [1964] = 1925, - [1965] = 1903, - [1966] = 1914, - [1967] = 1890, - [1968] = 1968, - [1969] = 1969, - [1970] = 1917, + [1964] = 1964, + [1965] = 1894, + [1966] = 1852, + [1967] = 1833, + [1968] = 1838, + [1969] = 1808, + [1970] = 1970, [1971] = 1971, - [1972] = 1864, - [1973] = 1973, - [1974] = 1843, - [1975] = 1813, - [1976] = 1914, - [1977] = 1977, + [1972] = 1880, + [1973] = 1878, + [1974] = 695, + [1975] = 705, + [1976] = 1858, + [1977] = 1857, [1978] = 1978, [1979] = 1979, - [1980] = 1980, - [1981] = 1968, - [1982] = 1950, + [1980] = 1934, + [1981] = 1874, + [1982] = 1875, [1983] = 1983, - [1984] = 1984, + [1984] = 488, [1985] = 1985, [1986] = 1986, - [1987] = 1969, + [1987] = 1987, [1988] = 1988, [1989] = 1989, [1990] = 1990, [1991] = 1991, [1992] = 1992, [1993] = 1993, - [1994] = 1994, - [1995] = 1995, - [1996] = 1991, + [1994] = 1991, + [1995] = 1993, + [1996] = 1989, [1997] = 1997, [1998] = 1998, - [1999] = 1993, + [1999] = 1999, [2000] = 2000, [2001] = 2001, - [2002] = 2002, + [2002] = 1989, [2003] = 2003, - [2004] = 1991, - [2005] = 2005, - [2006] = 1993, - [2007] = 1994, - [2008] = 2008, - [2009] = 1994, + [2004] = 2004, + [2005] = 1992, + [2006] = 2006, + [2007] = 1991, + [2008] = 1993, + [2009] = 2009, [2010] = 2010, - [2011] = 2001, - [2012] = 1991, - [2013] = 2013, - [2014] = 1993, - [2015] = 1994, - [2016] = 2016, + [2011] = 2011, + [2012] = 1989, + [2013] = 1992, + [2014] = 2014, + [2015] = 1991, + [2016] = 1993, [2017] = 2017, - [2018] = 1993, - [2019] = 2019, - [2020] = 1993, - [2021] = 1993, - [2022] = 2022, + [2018] = 2018, + [2019] = 1991, + [2020] = 2020, + [2021] = 1991, + [2022] = 1991, [2023] = 2023, [2024] = 2024, [2025] = 2025, - [2026] = 2026, + [2026] = 2014, [2027] = 2027, [2028] = 2028, [2029] = 2029, - [2030] = 2001, + [2030] = 2030, [2031] = 2031, - [2032] = 2001, - [2033] = 2002, + [2032] = 2028, + [2033] = 2033, [2034] = 2034, [2035] = 2035, - [2036] = 2036, - [2037] = 2019, - [2038] = 2017, + [2036] = 1985, + [2037] = 2037, + [2038] = 2038, [2039] = 2039, - [2040] = 2013, + [2040] = 2040, [2041] = 2041, - [2042] = 1989, - [2043] = 2003, - [2044] = 2023, - [2045] = 1998, - [2046] = 2010, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, [2047] = 2047, - [2048] = 2001, - [2049] = 2049, - [2050] = 2008, + [2048] = 2048, + [2049] = 1992, + [2050] = 2050, [2051] = 2051, [2052] = 2052, - [2053] = 2052, - [2054] = 2054, - [2055] = 2013, - [2056] = 2056, - [2057] = 2002, - [2058] = 2025, - [2059] = 2056, + [2053] = 2053, + [2054] = 2000, + [2055] = 2055, + [2056] = 2034, + [2057] = 2052, + [2058] = 2058, + [2059] = 2059, [2060] = 2060, [2061] = 2061, [2062] = 2062, - [2063] = 2063, + [2063] = 2001, [2064] = 2064, - [2065] = 2005, - [2066] = 2034, - [2067] = 1992, + [2065] = 2048, + [2066] = 2066, + [2067] = 2067, [2068] = 2068, [2069] = 2069, [2070] = 2070, @@ -5357,113 +5389,126 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2075] = 2075, [2076] = 2076, [2077] = 2077, - [2078] = 1992, - [2079] = 1994, + [2078] = 2047, + [2079] = 2044, [2080] = 2080, - [2081] = 1993, - [2082] = 1991, - [2083] = 2068, - [2084] = 1990, + [2081] = 2046, + [2082] = 2041, + [2083] = 2083, + [2084] = 2045, [2085] = 2085, [2086] = 2086, [2087] = 2087, - [2088] = 2054, + [2088] = 2068, [2089] = 2089, - [2090] = 2089, - [2091] = 2091, - [2092] = 2092, - [2093] = 2041, - [2094] = 2094, - [2095] = 2001, - [2096] = 2075, - [2097] = 2097, - [2098] = 2039, + [2090] = 2090, + [2091] = 1985, + [2092] = 2064, + [2093] = 2093, + [2094] = 2089, + [2095] = 1989, + [2096] = 2096, + [2097] = 2087, + [2098] = 2098, [2099] = 2099, - [2100] = 2017, - [2101] = 2101, + [2100] = 2100, + [2101] = 2086, [2102] = 2102, - [2103] = 2019, + [2103] = 2103, [2104] = 2104, - [2105] = 2087, - [2106] = 2062, - [2107] = 2063, - [2108] = 2064, + [2105] = 2105, + [2106] = 2106, + [2107] = 2042, + [2108] = 2108, [2109] = 2109, - [2110] = 2036, - [2111] = 2086, - [2112] = 2085, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 1990, + [2110] = 2110, + [2111] = 2006, + [2112] = 2112, + [2113] = 2035, + [2114] = 2034, + [2115] = 2040, + [2116] = 2116, [2117] = 2117, - [2118] = 2035, - [2119] = 2119, - [2120] = 2008, + [2118] = 2118, + [2119] = 2038, + [2120] = 2120, [2121] = 2121, - [2122] = 2097, - [2123] = 2123, + [2122] = 2041, + [2123] = 2037, [2124] = 2124, - [2125] = 2125, - [2126] = 2126, + [2125] = 2028, + [2126] = 2044, [2127] = 2127, - [2128] = 2028, - [2129] = 2027, - [2130] = 2130, - [2131] = 2039, - [2132] = 2041, - [2133] = 2010, - [2134] = 2023, - [2135] = 1998, - [2136] = 2060, - [2137] = 1997, - [2138] = 2056, - [2139] = 2016, - [2140] = 2140, - [2141] = 2141, - [2142] = 1991, + [2128] = 2128, + [2129] = 2047, + [2130] = 2020, + [2131] = 2099, + [2132] = 2098, + [2133] = 2124, + [2134] = 1989, + [2135] = 2135, + [2136] = 2136, + [2137] = 2040, + [2138] = 2042, + [2139] = 2073, + [2140] = 2045, + [2141] = 2046, + [2142] = 2075, [2143] = 2143, - [2144] = 2022, + [2144] = 2052, [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2026, - [2149] = 2041, - [2150] = 2069, - [2151] = 2023, - [2152] = 2024, - [2153] = 2047, - [2154] = 2023, - [2155] = 2023, - [2156] = 2023, - [2157] = 2023, - [2158] = 2023, + [2146] = 2030, + [2147] = 1993, + [2148] = 2148, + [2149] = 2029, + [2150] = 2150, + [2151] = 1997, + [2152] = 2031, + [2153] = 2069, + [2154] = 2024, + [2155] = 2042, + [2156] = 2067, + [2157] = 2045, + [2158] = 2051, [2159] = 2159, - [2160] = 1993, - [2161] = 2080, - [2162] = 2052, - [2163] = 1994, - [2164] = 2070, - [2165] = 2101, - [2166] = 2166, - [2167] = 2071, - [2168] = 2073, - [2169] = 2169, - [2170] = 2170, - [2171] = 2171, - [2172] = 2172, - [2173] = 2173, - [2174] = 2174, - [2175] = 2175, - [2176] = 2176, - [2177] = 2177, - [2178] = 2113, - [2179] = 2102, - [2180] = 2109, - [2181] = 2076, - [2182] = 2182, - [2183] = 2102, - [2184] = 2099, + [2160] = 2045, + [2161] = 2045, + [2162] = 2045, + [2163] = 2045, + [2164] = 2045, + [2165] = 2071, + [2166] = 1991, + [2167] = 2066, + [2168] = 2035, + [2169] = 2000, + [2170] = 1992, + [2171] = 1991, + [2172] = 2148, + [2173] = 1999, + [2174] = 1993, + [2175] = 1988, + [2176] = 2112, + [2177] = 2055, + [2178] = 1992, + [2179] = 2110, + [2180] = 2018, + [2181] = 2004, + [2182] = 2010, + [2183] = 2011, + [2184] = 2023, + [2185] = 2014, + [2186] = 2025, + [2187] = 2187, + [2188] = 2070, + [2189] = 2145, + [2190] = 2127, + [2191] = 2118, + [2192] = 2059, + [2193] = 2062, + [2194] = 2077, + [2195] = 2195, + [2196] = 2118, + [2197] = 2120, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -9911,649 +9956,660 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(53); - if (lookahead == '!') ADVANCE(73); - if (lookahead == '"') ADVANCE(137); - if (lookahead == '#') ADVANCE(70); - if (lookahead == '$') ADVANCE(93); - if (lookahead == '%') ADVANCE(113); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '\'') ADVANCE(69); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(88); - if (lookahead == '+') ADVANCE(80); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(125); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(59); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(92); - if (lookahead == '=') ADVANCE(75); - if (lookahead == '>') ADVANCE(85); - if (lookahead == '?') ADVANCE(81); - if (lookahead == '@') ADVANCE(126); - if (lookahead == '[') ADVANCE(55); - if (lookahead == '\\') ADVANCE(30); - if (lookahead == ']') ADVANCE(56); - if (lookahead == '^') ADVANCE(106); - if (lookahead == 'b') ADVANCE(141); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(63); + if (eof) ADVANCE(56); + if (lookahead == '!') ADVANCE(76); + if (lookahead == '"') ADVANCE(143); + if (lookahead == '#') ADVANCE(73); + if (lookahead == '$') ADVANCE(95); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '\'') ADVANCE(72); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(90); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(102); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(115); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(62); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(94); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(87); + if (lookahead == '?') ADVANCE(83); + if (lookahead == '@') ADVANCE(129); + if (lookahead == '[') ADVANCE(58); + if (lookahead == '\\') ADVANCE(34); + if (lookahead == ']') ADVANCE(59); + if (lookahead == '^') ADVANCE(108); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(107); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(50) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(143); + lookahead == ' ') SKIP(53) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(149); END_STATE(); case 1: - if (lookahead == ' ') ADVANCE(57); + if (lookahead == ' ') ADVANCE(60); if (lookahead == '/') ADVANCE(18); - if (lookahead == ';') ADVANCE(54); + if (lookahead == ';') ADVANCE(57); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r') SKIP(1) END_STATE(); case 2: - if (lookahead == '!') ADVANCE(72); - if (lookahead == '"') ADVANCE(137); - if (lookahead == '#') ADVANCE(70); - if (lookahead == '$') ADVANCE(48); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(27); + if (lookahead == '!') ADVANCE(75); + if (lookahead == '"') ADVANCE(143); + if (lookahead == '#') ADVANCE(73); + if (lookahead == '$') ADVANCE(51); + if (lookahead == '&') ADVANCE(91); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(89); + if (lookahead == '+') ADVANCE(81); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(31); if (lookahead == '.') ADVANCE(17); if (lookahead == '/') ADVANCE(18); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(59); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(82); - if (lookahead == '=') ADVANCE(76); - if (lookahead == '>') ADVANCE(84); - if (lookahead == '?') ADVANCE(81); - if (lookahead == '[') ADVANCE(55); - if (lookahead == '\\') ADVANCE(30); - if (lookahead == ']') ADVANCE(56); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(63); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(62); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(86); + if (lookahead == '?') ADVANCE(83); + if (lookahead == '[') ADVANCE(58); + if (lookahead == '\\') ADVANCE(34); + if (lookahead == ']') ADVANCE(59); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(106); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(72); - if (lookahead == '"') ADVANCE(136); - if (lookahead == '#') ADVANCE(70); - if (lookahead == '$') ADVANCE(48); - if (lookahead == '&') ADVANCE(89); + if (lookahead == '!') ADVANCE(75); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(73); + if (lookahead == '$') ADVANCE(51); + if (lookahead == '&') ADVANCE(91); if (lookahead == '\'') ADVANCE(12); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(87); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(98); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(89); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(100); if (lookahead == '.') ADVANCE(16); if (lookahead == '/') ADVANCE(18); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(25); - if (lookahead == '<') ADVANCE(82); - if (lookahead == '[') ADVANCE(55); - if (lookahead == 'b') ADVANCE(141); - if (lookahead == 'r') ADVANCE(142); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(29); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '[') ADVANCE(58); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(148); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(72); - if (lookahead == '#') ADVANCE(70); - if (lookahead == '$') ADVANCE(48); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(27); + if (lookahead == '!') ADVANCE(75); + if (lookahead == '#') ADVANCE(73); + if (lookahead == '$') ADVANCE(51); + if (lookahead == '&') ADVANCE(91); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(89); + if (lookahead == '+') ADVANCE(81); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(31); if (lookahead == '.') ADVANCE(17); if (lookahead == '/') ADVANCE(18); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(59); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(82); - if (lookahead == '=') ADVANCE(76); - if (lookahead == '>') ADVANCE(84); - if (lookahead == '?') ADVANCE(81); - if (lookahead == '[') ADVANCE(55); - if (lookahead == ']') ADVANCE(56); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(63); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(62); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(86); + if (lookahead == '?') ADVANCE(83); + if (lookahead == '[') ADVANCE(58); + if (lookahead == ']') ADVANCE(59); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(106); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(26); - if (lookahead == '%') ADVANCE(113); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '\'') ADVANCE(68); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(88); - if (lookahead == '+') ADVANCE(80); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(125); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ':') ADVANCE(59); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(83); - if (lookahead == '=') ADVANCE(75); - if (lookahead == '>') ADVANCE(85); - if (lookahead == '?') ADVANCE(81); - if (lookahead == '[') ADVANCE(55); - if (lookahead == ']') ADVANCE(56); - if (lookahead == '^') ADVANCE(106); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(63); + if (lookahead == '!') ADVANCE(30); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '\'') ADVANCE(71); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(90); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(102); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(115); + if (lookahead == ':') ADVANCE(62); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(85); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(87); + if (lookahead == '?') ADVANCE(83); + if (lookahead == '[') ADVANCE(58); + if (lookahead == ']') ADVANCE(59); + if (lookahead == '^') ADVANCE(108); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(107); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(26); - if (lookahead == '%') ADVANCE(113); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(88); - if (lookahead == '+') ADVANCE(80); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(125); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(83); - if (lookahead == '=') ADVANCE(75); - if (lookahead == '>') ADVANCE(85); - if (lookahead == '?') ADVANCE(81); - if (lookahead == '[') ADVANCE(55); - if (lookahead == ']') ADVANCE(56); - if (lookahead == '^') ADVANCE(106); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(63); + if (lookahead == '!') ADVANCE(30); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(90); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(102); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(115); + if (lookahead == ':') ADVANCE(61); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(85); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(87); + if (lookahead == '?') ADVANCE(83); + if (lookahead == '[') ADVANCE(58); + if (lookahead == ']') ADVANCE(59); + if (lookahead == '^') ADVANCE(108); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(107); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(26); - if (lookahead == '%') ADVANCE(113); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(88); - if (lookahead == '+') ADVANCE(80); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(99); - if (lookahead == '.') ADVANCE(125); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ':') ADVANCE(59); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(92); - if (lookahead == '=') ADVANCE(75); - if (lookahead == '>') ADVANCE(85); - if (lookahead == '?') ADVANCE(81); - if (lookahead == '[') ADVANCE(55); - if (lookahead == ']') ADVANCE(56); - if (lookahead == '^') ADVANCE(106); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(63); + if (lookahead == '!') ADVANCE(30); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(90); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(101); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(115); + if (lookahead == ':') ADVANCE(62); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(94); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(87); + if (lookahead == '?') ADVANCE(83); + if (lookahead == '[') ADVANCE(58); + if (lookahead == ']') ADVANCE(59); + if (lookahead == '^') ADVANCE(108); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(107); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(136); - if (lookahead == '$') ADVANCE(93); - if (lookahead == '\'') ADVANCE(69); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '/') ADVANCE(64); - if (lookahead == '0') ADVANCE(131); - if (lookahead == '[') ADVANCE(55); - if (lookahead == ']') ADVANCE(56); - if (lookahead == '_') ADVANCE(65); - if (lookahead == 'b') ADVANCE(141); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '}') ADVANCE(63); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '$') ADVANCE(95); + if (lookahead == '\'') ADVANCE(72); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '/') ADVANCE(67); + if (lookahead == '0') ADVANCE(137); + if (lookahead == '[') ADVANCE(58); + if (lookahead == ']') ADVANCE(59); + if (lookahead == '_') ADVANCE(68); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(66); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(143); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(69); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(149); END_STATE(); case 9: - if (lookahead == '#') ADVANCE(70); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(27); + if (lookahead == '#') ADVANCE(73); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '+') ADVANCE(81); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(31); if (lookahead == '.') ADVANCE(17); if (lookahead == '/') ADVANCE(18); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(92); - if (lookahead == '=') ADVANCE(76); - if (lookahead == '>') ADVANCE(84); - if (lookahead == ']') ADVANCE(56); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(63); + if (lookahead == ':') ADVANCE(61); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(94); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(86); + if (lookahead == ']') ADVANCE(59); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(106); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); case 10: - if (lookahead == '#') ADVANCE(70); - if (lookahead == ',') ADVANCE(71); + if (lookahead == '#') ADVANCE(73); + if (lookahead == ',') ADVANCE(74); if (lookahead == '.') ADVANCE(15); if (lookahead == '/') ADVANCE(18); - if (lookahead == ':') ADVANCE(58); - if (lookahead == '<') ADVANCE(82); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '}') ADVANCE(63); + if (lookahead == ':') ADVANCE(61); + if (lookahead == '<') ADVANCE(84); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); case 11: - if (lookahead == '\'') ADVANCE(138); + if (lookahead == '\'') ADVANCE(144); END_STATE(); case 12: - if (lookahead == '\'') ADVANCE(138); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\'') ADVANCE(144); + if (lookahead == '\\') ADVANCE(35); if (lookahead != 0) ADVANCE(11); END_STATE(); case 13: - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(71); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '+') ADVANCE(81); + if (lookahead == ',') ADVANCE(74); if (lookahead == '.') ADVANCE(17); if (lookahead == '/') ADVANCE(18); - if (lookahead == ':') ADVANCE(59); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(92); - if (lookahead == '=') ADVANCE(76); - if (lookahead == '>') ADVANCE(84); - if (lookahead == '@') ADVANCE(126); - if (lookahead == ']') ADVANCE(56); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(63); + if (lookahead == ':') ADVANCE(62); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(94); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(86); + if (lookahead == '@') ADVANCE(129); + if (lookahead == ']') ADVANCE(59); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(106); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); case 14: - if (lookahead == '.') ADVANCE(91); - if (lookahead == '=') ADVANCE(97); + if (lookahead == '.') ADVANCE(93); + if (lookahead == '=') ADVANCE(99); END_STATE(); case 15: - if (lookahead == '.') ADVANCE(94); + if (lookahead == '.') ADVANCE(96); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(95); + if (lookahead == '.') ADVANCE(97); END_STATE(); case 17: if (lookahead == '.') ADVANCE(14); END_STATE(); case 18: - if (lookahead == '/') ADVANCE(140); + if (lookahead == '/') ADVANCE(146); END_STATE(); case 19: - if (lookahead == '1') ADVANCE(21); - if (lookahead == '3') ADVANCE(20); - if (lookahead == '6') ADVANCE(23); - if (lookahead == '8') ADVANCE(127); - if (lookahead == 's') ADVANCE(29); + if (lookahead == '1') ADVANCE(23); + if (lookahead == '2') ADVANCE(26); + if (lookahead == '3') ADVANCE(22); + if (lookahead == '6') ADVANCE(25); + if (lookahead == '8') ADVANCE(130); + if (lookahead == 's') ADVANCE(33); END_STATE(); case 20: - if (lookahead == '2') ADVANCE(127); + if (lookahead == '2') ADVANCE(26); END_STATE(); case 21: - if (lookahead == '2') ADVANCE(24); - if (lookahead == '6') ADVANCE(127); + if (lookahead == '2') ADVANCE(26); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(138); END_STATE(); case 22: - if (lookahead == '3') ADVANCE(20); - if (lookahead == '6') ADVANCE(23); + if (lookahead == '2') ADVANCE(130); END_STATE(); case 23: - if (lookahead == '4') ADVANCE(127); + if (lookahead == '2') ADVANCE(28); + if (lookahead == '6') ADVANCE(130); END_STATE(); case 24: - if (lookahead == '8') ADVANCE(127); + if (lookahead == '3') ADVANCE(22); + if (lookahead == '6') ADVANCE(25); END_STATE(); case 25: - if (lookahead == ':') ADVANCE(86); + if (lookahead == '4') ADVANCE(130); END_STATE(); case 26: - if (lookahead == '=') ADVANCE(108); + if (lookahead == '5') ADVANCE(27); END_STATE(); case 27: - if (lookahead == '>') ADVANCE(78); + if (lookahead == '6') ADVANCE(130); END_STATE(); case 28: - if (lookahead == 'e') ADVANCE(127); + if (lookahead == '8') ADVANCE(130); END_STATE(); case 29: - if (lookahead == 'i') ADVANCE(32); + if (lookahead == ':') ADVANCE(88); END_STATE(); case 30: - if (lookahead == 'u') ADVANCE(33); - if (lookahead == 'x') ADVANCE(44); - if (lookahead != 0) ADVANCE(139); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 31: - if (lookahead == 'u') ADVANCE(34); - if (lookahead == 'x') ADVANCE(45); - if (lookahead != 0) ADVANCE(11); + if (lookahead == '>') ADVANCE(80); END_STATE(); case 32: - if (lookahead == 'z') ADVANCE(28); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 33: - if (lookahead == '{') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + if (lookahead == 'i') ADVANCE(36); END_STATE(); case 34: - if (lookahead == '{') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + if (lookahead == 'u') ADVANCE(37); + if (lookahead == 'x') ADVANCE(47); + if (lookahead != 0) ADVANCE(145); END_STATE(); case 35: - if (lookahead == '}') ADVANCE(11); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(35); + if (lookahead == 'u') ADVANCE(38); + if (lookahead == 'x') ADVANCE(48); + if (lookahead != 0) ADVANCE(11); END_STATE(); case 36: - if (lookahead == '}') ADVANCE(139); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); + if (lookahead == 'z') ADVANCE(32); END_STATE(); case 37: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(132); + if (lookahead == '{') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 38: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(133); + if (lookahead == '{') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 39: + if (lookahead == '}') ADVANCE(11); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(11); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); END_STATE(); case 40: + if (lookahead == '}') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(139); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(11); END_STATE(); case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(35); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); END_STATE(); case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(145); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); END_STATE(); case 46: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); END_STATE(); case 47: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 48: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 49: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); END_STATE(); case 50: - if (eof) ADVANCE(53); - if (lookahead == '!') ADVANCE(73); - if (lookahead == '"') ADVANCE(136); - if (lookahead == '#') ADVANCE(70); - if (lookahead == '$') ADVANCE(93); - if (lookahead == '%') ADVANCE(113); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '\'') ADVANCE(69); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(88); - if (lookahead == '+') ADVANCE(80); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(125); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(59); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(92); - if (lookahead == '=') ADVANCE(75); - if (lookahead == '>') ADVANCE(85); - if (lookahead == '?') ADVANCE(81); - if (lookahead == '@') ADVANCE(126); - if (lookahead == '[') ADVANCE(55); - if (lookahead == ']') ADVANCE(56); - if (lookahead == '^') ADVANCE(106); - if (lookahead == 'b') ADVANCE(141); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); + END_STATE(); + case 51: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(150); + END_STATE(); + case 52: + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + END_STATE(); + case 53: + if (eof) ADVANCE(56); + if (lookahead == '!') ADVANCE(76); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(73); + if (lookahead == '$') ADVANCE(95); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '\'') ADVANCE(72); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(90); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(102); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(115); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(62); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(94); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(87); + if (lookahead == '?') ADVANCE(83); + if (lookahead == '@') ADVANCE(129); + if (lookahead == '[') ADVANCE(58); + if (lookahead == ']') ADVANCE(59); + if (lookahead == '^') ADVANCE(108); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(107); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(50) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + lookahead == ' ') SKIP(53) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); - case 51: - if (eof) ADVANCE(53); - if (lookahead == '!') ADVANCE(73); - if (lookahead == '"') ADVANCE(136); - if (lookahead == '#') ADVANCE(70); - if (lookahead == '$') ADVANCE(48); - if (lookahead == '%') ADVANCE(113); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '\'') ADVANCE(69); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(88); - if (lookahead == '+') ADVANCE(80); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(99); - if (lookahead == '.') ADVANCE(125); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(59); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(83); - if (lookahead == '=') ADVANCE(75); - if (lookahead == '>') ADVANCE(85); - if (lookahead == '?') ADVANCE(81); - if (lookahead == '[') ADVANCE(55); - if (lookahead == ']') ADVANCE(56); - if (lookahead == '^') ADVANCE(106); - if (lookahead == 'b') ADVANCE(141); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(63); + case 54: + if (eof) ADVANCE(56); + if (lookahead == '!') ADVANCE(76); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(73); + if (lookahead == '$') ADVANCE(51); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '\'') ADVANCE(72); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(90); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(101); + if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(115); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(62); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(85); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(87); + if (lookahead == '?') ADVANCE(83); + if (lookahead == '[') ADVANCE(58); + if (lookahead == ']') ADVANCE(59); + if (lookahead == '^') ADVANCE(108); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(107); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(51) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + lookahead == ' ') SKIP(54) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); - case 52: - if (eof) ADVANCE(53); - if (lookahead == '!') ADVANCE(72); - if (lookahead == '"') ADVANCE(136); - if (lookahead == '#') ADVANCE(70); - if (lookahead == '$') ADVANCE(48); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '\'') ADVANCE(69); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(101); + case 55: + if (eof) ADVANCE(56); + if (lookahead == '!') ADVANCE(75); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '#') ADVANCE(73); + if (lookahead == '$') ADVANCE(51); + if (lookahead == '&') ADVANCE(91); + if (lookahead == '\'') ADVANCE(72); + if (lookahead == '(') ADVANCE(63); + if (lookahead == ')') ADVANCE(64); + if (lookahead == '*') ADVANCE(89); + if (lookahead == '+') ADVANCE(81); + if (lookahead == ',') ADVANCE(74); + if (lookahead == '-') ADVANCE(103); if (lookahead == '.') ADVANCE(15); if (lookahead == '/') ADVANCE(18); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(25); - if (lookahead == ';') ADVANCE(54); - if (lookahead == '<') ADVANCE(82); - if (lookahead == '=') ADVANCE(74); - if (lookahead == '>') ADVANCE(84); - if (lookahead == '[') ADVANCE(55); - if (lookahead == ']') ADVANCE(56); - if (lookahead == 'b') ADVANCE(141); - if (lookahead == 'r') ADVANCE(142); - if (lookahead == '{') ADVANCE(62); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(63); + if (lookahead == '0') ADVANCE(137); + if (lookahead == ':') ADVANCE(29); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '=') ADVANCE(77); + if (lookahead == '>') ADVANCE(86); + if (lookahead == '[') ADVANCE(58); + if (lookahead == ']') ADVANCE(59); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'r') ADVANCE(148); + if (lookahead == '{') ADVANCE(65); + if (lookahead == '|') ADVANCE(106); + if (lookahead == '}') ADVANCE(66); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(52) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(143); + lookahead == ' ') SKIP(55) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); END_STATE(); - case 53: + case 56: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 54: + case 57: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 55: + case 58: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 56: + case 59: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 57: + case 60: ACCEPT_TOKEN(anon_sym_); - if (lookahead == ' ') ADVANCE(57); + if (lookahead == ' ') ADVANCE(60); END_STATE(); - case 58: + case 61: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 59: + case 62: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(86); + if (lookahead == ':') ADVANCE(88); END_STATE(); - case 60: + case 63: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 61: + case 64: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 62: + case 65: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 63: + case 66: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 64: + case 67: ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '/') ADVANCE(67); + if (lookahead == '/') ADVANCE(70); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10563,11 +10619,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(66); + lookahead == '~') ADVANCE(69); END_STATE(); - case 65: + case 68: ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '_') ADVANCE(65); + if (lookahead == '_') ADVANCE(68); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10576,10 +10632,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (':' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(66); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(143); + lookahead == '~') ADVANCE(69); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(149); END_STATE(); - case 66: + case 69: ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || @@ -10590,9 +10646,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(66); + lookahead == '~') ADVANCE(69); END_STATE(); - case 67: + case 70: ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || @@ -10603,339 +10659,382 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(67); + lookahead == '~') ADVANCE(70); if (lookahead != 0 && - lookahead != '\n') ADVANCE(140); + lookahead != '\n') ADVANCE(146); END_STATE(); - case 68: + case 71: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 69: + case 72: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(138); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\'') ADVANCE(144); + if (lookahead == '\\') ADVANCE(35); if (lookahead != 0) ADVANCE(11); END_STATE(); - case 70: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 71: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 72: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(108); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(107); - if (lookahead == '>') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(140); - if (lookahead == '=') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(109); + if (lookahead == '>') ADVANCE(127); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(127); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(111); - if (lookahead == '=') ADVANCE(109); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(110); - if (lookahead == '>') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(113); + if (lookahead == '=') ADVANCE(111); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(112); + if (lookahead == '>') ADVANCE(114); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '=') ADVANCE(119); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 96: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(91); - if (lookahead == '=') ADVANCE(97); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(93); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(93); + if (lookahead == '=') ADVANCE(99); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 100: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(115); - if (lookahead == '>') ADVANCE(78); END_STATE(); case 101: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(78); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(80); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(80); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(120); - if (lookahead == '|') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(123); + if (lookahead == '|') ADVANCE(105); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(146); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(96); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 127: - ACCEPT_TOKEN(sym_integer_literal); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 128: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(98); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 130: + ACCEPT_TOKEN(sym_integer_literal); + END_STATE(); + case 131: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '2') ADVANCE(141); + if (lookahead == 'b') ADVANCE(132); + if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'u') ADVANCE(19); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); + END_STATE(); + case 132: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '2') ADVANCE(135); - if (lookahead == 'f') ADVANCE(129); + if (lookahead == 'b') ADVANCE(132); + if (lookahead == 'f') ADVANCE(133); if (lookahead == 'i') ADVANCE(19); if (lookahead == 'u') ADVANCE(19); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); END_STATE(); - case 129: + case 133: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '3') ADVANCE(128); - if (lookahead == '6') ADVANCE(130); - if (lookahead == 'f') ADVANCE(129); + if (lookahead == '3') ADVANCE(131); + if (lookahead == '6') ADVANCE(134); + if (lookahead == 'b') ADVANCE(132); + if (lookahead == 'f') ADVANCE(133); if (lookahead == 'i') ADVANCE(19); if (lookahead == 'u') ADVANCE(19); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); END_STATE(); - case 130: + case 134: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '4') ADVANCE(135); - if (lookahead == 'f') ADVANCE(129); + if (lookahead == '4') ADVANCE(141); + if (lookahead == 'b') ADVANCE(132); + if (lookahead == 'f') ADVANCE(133); if (lookahead == 'i') ADVANCE(19); if (lookahead == 'u') ADVANCE(19); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); END_STATE(); - case 131: + case 135: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(37); - if (lookahead == 'f') ADVANCE(22); + if (lookahead == '5') ADVANCE(136); + if (lookahead == 'b') ADVANCE(132); + if (lookahead == 'f') ADVANCE(133); if (lookahead == 'i') ADVANCE(19); - if (lookahead == 'o') ADVANCE(38); if (lookahead == 'u') ADVANCE(19); - if (lookahead == 'x') ADVANCE(47); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(134); + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); END_STATE(); - case 132: + case 136: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '6') ADVANCE(141); + if (lookahead == 'b') ADVANCE(132); + if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'u') ADVANCE(19); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); + END_STATE(); + case 137: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(22); + if (lookahead == 'b') ADVANCE(21); + if (lookahead == 'f') ADVANCE(24); + if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'o') ADVANCE(41); + if (lookahead == 'u') ADVANCE(19); + if (lookahead == 'x') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(140); + END_STATE(); + case 138: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'b') ADVANCE(20); + if (lookahead == 'f') ADVANCE(24); if (lookahead == 'i') ADVANCE(19); if (lookahead == 'u') ADVANCE(19); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(132); + lookahead == '_') ADVANCE(138); END_STATE(); - case 133: + case 139: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(22); + if (lookahead == 'b') ADVANCE(20); + if (lookahead == 'f') ADVANCE(24); if (lookahead == 'i') ADVANCE(19); if (lookahead == 'u') ADVANCE(19); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(133); + lookahead == '_') ADVANCE(139); END_STATE(); - case 134: + case 140: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(22); + if (lookahead == 'b') ADVANCE(20); + if (lookahead == 'f') ADVANCE(24); if (lookahead == 'i') ADVANCE(19); if (lookahead == 'u') ADVANCE(19); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(134); + lookahead == '_') ADVANCE(140); END_STATE(); - case 135: + case 141: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(129); + if (lookahead == 'b') ADVANCE(132); + if (lookahead == 'f') ADVANCE(133); if (lookahead == 'i') ADVANCE(19); if (lookahead == 'u') ADVANCE(19); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(141); END_STATE(); - case 136: + case 142: ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); - case 137: + case 143: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 138: + case 144: ACCEPT_TOKEN(sym_char_literal); END_STATE(); - case 139: + case 145: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 140: + case 146: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(140); + lookahead != '\n') ADVANCE(146); END_STATE(); - case 141: + case 147: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(136); + if (lookahead == '"') ADVANCE(142); if (lookahead == '\'') ADVANCE(12); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(143); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(149); END_STATE(); - case 142: + case 148: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(49); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(143); + if (lookahead == '#') ADVANCE(52); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(149); END_STATE(); - case 143: + case 149: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(143); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(149); END_STATE(); - case 144: + case 150: ACCEPT_TOKEN(sym_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(150); END_STATE(); default: return false; @@ -10978,682 +11077,719 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(20); END_STATE(); case 3: - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 'o') ADVANCE(22); - if (lookahead == 'r') ADVANCE(23); + if (lookahead == '2') ADVANCE(21); + if (lookahead == 'l') ADVANCE(22); + if (lookahead == 'o') ADVANCE(23); + if (lookahead == 'r') ADVANCE(24); END_STATE(); case 4: - if (lookahead == 'h') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'h') ADVANCE(25); + if (lookahead == 'o') ADVANCE(26); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'e') ADVANCE(27); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(27); - if (lookahead == 'n') ADVANCE(28); - if (lookahead == 'x') ADVANCE(29); + if (lookahead == 'l') ADVANCE(28); + if (lookahead == 'n') ADVANCE(29); + if (lookahead == 'x') ADVANCE(30); END_STATE(); case 7: - if (lookahead == '3') ADVANCE(30); - if (lookahead == '6') ADVANCE(31); - if (lookahead == 'a') ADVANCE(32); - if (lookahead == 'n') ADVANCE(33); - if (lookahead == 'o') ADVANCE(34); + if (lookahead == '3') ADVANCE(31); + if (lookahead == '6') ADVANCE(32); + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'n') ADVANCE(34); + if (lookahead == 'o') ADVANCE(35); END_STATE(); case 8: - if (lookahead == '1') ADVANCE(35); - if (lookahead == '3') ADVANCE(36); - if (lookahead == '6') ADVANCE(37); - if (lookahead == '8') ADVANCE(38); - if (lookahead == 'd') ADVANCE(39); - if (lookahead == 'f') ADVANCE(40); - if (lookahead == 'm') ADVANCE(41); - if (lookahead == 'n') ADVANCE(42); - if (lookahead == 's') ADVANCE(43); - if (lookahead == 't') ADVANCE(44); + if (lookahead == '1') ADVANCE(36); + if (lookahead == '2') ADVANCE(37); + if (lookahead == '3') ADVANCE(38); + if (lookahead == '6') ADVANCE(39); + if (lookahead == '8') ADVANCE(40); + if (lookahead == 'd') ADVANCE(41); + if (lookahead == 'f') ADVANCE(42); + if (lookahead == 'm') ADVANCE(43); + if (lookahead == 'n') ADVANCE(44); + if (lookahead == 's') ADVANCE(45); + if (lookahead == 't') ADVANCE(46); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(45); - if (lookahead == 'i') ADVANCE(46); + if (lookahead == 'e') ADVANCE(47); + if (lookahead == 'i') ADVANCE(48); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(47); - if (lookahead == 'e') ADVANCE(48); - if (lookahead == 'o') ADVANCE(49); - if (lookahead == 'u') ADVANCE(50); + if (lookahead == 'a') ADVANCE(49); + if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'o') ADVANCE(51); + if (lookahead == 'u') ADVANCE(52); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(51); - if (lookahead == 'r') ADVANCE(52); - if (lookahead == 'u') ADVANCE(53); + if (lookahead == 'a') ADVANCE(53); + if (lookahead == 'r') ADVANCE(54); + if (lookahead == 'u') ADVANCE(55); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(54); + if (lookahead == 'e') ADVANCE(56); END_STATE(); case 13: - if (lookahead == 'c') ADVANCE(55); - if (lookahead == 'e') ADVANCE(56); - if (lookahead == 't') ADVANCE(57); + if (lookahead == 'c') ADVANCE(57); + if (lookahead == 'e') ADVANCE(58); + if (lookahead == 't') ADVANCE(59); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(58); - if (lookahead == 't') ADVANCE(59); - if (lookahead == 'y') ADVANCE(60); + if (lookahead == 'r') ADVANCE(60); + if (lookahead == 't') ADVANCE(61); + if (lookahead == 'y') ADVANCE(62); END_STATE(); case 15: - if (lookahead == '1') ADVANCE(61); - if (lookahead == '3') ADVANCE(62); - if (lookahead == '6') ADVANCE(63); - if (lookahead == '8') ADVANCE(64); - if (lookahead == 's') ADVANCE(65); + if (lookahead == '1') ADVANCE(63); + if (lookahead == '2') ADVANCE(64); + if (lookahead == '3') ADVANCE(65); + if (lookahead == '6') ADVANCE(66); + if (lookahead == '8') ADVANCE(67); + if (lookahead == 's') ADVANCE(68); END_STATE(); case 16: - if (lookahead == 'i') ADVANCE(66); + if (lookahead == 'i') ADVANCE(69); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(67); + if (lookahead == 'h') ADVANCE(70); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(68); + if (lookahead == 'i') ADVANCE(71); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'i') ADVANCE(72); END_STATE(); case 20: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'm') ADVANCE(70); + if (lookahead == 'm') ADVANCE(73); END_STATE(); case 21: - if (lookahead == 'o') ADVANCE(71); + if (lookahead == '5') ADVANCE(74); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(72); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 23: - if (lookahead == 'e') ADVANCE(73); + if (lookahead == 'o') ADVANCE(76); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(74); + if (lookahead == 'e') ADVANCE(77); END_STATE(); case 25: - if (lookahead == 'n') ADVANCE(75); + if (lookahead == 'a') ADVANCE(78); END_STATE(); case 26: - if (lookahead == 'f') ADVANCE(76); - if (lookahead == 'p') ADVANCE(77); - if (lookahead == 'r') ADVANCE(78); + if (lookahead == 'n') ADVANCE(79); END_STATE(); case 27: - if (lookahead == 's') ADVANCE(79); + if (lookahead == 'f') ADVANCE(80); + if (lookahead == 'r') ADVANCE(81); END_STATE(); case 28: - if (lookahead == 'u') ADVANCE(80); + if (lookahead == 's') ADVANCE(82); END_STATE(); case 29: - if (lookahead == 'p') ADVANCE(81); + if (lookahead == 'u') ADVANCE(83); END_STATE(); case 30: - if (lookahead == '2') ADVANCE(82); + if (lookahead == 'p') ADVANCE(84); END_STATE(); case 31: - if (lookahead == '4') ADVANCE(83); + if (lookahead == '2') ADVANCE(85); END_STATE(); case 32: - if (lookahead == 'l') ADVANCE(84); + if (lookahead == '4') ADVANCE(86); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == 'l') ADVANCE(87); END_STATE(); case 34: - if (lookahead == 'r') ADVANCE(85); + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 35: - if (lookahead == '2') ADVANCE(86); - if (lookahead == '6') ADVANCE(87); + if (lookahead == 'r') ADVANCE(88); END_STATE(); case 36: - if (lookahead == '2') ADVANCE(88); + if (lookahead == '2') ADVANCE(89); + if (lookahead == '6') ADVANCE(90); END_STATE(); case 37: - if (lookahead == '4') ADVANCE(89); + if (lookahead == '5') ADVANCE(91); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_i8); + if (lookahead == '2') ADVANCE(92); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(90); + if (lookahead == '4') ADVANCE(93); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 41: - if (lookahead == 'p') ADVANCE(91); + if (lookahead == 'e') ADVANCE(94); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 43: - if (lookahead == 'i') ADVANCE(92); + if (lookahead == 'p') ADVANCE(95); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 45: - if (lookahead == 't') ADVANCE(94); + if (lookahead == 'i') ADVANCE(96); END_STATE(); case 46: - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 't') ADVANCE(96); + if (lookahead == 'e') ADVANCE(97); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(97); + if (lookahead == 't') ADVANCE(98); END_STATE(); case 48: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 'b') ADVANCE(99); + if (lookahead == 't') ADVANCE(100); END_STATE(); case 49: - if (lookahead == 'v') ADVANCE(99); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(100); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(101); + if (lookahead == 'd') ADVANCE(103); + if (lookahead == 'v') ADVANCE(104); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(102); + if (lookahead == 't') ADVANCE(105); END_STATE(); case 53: - if (lookahead == 'b') ADVANCE(103); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 54: - if (lookahead == 'f') ADVANCE(104); - if (lookahead == 't') ADVANCE(105); + if (lookahead == 'e') ADVANCE(107); END_STATE(); case 55: - if (lookahead == 'r') ADVANCE(106); + if (lookahead == 'b') ADVANCE(108); END_STATE(); case 56: - if (lookahead == 'l') ADVANCE(107); + if (lookahead == 'f') ADVANCE(109); + if (lookahead == 't') ADVANCE(110); END_STATE(); case 57: - if (lookahead == 'm') ADVANCE(108); - if (lookahead == 'o') ADVANCE(109); - if (lookahead == 'r') ADVANCE(110); + if (lookahead == 'r') ADVANCE(111); END_STATE(); case 58: - if (lookahead == 'a') ADVANCE(111); - if (lookahead == 'u') ADVANCE(112); + if (lookahead == 'l') ADVANCE(112); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_tt); + if (lookahead == 'm') ADVANCE(113); + if (lookahead == 'o') ADVANCE(114); + if (lookahead == 'r') ADVANCE(115); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'a') ADVANCE(116); + if (lookahead == 'u') ADVANCE(117); END_STATE(); case 61: - if (lookahead == '2') ADVANCE(113); - if (lookahead == '6') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 62: - if (lookahead == '2') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(118); END_STATE(); case 63: - if (lookahead == '4') ADVANCE(116); + if (lookahead == '2') ADVANCE(119); + if (lookahead == '6') ADVANCE(120); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == '5') ADVANCE(121); END_STATE(); case 65: - if (lookahead == 'e') ADVANCE(117); - if (lookahead == 'i') ADVANCE(118); + if (lookahead == '2') ADVANCE(122); END_STATE(); case 66: - if (lookahead == 's') ADVANCE(119); + if (lookahead == '4') ADVANCE(123); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(120); - if (lookahead == 'i') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(122); + if (lookahead == 'e') ADVANCE(124); + if (lookahead == 'i') ADVANCE(125); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_abi); + if (lookahead == 's') ADVANCE(126); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_asm); + if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'i') ADVANCE(128); END_STATE(); case 71: - if (lookahead == 'c') ADVANCE(123); + if (lookahead == 'e') ADVANCE(129); END_STATE(); case 72: - if (lookahead == 'l') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_abi); END_STATE(); case 73: - if (lookahead == 'a') ADVANCE(125); + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); case 74: - if (lookahead == 'r') ADVANCE(126); + if (lookahead == '6') ADVANCE(130); END_STATE(); case 75: - if (lookahead == 'f') ADVANCE(127); - if (lookahead == 's') ADVANCE(128); - if (lookahead == 't') ADVANCE(129); + if (lookahead == 'c') ADVANCE(131); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(130); + if (lookahead == 'l') ADVANCE(132); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_dep); + if (lookahead == 'a') ADVANCE(133); END_STATE(); case 78: - if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'r') ADVANCE(134); END_STATE(); case 79: - if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'f') ADVANCE(135); + if (lookahead == 's') ADVANCE(136); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 80: - if (lookahead == 'm') ADVANCE(133); + if (lookahead == 'a') ADVANCE(138); END_STATE(); case 81: - if (lookahead == 'r') ADVANCE(134); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'e') ADVANCE(140); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == 'm') ADVANCE(141); END_STATE(); case 84: - if (lookahead == 's') ADVANCE(135); + if (lookahead == 'r') ADVANCE(142); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 86: - if (lookahead == '8') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == 's') ADVANCE(143); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_i32); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_i64); + if (lookahead == '8') ADVANCE(144); END_STATE(); case 90: - if (lookahead == 'n') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 91: - if (lookahead == 'l') ADVANCE(138); + if (lookahead == '6') ADVANCE(145); END_STATE(); case 92: - if (lookahead == 'z') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 93: - if (lookahead == 'm') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'n') ADVANCE(146); END_STATE(); case 95: - if (lookahead == 'r') ADVANCE(141); + if (lookahead == 'l') ADVANCE(147); END_STATE(); case 96: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'z') ADVANCE(148); END_STATE(); case 97: - if (lookahead == 'c') ADVANCE(143); + if (lookahead == 'm') ADVANCE(149); END_STATE(); case 98: - if (lookahead == 'a') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 100: - ACCEPT_TOKEN(sym_mutable_specifier); + if (lookahead == 'e') ADVANCE(151); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(146); + if (lookahead == 'c') ADVANCE(152); END_STATE(); case 102: - if (lookahead == 'd') ADVANCE(147); + if (lookahead == 'a') ADVANCE(153); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_ref); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 105: - if (lookahead == 'u') ADVANCE(148); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 106: - if (lookahead == 'i') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(155); END_STATE(); case 107: - if (lookahead == 'f') ADVANCE(150); + if (lookahead == 'd') ADVANCE(156); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 109: - if (lookahead == 'r') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(153); + if (lookahead == 'u') ADVANCE(157); END_STATE(); case 111: - if (lookahead == 'i') ADVANCE(154); + if (lookahead == 'i') ADVANCE(158); END_STATE(); case 112: - if (lookahead == 'e') ADVANCE(155); + if (lookahead == 'f') ADVANCE(159); END_STATE(); case 113: - if (lookahead == '8') ADVANCE(156); + if (lookahead == 't') ADVANCE(160); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'r') ADVANCE(161); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_u32); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(162); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_u64); + if (lookahead == 'i') ADVANCE(163); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 118: - if (lookahead == 'z') ADVANCE(157); + if (lookahead == 'e') ADVANCE(165); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_vis); + if (lookahead == '8') ADVANCE(166); END_STATE(); case 120: - if (lookahead == 'r') ADVANCE(158); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 121: - if (lookahead == 'l') ADVANCE(159); + if (lookahead == '6') ADVANCE(167); END_STATE(); case 122: - if (lookahead == 'l') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 123: - if (lookahead == 'k') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_bool); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 125: - if (lookahead == 'k') ADVANCE(162); + if (lookahead == 'z') ADVANCE(168); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_char); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 127: - if (lookahead == 'i') ADVANCE(163); + if (lookahead == 'r') ADVANCE(169); END_STATE(); case 128: - if (lookahead == 't') ADVANCE(164); + if (lookahead == 'l') ADVANCE(170); END_STATE(); case 129: - if (lookahead == 'i') ADVANCE(165); - if (lookahead == 'r') ADVANCE(166); + if (lookahead == 'l') ADVANCE(171); END_STATE(); case 130: - if (lookahead == 'u') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_b256); END_STATE(); case 131: - if (lookahead == 'f') ADVANCE(168); + if (lookahead == 'k') ADVANCE(172); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'k') ADVANCE(173); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_expr); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 135: - if (lookahead == 'e') ADVANCE(169); + if (lookahead == 'i') ADVANCE(174); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_i128); + if (lookahead == 't') ADVANCE(175); END_STATE(); case 137: - if (lookahead == 't') ADVANCE(170); + if (lookahead == 'i') ADVANCE(176); + if (lookahead == 'r') ADVANCE(177); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_impl); + if (lookahead == 'u') ADVANCE(178); END_STATE(); case 139: - if (lookahead == 'e') ADVANCE(171); + if (lookahead == 'f') ADVANCE(179); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_item); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 141: - if (lookahead == 'a') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 142: - if (lookahead == 'r') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 143: - if (lookahead == 'h') ADVANCE(174); + if (lookahead == 'e') ADVANCE(180); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_meta); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_move); + ACCEPT_TOKEN(anon_sym_i256); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_path); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 147: - if (lookahead == 'i') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 148: - if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'e') ADVANCE(182); END_STATE(); case 149: - if (lookahead == 'p') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 150: - ACCEPT_TOKEN(sym_self); + if (lookahead == 'a') ADVANCE(183); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_stmt); + if (lookahead == 'r') ADVANCE(184); END_STATE(); case 152: - if (lookahead == 'a') ADVANCE(178); + if (lookahead == 'h') ADVANCE(185); END_STATE(); case 153: - if (lookahead == 'c') ADVANCE(179); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 154: - if (lookahead == 't') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_u128); + if (lookahead == 'i') ADVANCE(186); END_STATE(); case 157: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'r') ADVANCE(187); END_STATE(); case 158: - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'p') ADVANCE(188); END_STATE(); case 159: - if (lookahead == 'e') ADVANCE(183); + ACCEPT_TOKEN(sym_self); END_STATE(); case 160: - if (lookahead == 'd') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 'a') ADVANCE(189); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'c') ADVANCE(190); END_STATE(); case 163: - if (lookahead == 'g') ADVANCE(185); + if (lookahead == 't') ADVANCE(191); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 165: - if (lookahead == 'n') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 166: - if (lookahead == 'a') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 167: - if (lookahead == 'l') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_u256); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_deref); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'e') ADVANCE(193); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_ident); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == 'd') ADVANCE(195); END_STATE(); case 172: - if (lookahead == 'r') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 173: - if (lookahead == 'a') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'g') ADVANCE(196); END_STATE(); case 175: - if (lookahead == 'c') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 176: - if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'n') ADVANCE(197); END_STATE(); case 177: - if (lookahead == 't') ADVANCE(193); + if (lookahead == 'a') ADVANCE(198); END_STATE(); case 178: - if (lookahead == 'g') ADVANCE(194); + if (lookahead == 'l') ADVANCE(199); END_STATE(); case 179: - if (lookahead == 't') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_deref); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_trait); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_usize); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'r') ADVANCE(200); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == 'a') ADVANCE(201); END_STATE(); case 185: - if (lookahead == 'u') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 186: - if (lookahead == 'u') ADVANCE(197); + if (lookahead == 'c') ADVANCE(202); END_STATE(); case 187: - if (lookahead == 'c') ADVANCE(198); + if (lookahead == 'n') ADVANCE(203); END_STATE(); case 188: - if (lookahead == 't') ADVANCE(199); + if (lookahead == 't') ADVANCE(204); END_STATE(); case 189: - if (lookahead == 'y') ADVANCE(200); + if (lookahead == 'g') ADVANCE(205); END_STATE(); case 190: - if (lookahead == 'l') ADVANCE(201); + if (lookahead == 't') ADVANCE(206); END_STATE(); case 191: - if (lookahead == 'a') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_script); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 194: - if (lookahead == 'e') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 196: - if (lookahead == 'r') ADVANCE(204); + if (lookahead == 'u') ADVANCE(207); END_STATE(); case 197: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'u') ADVANCE(208); END_STATE(); case 198: - if (lookahead == 't') ADVANCE(206); + if (lookahead == 'c') ADVANCE(209); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 't') ADVANCE(210); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_library); + if (lookahead == 'y') ADVANCE(211); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_literal); + if (lookahead == 'l') ADVANCE(212); END_STATE(); case 202: - if (lookahead == 't') ADVANCE(207); + if (lookahead == 'a') ADVANCE(213); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_storage); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 204: - if (lookahead == 'a') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_script); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'e') ADVANCE(214); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_contract); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 207: - if (lookahead == 'e') ADVANCE(209); + if (lookahead == 'r') ADVANCE(215); END_STATE(); case 208: - if (lookahead == 'b') ADVANCE(210); + if (lookahead == 'e') ADVANCE(216); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_predicate); + if (lookahead == 't') ADVANCE(217); END_STATE(); case 210: - if (lookahead == 'l') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 211: - if (lookahead == 'e') ADVANCE(212); + ACCEPT_TOKEN(anon_sym_library); END_STATE(); case 212: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 213: + if (lookahead == 't') ADVANCE(218); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_storage); + END_STATE(); + case 215: + if (lookahead == 'a') ADVANCE(219); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_contract); + END_STATE(); + case 218: + if (lookahead == 'e') ADVANCE(220); + END_STATE(); + case 219: + if (lookahead == 'b') ADVANCE(221); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_predicate); + END_STATE(); + case 221: + if (lookahead == 'l') ADVANCE(222); + END_STATE(); + case 222: + if (lookahead == 'e') ADVANCE(223); + END_STATE(); + case 223: ACCEPT_TOKEN(anon_sym_configurable); END_STATE(); default: @@ -11663,184 +11799,184 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 52, .external_lex_state = 2}, - [2] = {.lex_state = 52, .external_lex_state = 2}, - [3] = {.lex_state = 52, .external_lex_state = 2}, - [4] = {.lex_state = 52, .external_lex_state = 2}, - [5] = {.lex_state = 52, .external_lex_state = 2}, - [6] = {.lex_state = 52, .external_lex_state = 2}, - [7] = {.lex_state = 52, .external_lex_state = 2}, - [8] = {.lex_state = 52, .external_lex_state = 2}, - [9] = {.lex_state = 52, .external_lex_state = 2}, - [10] = {.lex_state = 52, .external_lex_state = 2}, - [11] = {.lex_state = 52, .external_lex_state = 2}, - [12] = {.lex_state = 52, .external_lex_state = 2}, - [13] = {.lex_state = 52, .external_lex_state = 2}, - [14] = {.lex_state = 52, .external_lex_state = 2}, - [15] = {.lex_state = 51, .external_lex_state = 2}, - [16] = {.lex_state = 51, .external_lex_state = 2}, - [17] = {.lex_state = 51, .external_lex_state = 2}, - [18] = {.lex_state = 51, .external_lex_state = 2}, - [19] = {.lex_state = 51, .external_lex_state = 2}, - [20] = {.lex_state = 51, .external_lex_state = 2}, - [21] = {.lex_state = 51, .external_lex_state = 2}, - [22] = {.lex_state = 51, .external_lex_state = 2}, - [23] = {.lex_state = 51, .external_lex_state = 2}, - [24] = {.lex_state = 51, .external_lex_state = 2}, - [25] = {.lex_state = 51, .external_lex_state = 2}, - [26] = {.lex_state = 51, .external_lex_state = 2}, - [27] = {.lex_state = 51, .external_lex_state = 2}, - [28] = {.lex_state = 51, .external_lex_state = 2}, - [29] = {.lex_state = 51, .external_lex_state = 2}, - [30] = {.lex_state = 51, .external_lex_state = 2}, - [31] = {.lex_state = 52, .external_lex_state = 2}, - [32] = {.lex_state = 52, .external_lex_state = 2}, - [33] = {.lex_state = 52, .external_lex_state = 2}, - [34] = {.lex_state = 52, .external_lex_state = 2}, - [35] = {.lex_state = 52, .external_lex_state = 2}, - [36] = {.lex_state = 52, .external_lex_state = 2}, - [37] = {.lex_state = 52, .external_lex_state = 2}, - [38] = {.lex_state = 52, .external_lex_state = 2}, - [39] = {.lex_state = 52, .external_lex_state = 2}, - [40] = {.lex_state = 52, .external_lex_state = 2}, - [41] = {.lex_state = 52, .external_lex_state = 2}, - [42] = {.lex_state = 52, .external_lex_state = 2}, - [43] = {.lex_state = 52, .external_lex_state = 2}, - [44] = {.lex_state = 52, .external_lex_state = 2}, - [45] = {.lex_state = 51, .external_lex_state = 2}, - [46] = {.lex_state = 52, .external_lex_state = 2}, - [47] = {.lex_state = 51, .external_lex_state = 2}, - [48] = {.lex_state = 52, .external_lex_state = 2}, - [49] = {.lex_state = 52, .external_lex_state = 2}, - [50] = {.lex_state = 52, .external_lex_state = 2}, - [51] = {.lex_state = 51, .external_lex_state = 2}, - [52] = {.lex_state = 52, .external_lex_state = 2}, - [53] = {.lex_state = 52, .external_lex_state = 2}, - [54] = {.lex_state = 52, .external_lex_state = 2}, - [55] = {.lex_state = 52, .external_lex_state = 2}, - [56] = {.lex_state = 52, .external_lex_state = 2}, - [57] = {.lex_state = 52, .external_lex_state = 2}, - [58] = {.lex_state = 52, .external_lex_state = 2}, - [59] = {.lex_state = 51, .external_lex_state = 2}, - [60] = {.lex_state = 52, .external_lex_state = 2}, - [61] = {.lex_state = 52, .external_lex_state = 2}, - [62] = {.lex_state = 52, .external_lex_state = 2}, - [63] = {.lex_state = 52, .external_lex_state = 2}, - [64] = {.lex_state = 51, .external_lex_state = 2}, - [65] = {.lex_state = 51, .external_lex_state = 2}, - [66] = {.lex_state = 51, .external_lex_state = 2}, - [67] = {.lex_state = 51, .external_lex_state = 2}, - [68] = {.lex_state = 51, .external_lex_state = 2}, - [69] = {.lex_state = 51, .external_lex_state = 2}, - [70] = {.lex_state = 52, .external_lex_state = 2}, - [71] = {.lex_state = 51, .external_lex_state = 2}, - [72] = {.lex_state = 51, .external_lex_state = 2}, - [73] = {.lex_state = 51, .external_lex_state = 2}, - [74] = {.lex_state = 51, .external_lex_state = 2}, - [75] = {.lex_state = 51, .external_lex_state = 2}, - [76] = {.lex_state = 51, .external_lex_state = 2}, - [77] = {.lex_state = 52, .external_lex_state = 2}, - [78] = {.lex_state = 51, .external_lex_state = 2}, - [79] = {.lex_state = 52, .external_lex_state = 2}, - [80] = {.lex_state = 51, .external_lex_state = 2}, - [81] = {.lex_state = 51, .external_lex_state = 2}, - [82] = {.lex_state = 51, .external_lex_state = 2}, - [83] = {.lex_state = 52, .external_lex_state = 2}, - [84] = {.lex_state = 52, .external_lex_state = 2}, - [85] = {.lex_state = 52, .external_lex_state = 2}, - [86] = {.lex_state = 52, .external_lex_state = 2}, - [87] = {.lex_state = 52, .external_lex_state = 2}, - [88] = {.lex_state = 52, .external_lex_state = 2}, - [89] = {.lex_state = 52, .external_lex_state = 2}, - [90] = {.lex_state = 52, .external_lex_state = 2}, - [91] = {.lex_state = 52, .external_lex_state = 2}, - [92] = {.lex_state = 51, .external_lex_state = 2}, - [93] = {.lex_state = 52, .external_lex_state = 2}, - [94] = {.lex_state = 52, .external_lex_state = 2}, - [95] = {.lex_state = 52, .external_lex_state = 2}, - [96] = {.lex_state = 52, .external_lex_state = 2}, - [97] = {.lex_state = 52, .external_lex_state = 2}, - [98] = {.lex_state = 52, .external_lex_state = 2}, - [99] = {.lex_state = 52, .external_lex_state = 2}, - [100] = {.lex_state = 52, .external_lex_state = 2}, - [101] = {.lex_state = 52, .external_lex_state = 2}, - [102] = {.lex_state = 52, .external_lex_state = 2}, - [103] = {.lex_state = 52, .external_lex_state = 2}, - [104] = {.lex_state = 52, .external_lex_state = 2}, - [105] = {.lex_state = 52, .external_lex_state = 2}, - [106] = {.lex_state = 52, .external_lex_state = 2}, - [107] = {.lex_state = 52, .external_lex_state = 2}, - [108] = {.lex_state = 52, .external_lex_state = 2}, - [109] = {.lex_state = 52, .external_lex_state = 2}, - [110] = {.lex_state = 52, .external_lex_state = 2}, - [111] = {.lex_state = 52, .external_lex_state = 2}, - [112] = {.lex_state = 52, .external_lex_state = 2}, - [113] = {.lex_state = 52, .external_lex_state = 2}, - [114] = {.lex_state = 52, .external_lex_state = 2}, - [115] = {.lex_state = 52, .external_lex_state = 2}, - [116] = {.lex_state = 52, .external_lex_state = 2}, - [117] = {.lex_state = 52, .external_lex_state = 2}, - [118] = {.lex_state = 52, .external_lex_state = 2}, - [119] = {.lex_state = 52, .external_lex_state = 2}, - [120] = {.lex_state = 52, .external_lex_state = 2}, - [121] = {.lex_state = 52, .external_lex_state = 2}, - [122] = {.lex_state = 52, .external_lex_state = 2}, - [123] = {.lex_state = 52, .external_lex_state = 2}, - [124] = {.lex_state = 52, .external_lex_state = 2}, - [125] = {.lex_state = 52, .external_lex_state = 2}, - [126] = {.lex_state = 52, .external_lex_state = 2}, - [127] = {.lex_state = 52, .external_lex_state = 2}, - [128] = {.lex_state = 52, .external_lex_state = 2}, - [129] = {.lex_state = 52, .external_lex_state = 2}, - [130] = {.lex_state = 52, .external_lex_state = 2}, - [131] = {.lex_state = 52, .external_lex_state = 2}, - [132] = {.lex_state = 52, .external_lex_state = 2}, - [133] = {.lex_state = 52, .external_lex_state = 2}, - [134] = {.lex_state = 52, .external_lex_state = 2}, - [135] = {.lex_state = 52, .external_lex_state = 2}, - [136] = {.lex_state = 52, .external_lex_state = 2}, - [137] = {.lex_state = 52, .external_lex_state = 2}, - [138] = {.lex_state = 52, .external_lex_state = 2}, - [139] = {.lex_state = 52, .external_lex_state = 2}, - [140] = {.lex_state = 52, .external_lex_state = 2}, - [141] = {.lex_state = 52, .external_lex_state = 2}, - [142] = {.lex_state = 52, .external_lex_state = 2}, - [143] = {.lex_state = 52, .external_lex_state = 2}, - [144] = {.lex_state = 52, .external_lex_state = 2}, - [145] = {.lex_state = 52, .external_lex_state = 2}, - [146] = {.lex_state = 52, .external_lex_state = 2}, - [147] = {.lex_state = 52, .external_lex_state = 2}, - [148] = {.lex_state = 52, .external_lex_state = 2}, - [149] = {.lex_state = 52, .external_lex_state = 2}, - [150] = {.lex_state = 52, .external_lex_state = 2}, - [151] = {.lex_state = 52, .external_lex_state = 2}, - [152] = {.lex_state = 52, .external_lex_state = 2}, - [153] = {.lex_state = 52, .external_lex_state = 2}, - [154] = {.lex_state = 52, .external_lex_state = 2}, - [155] = {.lex_state = 52, .external_lex_state = 2}, - [156] = {.lex_state = 52, .external_lex_state = 2}, - [157] = {.lex_state = 52, .external_lex_state = 2}, - [158] = {.lex_state = 52, .external_lex_state = 2}, - [159] = {.lex_state = 52, .external_lex_state = 2}, - [160] = {.lex_state = 52, .external_lex_state = 2}, - [161] = {.lex_state = 52, .external_lex_state = 2}, - [162] = {.lex_state = 52, .external_lex_state = 2}, - [163] = {.lex_state = 52, .external_lex_state = 2}, - [164] = {.lex_state = 52, .external_lex_state = 2}, - [165] = {.lex_state = 52, .external_lex_state = 2}, - [166] = {.lex_state = 52, .external_lex_state = 2}, - [167] = {.lex_state = 52, .external_lex_state = 2}, - [168] = {.lex_state = 52, .external_lex_state = 2}, - [169] = {.lex_state = 52, .external_lex_state = 2}, - [170] = {.lex_state = 52, .external_lex_state = 2}, - [171] = {.lex_state = 52, .external_lex_state = 2}, - [172] = {.lex_state = 52, .external_lex_state = 2}, - [173] = {.lex_state = 52, .external_lex_state = 2}, - [174] = {.lex_state = 52, .external_lex_state = 2}, - [175] = {.lex_state = 52, .external_lex_state = 2}, - [176] = {.lex_state = 52, .external_lex_state = 2}, - [177] = {.lex_state = 51, .external_lex_state = 2}, - [178] = {.lex_state = 3, .external_lex_state = 2}, + [1] = {.lex_state = 55, .external_lex_state = 2}, + [2] = {.lex_state = 55, .external_lex_state = 2}, + [3] = {.lex_state = 55, .external_lex_state = 2}, + [4] = {.lex_state = 55, .external_lex_state = 2}, + [5] = {.lex_state = 55, .external_lex_state = 2}, + [6] = {.lex_state = 55, .external_lex_state = 2}, + [7] = {.lex_state = 55, .external_lex_state = 2}, + [8] = {.lex_state = 55, .external_lex_state = 2}, + [9] = {.lex_state = 55, .external_lex_state = 2}, + [10] = {.lex_state = 55, .external_lex_state = 2}, + [11] = {.lex_state = 55, .external_lex_state = 2}, + [12] = {.lex_state = 55, .external_lex_state = 2}, + [13] = {.lex_state = 55, .external_lex_state = 2}, + [14] = {.lex_state = 55, .external_lex_state = 2}, + [15] = {.lex_state = 54, .external_lex_state = 2}, + [16] = {.lex_state = 54, .external_lex_state = 2}, + [17] = {.lex_state = 54, .external_lex_state = 2}, + [18] = {.lex_state = 54, .external_lex_state = 2}, + [19] = {.lex_state = 54, .external_lex_state = 2}, + [20] = {.lex_state = 54, .external_lex_state = 2}, + [21] = {.lex_state = 54, .external_lex_state = 2}, + [22] = {.lex_state = 54, .external_lex_state = 2}, + [23] = {.lex_state = 54, .external_lex_state = 2}, + [24] = {.lex_state = 54, .external_lex_state = 2}, + [25] = {.lex_state = 54, .external_lex_state = 2}, + [26] = {.lex_state = 54, .external_lex_state = 2}, + [27] = {.lex_state = 54, .external_lex_state = 2}, + [28] = {.lex_state = 54, .external_lex_state = 2}, + [29] = {.lex_state = 54, .external_lex_state = 2}, + [30] = {.lex_state = 54, .external_lex_state = 2}, + [31] = {.lex_state = 55, .external_lex_state = 2}, + [32] = {.lex_state = 55, .external_lex_state = 2}, + [33] = {.lex_state = 55, .external_lex_state = 2}, + [34] = {.lex_state = 55, .external_lex_state = 2}, + [35] = {.lex_state = 55, .external_lex_state = 2}, + [36] = {.lex_state = 55, .external_lex_state = 2}, + [37] = {.lex_state = 55, .external_lex_state = 2}, + [38] = {.lex_state = 55, .external_lex_state = 2}, + [39] = {.lex_state = 55, .external_lex_state = 2}, + [40] = {.lex_state = 55, .external_lex_state = 2}, + [41] = {.lex_state = 55, .external_lex_state = 2}, + [42] = {.lex_state = 54, .external_lex_state = 2}, + [43] = {.lex_state = 54, .external_lex_state = 2}, + [44] = {.lex_state = 55, .external_lex_state = 2}, + [45] = {.lex_state = 55, .external_lex_state = 2}, + [46] = {.lex_state = 55, .external_lex_state = 2}, + [47] = {.lex_state = 54, .external_lex_state = 2}, + [48] = {.lex_state = 54, .external_lex_state = 2}, + [49] = {.lex_state = 55, .external_lex_state = 2}, + [50] = {.lex_state = 54, .external_lex_state = 2}, + [51] = {.lex_state = 55, .external_lex_state = 2}, + [52] = {.lex_state = 54, .external_lex_state = 2}, + [53] = {.lex_state = 55, .external_lex_state = 2}, + [54] = {.lex_state = 54, .external_lex_state = 2}, + [55] = {.lex_state = 55, .external_lex_state = 2}, + [56] = {.lex_state = 54, .external_lex_state = 2}, + [57] = {.lex_state = 55, .external_lex_state = 2}, + [58] = {.lex_state = 55, .external_lex_state = 2}, + [59] = {.lex_state = 54, .external_lex_state = 2}, + [60] = {.lex_state = 55, .external_lex_state = 2}, + [61] = {.lex_state = 54, .external_lex_state = 2}, + [62] = {.lex_state = 54, .external_lex_state = 2}, + [63] = {.lex_state = 55, .external_lex_state = 2}, + [64] = {.lex_state = 55, .external_lex_state = 2}, + [65] = {.lex_state = 55, .external_lex_state = 2}, + [66] = {.lex_state = 54, .external_lex_state = 2}, + [67] = {.lex_state = 54, .external_lex_state = 2}, + [68] = {.lex_state = 55, .external_lex_state = 2}, + [69] = {.lex_state = 55, .external_lex_state = 2}, + [70] = {.lex_state = 54, .external_lex_state = 2}, + [71] = {.lex_state = 54, .external_lex_state = 2}, + [72] = {.lex_state = 54, .external_lex_state = 2}, + [73] = {.lex_state = 55, .external_lex_state = 2}, + [74] = {.lex_state = 54, .external_lex_state = 2}, + [75] = {.lex_state = 55, .external_lex_state = 2}, + [76] = {.lex_state = 54, .external_lex_state = 2}, + [77] = {.lex_state = 54, .external_lex_state = 2}, + [78] = {.lex_state = 54, .external_lex_state = 2}, + [79] = {.lex_state = 55, .external_lex_state = 2}, + [80] = {.lex_state = 55, .external_lex_state = 2}, + [81] = {.lex_state = 54, .external_lex_state = 2}, + [82] = {.lex_state = 55, .external_lex_state = 2}, + [83] = {.lex_state = 55, .external_lex_state = 2}, + [84] = {.lex_state = 55, .external_lex_state = 2}, + [85] = {.lex_state = 55, .external_lex_state = 2}, + [86] = {.lex_state = 55, .external_lex_state = 2}, + [87] = {.lex_state = 55, .external_lex_state = 2}, + [88] = {.lex_state = 55, .external_lex_state = 2}, + [89] = {.lex_state = 55, .external_lex_state = 2}, + [90] = {.lex_state = 55, .external_lex_state = 2}, + [91] = {.lex_state = 55, .external_lex_state = 2}, + [92] = {.lex_state = 55, .external_lex_state = 2}, + [93] = {.lex_state = 55, .external_lex_state = 2}, + [94] = {.lex_state = 55, .external_lex_state = 2}, + [95] = {.lex_state = 55, .external_lex_state = 2}, + [96] = {.lex_state = 55, .external_lex_state = 2}, + [97] = {.lex_state = 55, .external_lex_state = 2}, + [98] = {.lex_state = 55, .external_lex_state = 2}, + [99] = {.lex_state = 55, .external_lex_state = 2}, + [100] = {.lex_state = 55, .external_lex_state = 2}, + [101] = {.lex_state = 55, .external_lex_state = 2}, + [102] = {.lex_state = 55, .external_lex_state = 2}, + [103] = {.lex_state = 55, .external_lex_state = 2}, + [104] = {.lex_state = 55, .external_lex_state = 2}, + [105] = {.lex_state = 55, .external_lex_state = 2}, + [106] = {.lex_state = 55, .external_lex_state = 2}, + [107] = {.lex_state = 55, .external_lex_state = 2}, + [108] = {.lex_state = 55, .external_lex_state = 2}, + [109] = {.lex_state = 55, .external_lex_state = 2}, + [110] = {.lex_state = 55, .external_lex_state = 2}, + [111] = {.lex_state = 55, .external_lex_state = 2}, + [112] = {.lex_state = 55, .external_lex_state = 2}, + [113] = {.lex_state = 55, .external_lex_state = 2}, + [114] = {.lex_state = 55, .external_lex_state = 2}, + [115] = {.lex_state = 55, .external_lex_state = 2}, + [116] = {.lex_state = 55, .external_lex_state = 2}, + [117] = {.lex_state = 55, .external_lex_state = 2}, + [118] = {.lex_state = 55, .external_lex_state = 2}, + [119] = {.lex_state = 55, .external_lex_state = 2}, + [120] = {.lex_state = 55, .external_lex_state = 2}, + [121] = {.lex_state = 55, .external_lex_state = 2}, + [122] = {.lex_state = 55, .external_lex_state = 2}, + [123] = {.lex_state = 55, .external_lex_state = 2}, + [124] = {.lex_state = 55, .external_lex_state = 2}, + [125] = {.lex_state = 55, .external_lex_state = 2}, + [126] = {.lex_state = 55, .external_lex_state = 2}, + [127] = {.lex_state = 55, .external_lex_state = 2}, + [128] = {.lex_state = 55, .external_lex_state = 2}, + [129] = {.lex_state = 55, .external_lex_state = 2}, + [130] = {.lex_state = 55, .external_lex_state = 2}, + [131] = {.lex_state = 55, .external_lex_state = 2}, + [132] = {.lex_state = 55, .external_lex_state = 2}, + [133] = {.lex_state = 55, .external_lex_state = 2}, + [134] = {.lex_state = 55, .external_lex_state = 2}, + [135] = {.lex_state = 55, .external_lex_state = 2}, + [136] = {.lex_state = 55, .external_lex_state = 2}, + [137] = {.lex_state = 55, .external_lex_state = 2}, + [138] = {.lex_state = 55, .external_lex_state = 2}, + [139] = {.lex_state = 55, .external_lex_state = 2}, + [140] = {.lex_state = 55, .external_lex_state = 2}, + [141] = {.lex_state = 55, .external_lex_state = 2}, + [142] = {.lex_state = 55, .external_lex_state = 2}, + [143] = {.lex_state = 55, .external_lex_state = 2}, + [144] = {.lex_state = 55, .external_lex_state = 2}, + [145] = {.lex_state = 55, .external_lex_state = 2}, + [146] = {.lex_state = 55, .external_lex_state = 2}, + [147] = {.lex_state = 55, .external_lex_state = 2}, + [148] = {.lex_state = 55, .external_lex_state = 2}, + [149] = {.lex_state = 55, .external_lex_state = 2}, + [150] = {.lex_state = 55, .external_lex_state = 2}, + [151] = {.lex_state = 55, .external_lex_state = 2}, + [152] = {.lex_state = 55, .external_lex_state = 2}, + [153] = {.lex_state = 55, .external_lex_state = 2}, + [154] = {.lex_state = 55, .external_lex_state = 2}, + [155] = {.lex_state = 55, .external_lex_state = 2}, + [156] = {.lex_state = 55, .external_lex_state = 2}, + [157] = {.lex_state = 55, .external_lex_state = 2}, + [158] = {.lex_state = 55, .external_lex_state = 2}, + [159] = {.lex_state = 55, .external_lex_state = 2}, + [160] = {.lex_state = 55, .external_lex_state = 2}, + [161] = {.lex_state = 55, .external_lex_state = 2}, + [162] = {.lex_state = 55, .external_lex_state = 2}, + [163] = {.lex_state = 55, .external_lex_state = 2}, + [164] = {.lex_state = 55, .external_lex_state = 2}, + [165] = {.lex_state = 55, .external_lex_state = 2}, + [166] = {.lex_state = 55, .external_lex_state = 2}, + [167] = {.lex_state = 55, .external_lex_state = 2}, + [168] = {.lex_state = 55, .external_lex_state = 2}, + [169] = {.lex_state = 55, .external_lex_state = 2}, + [170] = {.lex_state = 55, .external_lex_state = 2}, + [171] = {.lex_state = 55, .external_lex_state = 2}, + [172] = {.lex_state = 55, .external_lex_state = 2}, + [173] = {.lex_state = 55, .external_lex_state = 2}, + [174] = {.lex_state = 55, .external_lex_state = 2}, + [175] = {.lex_state = 55, .external_lex_state = 2}, + [176] = {.lex_state = 55, .external_lex_state = 2}, + [177] = {.lex_state = 55, .external_lex_state = 2}, + [178] = {.lex_state = 54, .external_lex_state = 2}, [179] = {.lex_state = 3, .external_lex_state = 2}, [180] = {.lex_state = 3, .external_lex_state = 2}, [181] = {.lex_state = 3, .external_lex_state = 2}, @@ -11855,322 +11991,322 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [190] = {.lex_state = 3, .external_lex_state = 2}, [191] = {.lex_state = 3, .external_lex_state = 2}, [192] = {.lex_state = 3, .external_lex_state = 2}, - [193] = {.lex_state = 52, .external_lex_state = 2}, - [194] = {.lex_state = 52, .external_lex_state = 2}, - [195] = {.lex_state = 52, .external_lex_state = 2}, - [196] = {.lex_state = 52, .external_lex_state = 2}, - [197] = {.lex_state = 52, .external_lex_state = 2}, - [198] = {.lex_state = 52, .external_lex_state = 2}, - [199] = {.lex_state = 52, .external_lex_state = 2}, - [200] = {.lex_state = 52, .external_lex_state = 2}, - [201] = {.lex_state = 52, .external_lex_state = 2}, - [202] = {.lex_state = 52, .external_lex_state = 2}, - [203] = {.lex_state = 52, .external_lex_state = 2}, - [204] = {.lex_state = 52, .external_lex_state = 2}, - [205] = {.lex_state = 52, .external_lex_state = 2}, - [206] = {.lex_state = 52, .external_lex_state = 2}, - [207] = {.lex_state = 52, .external_lex_state = 2}, - [208] = {.lex_state = 51, .external_lex_state = 2}, - [209] = {.lex_state = 51, .external_lex_state = 2}, - [210] = {.lex_state = 51, .external_lex_state = 2}, - [211] = {.lex_state = 51, .external_lex_state = 2}, - [212] = {.lex_state = 51, .external_lex_state = 2}, - [213] = {.lex_state = 51, .external_lex_state = 2}, - [214] = {.lex_state = 51, .external_lex_state = 2}, - [215] = {.lex_state = 51, .external_lex_state = 2}, - [216] = {.lex_state = 51, .external_lex_state = 2}, - [217] = {.lex_state = 51, .external_lex_state = 2}, - [218] = {.lex_state = 51, .external_lex_state = 2}, - [219] = {.lex_state = 51, .external_lex_state = 2}, - [220] = {.lex_state = 51, .external_lex_state = 2}, - [221] = {.lex_state = 51, .external_lex_state = 2}, - [222] = {.lex_state = 51, .external_lex_state = 2}, - [223] = {.lex_state = 51, .external_lex_state = 2}, - [224] = {.lex_state = 51, .external_lex_state = 2}, - [225] = {.lex_state = 52, .external_lex_state = 2}, - [226] = {.lex_state = 52, .external_lex_state = 2}, - [227] = {.lex_state = 52, .external_lex_state = 2}, - [228] = {.lex_state = 52, .external_lex_state = 2}, - [229] = {.lex_state = 52, .external_lex_state = 2}, - [230] = {.lex_state = 52, .external_lex_state = 2}, - [231] = {.lex_state = 52, .external_lex_state = 2}, - [232] = {.lex_state = 52, .external_lex_state = 2}, - [233] = {.lex_state = 52, .external_lex_state = 2}, - [234] = {.lex_state = 52, .external_lex_state = 2}, - [235] = {.lex_state = 52, .external_lex_state = 2}, - [236] = {.lex_state = 52, .external_lex_state = 2}, - [237] = {.lex_state = 52, .external_lex_state = 2}, - [238] = {.lex_state = 52, .external_lex_state = 2}, - [239] = {.lex_state = 52, .external_lex_state = 2}, - [240] = {.lex_state = 52, .external_lex_state = 2}, - [241] = {.lex_state = 52, .external_lex_state = 2}, - [242] = {.lex_state = 52, .external_lex_state = 2}, - [243] = {.lex_state = 52, .external_lex_state = 2}, - [244] = {.lex_state = 52, .external_lex_state = 2}, - [245] = {.lex_state = 52, .external_lex_state = 2}, - [246] = {.lex_state = 52, .external_lex_state = 2}, - [247] = {.lex_state = 52, .external_lex_state = 2}, - [248] = {.lex_state = 52, .external_lex_state = 2}, - [249] = {.lex_state = 52, .external_lex_state = 2}, - [250] = {.lex_state = 52, .external_lex_state = 2}, - [251] = {.lex_state = 52, .external_lex_state = 2}, - [252] = {.lex_state = 52, .external_lex_state = 2}, - [253] = {.lex_state = 52, .external_lex_state = 2}, - [254] = {.lex_state = 52, .external_lex_state = 2}, - [255] = {.lex_state = 52, .external_lex_state = 2}, - [256] = {.lex_state = 52, .external_lex_state = 2}, - [257] = {.lex_state = 52, .external_lex_state = 2}, - [258] = {.lex_state = 52, .external_lex_state = 2}, - [259] = {.lex_state = 52, .external_lex_state = 2}, - [260] = {.lex_state = 52, .external_lex_state = 2}, - [261] = {.lex_state = 52, .external_lex_state = 2}, - [262] = {.lex_state = 52, .external_lex_state = 2}, - [263] = {.lex_state = 52, .external_lex_state = 2}, - [264] = {.lex_state = 52, .external_lex_state = 2}, - [265] = {.lex_state = 52, .external_lex_state = 2}, - [266] = {.lex_state = 52, .external_lex_state = 2}, - [267] = {.lex_state = 52, .external_lex_state = 2}, - [268] = {.lex_state = 52, .external_lex_state = 2}, - [269] = {.lex_state = 52, .external_lex_state = 2}, - [270] = {.lex_state = 52, .external_lex_state = 2}, - [271] = {.lex_state = 52, .external_lex_state = 2}, - [272] = {.lex_state = 52, .external_lex_state = 2}, - [273] = {.lex_state = 52, .external_lex_state = 2}, - [274] = {.lex_state = 52, .external_lex_state = 2}, - [275] = {.lex_state = 52, .external_lex_state = 2}, - [276] = {.lex_state = 52, .external_lex_state = 2}, - [277] = {.lex_state = 52, .external_lex_state = 2}, - [278] = {.lex_state = 52, .external_lex_state = 2}, - [279] = {.lex_state = 52, .external_lex_state = 2}, - [280] = {.lex_state = 52, .external_lex_state = 2}, - [281] = {.lex_state = 52, .external_lex_state = 2}, - [282] = {.lex_state = 52, .external_lex_state = 2}, - [283] = {.lex_state = 52, .external_lex_state = 2}, - [284] = {.lex_state = 52, .external_lex_state = 2}, - [285] = {.lex_state = 52, .external_lex_state = 2}, - [286] = {.lex_state = 52, .external_lex_state = 2}, - [287] = {.lex_state = 52, .external_lex_state = 2}, - [288] = {.lex_state = 52, .external_lex_state = 2}, - [289] = {.lex_state = 52, .external_lex_state = 2}, - [290] = {.lex_state = 52, .external_lex_state = 2}, - [291] = {.lex_state = 52, .external_lex_state = 2}, - [292] = {.lex_state = 52, .external_lex_state = 2}, - [293] = {.lex_state = 52, .external_lex_state = 2}, - [294] = {.lex_state = 52, .external_lex_state = 2}, - [295] = {.lex_state = 52, .external_lex_state = 2}, - [296] = {.lex_state = 52, .external_lex_state = 2}, - [297] = {.lex_state = 52, .external_lex_state = 2}, - [298] = {.lex_state = 52, .external_lex_state = 2}, - [299] = {.lex_state = 52, .external_lex_state = 2}, - [300] = {.lex_state = 52, .external_lex_state = 2}, - [301] = {.lex_state = 52, .external_lex_state = 2}, - [302] = {.lex_state = 52, .external_lex_state = 2}, - [303] = {.lex_state = 52, .external_lex_state = 2}, - [304] = {.lex_state = 52, .external_lex_state = 2}, - [305] = {.lex_state = 52, .external_lex_state = 2}, - [306] = {.lex_state = 52, .external_lex_state = 2}, - [307] = {.lex_state = 52, .external_lex_state = 2}, - [308] = {.lex_state = 52, .external_lex_state = 2}, - [309] = {.lex_state = 52, .external_lex_state = 2}, - [310] = {.lex_state = 52, .external_lex_state = 2}, - [311] = {.lex_state = 52, .external_lex_state = 2}, - [312] = {.lex_state = 52, .external_lex_state = 2}, - [313] = {.lex_state = 52, .external_lex_state = 2}, - [314] = {.lex_state = 52, .external_lex_state = 2}, - [315] = {.lex_state = 52, .external_lex_state = 2}, - [316] = {.lex_state = 52, .external_lex_state = 2}, - [317] = {.lex_state = 52, .external_lex_state = 2}, - [318] = {.lex_state = 52, .external_lex_state = 2}, - [319] = {.lex_state = 52, .external_lex_state = 2}, - [320] = {.lex_state = 52, .external_lex_state = 2}, - [321] = {.lex_state = 52, .external_lex_state = 2}, - [322] = {.lex_state = 52, .external_lex_state = 2}, - [323] = {.lex_state = 52, .external_lex_state = 2}, - [324] = {.lex_state = 52, .external_lex_state = 2}, - [325] = {.lex_state = 52, .external_lex_state = 2}, - [326] = {.lex_state = 52, .external_lex_state = 2}, - [327] = {.lex_state = 52, .external_lex_state = 2}, - [328] = {.lex_state = 52, .external_lex_state = 2}, - [329] = {.lex_state = 52, .external_lex_state = 2}, - [330] = {.lex_state = 52, .external_lex_state = 2}, - [331] = {.lex_state = 52, .external_lex_state = 2}, - [332] = {.lex_state = 52, .external_lex_state = 2}, - [333] = {.lex_state = 52, .external_lex_state = 2}, - [334] = {.lex_state = 52, .external_lex_state = 2}, - [335] = {.lex_state = 52, .external_lex_state = 2}, - [336] = {.lex_state = 52, .external_lex_state = 2}, - [337] = {.lex_state = 52, .external_lex_state = 2}, - [338] = {.lex_state = 52, .external_lex_state = 2}, - [339] = {.lex_state = 52, .external_lex_state = 2}, - [340] = {.lex_state = 52, .external_lex_state = 2}, - [341] = {.lex_state = 52, .external_lex_state = 2}, - [342] = {.lex_state = 52, .external_lex_state = 2}, - [343] = {.lex_state = 52, .external_lex_state = 2}, - [344] = {.lex_state = 52, .external_lex_state = 2}, - [345] = {.lex_state = 52, .external_lex_state = 2}, - [346] = {.lex_state = 52, .external_lex_state = 2}, - [347] = {.lex_state = 52, .external_lex_state = 2}, - [348] = {.lex_state = 52, .external_lex_state = 2}, - [349] = {.lex_state = 52, .external_lex_state = 2}, - [350] = {.lex_state = 52, .external_lex_state = 2}, - [351] = {.lex_state = 52, .external_lex_state = 2}, - [352] = {.lex_state = 52, .external_lex_state = 2}, - [353] = {.lex_state = 52, .external_lex_state = 2}, - [354] = {.lex_state = 52, .external_lex_state = 2}, - [355] = {.lex_state = 52, .external_lex_state = 2}, - [356] = {.lex_state = 52, .external_lex_state = 2}, - [357] = {.lex_state = 52, .external_lex_state = 2}, - [358] = {.lex_state = 52, .external_lex_state = 2}, - [359] = {.lex_state = 52, .external_lex_state = 2}, - [360] = {.lex_state = 52, .external_lex_state = 2}, - [361] = {.lex_state = 52, .external_lex_state = 2}, - [362] = {.lex_state = 52, .external_lex_state = 2}, - [363] = {.lex_state = 52, .external_lex_state = 2}, - [364] = {.lex_state = 52, .external_lex_state = 2}, - [365] = {.lex_state = 52, .external_lex_state = 2}, - [366] = {.lex_state = 52, .external_lex_state = 2}, - [367] = {.lex_state = 52, .external_lex_state = 2}, - [368] = {.lex_state = 52, .external_lex_state = 2}, - [369] = {.lex_state = 52, .external_lex_state = 2}, - [370] = {.lex_state = 52, .external_lex_state = 2}, - [371] = {.lex_state = 52, .external_lex_state = 2}, - [372] = {.lex_state = 52, .external_lex_state = 2}, - [373] = {.lex_state = 52, .external_lex_state = 2}, - [374] = {.lex_state = 52, .external_lex_state = 2}, - [375] = {.lex_state = 52, .external_lex_state = 2}, - [376] = {.lex_state = 52, .external_lex_state = 2}, - [377] = {.lex_state = 52, .external_lex_state = 2}, - [378] = {.lex_state = 52, .external_lex_state = 2}, - [379] = {.lex_state = 52, .external_lex_state = 2}, - [380] = {.lex_state = 52, .external_lex_state = 2}, - [381] = {.lex_state = 52, .external_lex_state = 2}, - [382] = {.lex_state = 52, .external_lex_state = 2}, - [383] = {.lex_state = 52, .external_lex_state = 2}, - [384] = {.lex_state = 52, .external_lex_state = 2}, - [385] = {.lex_state = 52, .external_lex_state = 2}, - [386] = {.lex_state = 52, .external_lex_state = 2}, - [387] = {.lex_state = 52, .external_lex_state = 2}, - [388] = {.lex_state = 52, .external_lex_state = 2}, - [389] = {.lex_state = 52, .external_lex_state = 2}, - [390] = {.lex_state = 52, .external_lex_state = 2}, - [391] = {.lex_state = 52, .external_lex_state = 2}, - [392] = {.lex_state = 52, .external_lex_state = 2}, - [393] = {.lex_state = 52, .external_lex_state = 2}, - [394] = {.lex_state = 52, .external_lex_state = 2}, - [395] = {.lex_state = 52, .external_lex_state = 2}, - [396] = {.lex_state = 52, .external_lex_state = 2}, - [397] = {.lex_state = 52, .external_lex_state = 2}, - [398] = {.lex_state = 52, .external_lex_state = 2}, - [399] = {.lex_state = 52, .external_lex_state = 2}, - [400] = {.lex_state = 52, .external_lex_state = 2}, - [401] = {.lex_state = 52, .external_lex_state = 2}, - [402] = {.lex_state = 52, .external_lex_state = 2}, - [403] = {.lex_state = 52, .external_lex_state = 2}, - [404] = {.lex_state = 52, .external_lex_state = 2}, - [405] = {.lex_state = 52, .external_lex_state = 2}, - [406] = {.lex_state = 52, .external_lex_state = 2}, - [407] = {.lex_state = 52, .external_lex_state = 2}, - [408] = {.lex_state = 52, .external_lex_state = 2}, - [409] = {.lex_state = 52, .external_lex_state = 2}, - [410] = {.lex_state = 52, .external_lex_state = 2}, - [411] = {.lex_state = 52, .external_lex_state = 2}, - [412] = {.lex_state = 52, .external_lex_state = 2}, - [413] = {.lex_state = 52, .external_lex_state = 2}, - [414] = {.lex_state = 52, .external_lex_state = 2}, - [415] = {.lex_state = 52, .external_lex_state = 2}, - [416] = {.lex_state = 52, .external_lex_state = 2}, - [417] = {.lex_state = 52, .external_lex_state = 2}, - [418] = {.lex_state = 52, .external_lex_state = 2}, + [193] = {.lex_state = 3, .external_lex_state = 2}, + [194] = {.lex_state = 55, .external_lex_state = 2}, + [195] = {.lex_state = 55, .external_lex_state = 2}, + [196] = {.lex_state = 55, .external_lex_state = 2}, + [197] = {.lex_state = 55, .external_lex_state = 2}, + [198] = {.lex_state = 55, .external_lex_state = 2}, + [199] = {.lex_state = 55, .external_lex_state = 2}, + [200] = {.lex_state = 55, .external_lex_state = 2}, + [201] = {.lex_state = 55, .external_lex_state = 2}, + [202] = {.lex_state = 55, .external_lex_state = 2}, + [203] = {.lex_state = 55, .external_lex_state = 2}, + [204] = {.lex_state = 55, .external_lex_state = 2}, + [205] = {.lex_state = 55, .external_lex_state = 2}, + [206] = {.lex_state = 55, .external_lex_state = 2}, + [207] = {.lex_state = 55, .external_lex_state = 2}, + [208] = {.lex_state = 55, .external_lex_state = 2}, + [209] = {.lex_state = 54, .external_lex_state = 2}, + [210] = {.lex_state = 54, .external_lex_state = 2}, + [211] = {.lex_state = 54, .external_lex_state = 2}, + [212] = {.lex_state = 54, .external_lex_state = 2}, + [213] = {.lex_state = 54, .external_lex_state = 2}, + [214] = {.lex_state = 54, .external_lex_state = 2}, + [215] = {.lex_state = 54, .external_lex_state = 2}, + [216] = {.lex_state = 54, .external_lex_state = 2}, + [217] = {.lex_state = 54, .external_lex_state = 2}, + [218] = {.lex_state = 54, .external_lex_state = 2}, + [219] = {.lex_state = 54, .external_lex_state = 2}, + [220] = {.lex_state = 54, .external_lex_state = 2}, + [221] = {.lex_state = 54, .external_lex_state = 2}, + [222] = {.lex_state = 54, .external_lex_state = 2}, + [223] = {.lex_state = 54, .external_lex_state = 2}, + [224] = {.lex_state = 54, .external_lex_state = 2}, + [225] = {.lex_state = 54, .external_lex_state = 2}, + [226] = {.lex_state = 55, .external_lex_state = 2}, + [227] = {.lex_state = 55, .external_lex_state = 2}, + [228] = {.lex_state = 55, .external_lex_state = 2}, + [229] = {.lex_state = 55, .external_lex_state = 2}, + [230] = {.lex_state = 55, .external_lex_state = 2}, + [231] = {.lex_state = 55, .external_lex_state = 2}, + [232] = {.lex_state = 55, .external_lex_state = 2}, + [233] = {.lex_state = 55, .external_lex_state = 2}, + [234] = {.lex_state = 55, .external_lex_state = 2}, + [235] = {.lex_state = 55, .external_lex_state = 2}, + [236] = {.lex_state = 55, .external_lex_state = 2}, + [237] = {.lex_state = 55, .external_lex_state = 2}, + [238] = {.lex_state = 55, .external_lex_state = 2}, + [239] = {.lex_state = 55, .external_lex_state = 2}, + [240] = {.lex_state = 55, .external_lex_state = 2}, + [241] = {.lex_state = 55, .external_lex_state = 2}, + [242] = {.lex_state = 55, .external_lex_state = 2}, + [243] = {.lex_state = 55, .external_lex_state = 2}, + [244] = {.lex_state = 55, .external_lex_state = 2}, + [245] = {.lex_state = 55, .external_lex_state = 2}, + [246] = {.lex_state = 55, .external_lex_state = 2}, + [247] = {.lex_state = 55, .external_lex_state = 2}, + [248] = {.lex_state = 55, .external_lex_state = 2}, + [249] = {.lex_state = 55, .external_lex_state = 2}, + [250] = {.lex_state = 55, .external_lex_state = 2}, + [251] = {.lex_state = 55, .external_lex_state = 2}, + [252] = {.lex_state = 55, .external_lex_state = 2}, + [253] = {.lex_state = 55, .external_lex_state = 2}, + [254] = {.lex_state = 55, .external_lex_state = 2}, + [255] = {.lex_state = 55, .external_lex_state = 2}, + [256] = {.lex_state = 55, .external_lex_state = 2}, + [257] = {.lex_state = 55, .external_lex_state = 2}, + [258] = {.lex_state = 55, .external_lex_state = 2}, + [259] = {.lex_state = 55, .external_lex_state = 2}, + [260] = {.lex_state = 55, .external_lex_state = 2}, + [261] = {.lex_state = 55, .external_lex_state = 2}, + [262] = {.lex_state = 55, .external_lex_state = 2}, + [263] = {.lex_state = 55, .external_lex_state = 2}, + [264] = {.lex_state = 55, .external_lex_state = 2}, + [265] = {.lex_state = 55, .external_lex_state = 2}, + [266] = {.lex_state = 55, .external_lex_state = 2}, + [267] = {.lex_state = 55, .external_lex_state = 2}, + [268] = {.lex_state = 55, .external_lex_state = 2}, + [269] = {.lex_state = 55, .external_lex_state = 2}, + [270] = {.lex_state = 55, .external_lex_state = 2}, + [271] = {.lex_state = 55, .external_lex_state = 2}, + [272] = {.lex_state = 55, .external_lex_state = 2}, + [273] = {.lex_state = 55, .external_lex_state = 2}, + [274] = {.lex_state = 55, .external_lex_state = 2}, + [275] = {.lex_state = 55, .external_lex_state = 2}, + [276] = {.lex_state = 55, .external_lex_state = 2}, + [277] = {.lex_state = 55, .external_lex_state = 2}, + [278] = {.lex_state = 55, .external_lex_state = 2}, + [279] = {.lex_state = 55, .external_lex_state = 2}, + [280] = {.lex_state = 55, .external_lex_state = 2}, + [281] = {.lex_state = 55, .external_lex_state = 2}, + [282] = {.lex_state = 55, .external_lex_state = 2}, + [283] = {.lex_state = 55, .external_lex_state = 2}, + [284] = {.lex_state = 55, .external_lex_state = 2}, + [285] = {.lex_state = 55, .external_lex_state = 2}, + [286] = {.lex_state = 55, .external_lex_state = 2}, + [287] = {.lex_state = 55, .external_lex_state = 2}, + [288] = {.lex_state = 55, .external_lex_state = 2}, + [289] = {.lex_state = 55, .external_lex_state = 2}, + [290] = {.lex_state = 55, .external_lex_state = 2}, + [291] = {.lex_state = 55, .external_lex_state = 2}, + [292] = {.lex_state = 55, .external_lex_state = 2}, + [293] = {.lex_state = 55, .external_lex_state = 2}, + [294] = {.lex_state = 55, .external_lex_state = 2}, + [295] = {.lex_state = 55, .external_lex_state = 2}, + [296] = {.lex_state = 55, .external_lex_state = 2}, + [297] = {.lex_state = 55, .external_lex_state = 2}, + [298] = {.lex_state = 55, .external_lex_state = 2}, + [299] = {.lex_state = 55, .external_lex_state = 2}, + [300] = {.lex_state = 55, .external_lex_state = 2}, + [301] = {.lex_state = 55, .external_lex_state = 2}, + [302] = {.lex_state = 55, .external_lex_state = 2}, + [303] = {.lex_state = 55, .external_lex_state = 2}, + [304] = {.lex_state = 55, .external_lex_state = 2}, + [305] = {.lex_state = 55, .external_lex_state = 2}, + [306] = {.lex_state = 55, .external_lex_state = 2}, + [307] = {.lex_state = 55, .external_lex_state = 2}, + [308] = {.lex_state = 55, .external_lex_state = 2}, + [309] = {.lex_state = 55, .external_lex_state = 2}, + [310] = {.lex_state = 55, .external_lex_state = 2}, + [311] = {.lex_state = 55, .external_lex_state = 2}, + [312] = {.lex_state = 55, .external_lex_state = 2}, + [313] = {.lex_state = 55, .external_lex_state = 2}, + [314] = {.lex_state = 55, .external_lex_state = 2}, + [315] = {.lex_state = 55, .external_lex_state = 2}, + [316] = {.lex_state = 55, .external_lex_state = 2}, + [317] = {.lex_state = 55, .external_lex_state = 2}, + [318] = {.lex_state = 55, .external_lex_state = 2}, + [319] = {.lex_state = 55, .external_lex_state = 2}, + [320] = {.lex_state = 55, .external_lex_state = 2}, + [321] = {.lex_state = 55, .external_lex_state = 2}, + [322] = {.lex_state = 55, .external_lex_state = 2}, + [323] = {.lex_state = 55, .external_lex_state = 2}, + [324] = {.lex_state = 55, .external_lex_state = 2}, + [325] = {.lex_state = 55, .external_lex_state = 2}, + [326] = {.lex_state = 55, .external_lex_state = 2}, + [327] = {.lex_state = 55, .external_lex_state = 2}, + [328] = {.lex_state = 55, .external_lex_state = 2}, + [329] = {.lex_state = 55, .external_lex_state = 2}, + [330] = {.lex_state = 55, .external_lex_state = 2}, + [331] = {.lex_state = 55, .external_lex_state = 2}, + [332] = {.lex_state = 55, .external_lex_state = 2}, + [333] = {.lex_state = 55, .external_lex_state = 2}, + [334] = {.lex_state = 55, .external_lex_state = 2}, + [335] = {.lex_state = 55, .external_lex_state = 2}, + [336] = {.lex_state = 55, .external_lex_state = 2}, + [337] = {.lex_state = 55, .external_lex_state = 2}, + [338] = {.lex_state = 55, .external_lex_state = 2}, + [339] = {.lex_state = 55, .external_lex_state = 2}, + [340] = {.lex_state = 55, .external_lex_state = 2}, + [341] = {.lex_state = 55, .external_lex_state = 2}, + [342] = {.lex_state = 55, .external_lex_state = 2}, + [343] = {.lex_state = 55, .external_lex_state = 2}, + [344] = {.lex_state = 55, .external_lex_state = 2}, + [345] = {.lex_state = 55, .external_lex_state = 2}, + [346] = {.lex_state = 55, .external_lex_state = 2}, + [347] = {.lex_state = 55, .external_lex_state = 2}, + [348] = {.lex_state = 55, .external_lex_state = 2}, + [349] = {.lex_state = 55, .external_lex_state = 2}, + [350] = {.lex_state = 55, .external_lex_state = 2}, + [351] = {.lex_state = 55, .external_lex_state = 2}, + [352] = {.lex_state = 55, .external_lex_state = 2}, + [353] = {.lex_state = 55, .external_lex_state = 2}, + [354] = {.lex_state = 55, .external_lex_state = 2}, + [355] = {.lex_state = 55, .external_lex_state = 2}, + [356] = {.lex_state = 55, .external_lex_state = 2}, + [357] = {.lex_state = 55, .external_lex_state = 2}, + [358] = {.lex_state = 55, .external_lex_state = 2}, + [359] = {.lex_state = 55, .external_lex_state = 2}, + [360] = {.lex_state = 55, .external_lex_state = 2}, + [361] = {.lex_state = 55, .external_lex_state = 2}, + [362] = {.lex_state = 55, .external_lex_state = 2}, + [363] = {.lex_state = 55, .external_lex_state = 2}, + [364] = {.lex_state = 55, .external_lex_state = 2}, + [365] = {.lex_state = 55, .external_lex_state = 2}, + [366] = {.lex_state = 55, .external_lex_state = 2}, + [367] = {.lex_state = 55, .external_lex_state = 2}, + [368] = {.lex_state = 55, .external_lex_state = 2}, + [369] = {.lex_state = 55, .external_lex_state = 2}, + [370] = {.lex_state = 55, .external_lex_state = 2}, + [371] = {.lex_state = 55, .external_lex_state = 2}, + [372] = {.lex_state = 55, .external_lex_state = 2}, + [373] = {.lex_state = 55, .external_lex_state = 2}, + [374] = {.lex_state = 55, .external_lex_state = 2}, + [375] = {.lex_state = 55, .external_lex_state = 2}, + [376] = {.lex_state = 55, .external_lex_state = 2}, + [377] = {.lex_state = 55, .external_lex_state = 2}, + [378] = {.lex_state = 55, .external_lex_state = 2}, + [379] = {.lex_state = 55, .external_lex_state = 2}, + [380] = {.lex_state = 55, .external_lex_state = 2}, + [381] = {.lex_state = 55, .external_lex_state = 2}, + [382] = {.lex_state = 55, .external_lex_state = 2}, + [383] = {.lex_state = 55, .external_lex_state = 2}, + [384] = {.lex_state = 55, .external_lex_state = 2}, + [385] = {.lex_state = 55, .external_lex_state = 2}, + [386] = {.lex_state = 55, .external_lex_state = 2}, + [387] = {.lex_state = 55, .external_lex_state = 2}, + [388] = {.lex_state = 55, .external_lex_state = 2}, + [389] = {.lex_state = 55, .external_lex_state = 2}, + [390] = {.lex_state = 55, .external_lex_state = 2}, + [391] = {.lex_state = 55, .external_lex_state = 2}, + [392] = {.lex_state = 55, .external_lex_state = 2}, + [393] = {.lex_state = 55, .external_lex_state = 2}, + [394] = {.lex_state = 55, .external_lex_state = 2}, + [395] = {.lex_state = 55, .external_lex_state = 2}, + [396] = {.lex_state = 55, .external_lex_state = 2}, + [397] = {.lex_state = 55, .external_lex_state = 2}, + [398] = {.lex_state = 55, .external_lex_state = 2}, + [399] = {.lex_state = 55, .external_lex_state = 2}, + [400] = {.lex_state = 55, .external_lex_state = 2}, + [401] = {.lex_state = 55, .external_lex_state = 2}, + [402] = {.lex_state = 55, .external_lex_state = 2}, + [403] = {.lex_state = 55, .external_lex_state = 2}, + [404] = {.lex_state = 55, .external_lex_state = 2}, + [405] = {.lex_state = 55, .external_lex_state = 2}, + [406] = {.lex_state = 55, .external_lex_state = 2}, + [407] = {.lex_state = 55, .external_lex_state = 2}, + [408] = {.lex_state = 55, .external_lex_state = 2}, + [409] = {.lex_state = 55, .external_lex_state = 2}, + [410] = {.lex_state = 55, .external_lex_state = 2}, + [411] = {.lex_state = 55, .external_lex_state = 2}, + [412] = {.lex_state = 8, .external_lex_state = 2}, + [413] = {.lex_state = 55, .external_lex_state = 2}, + [414] = {.lex_state = 55, .external_lex_state = 2}, + [415] = {.lex_state = 55, .external_lex_state = 2}, + [416] = {.lex_state = 8, .external_lex_state = 2}, + [417] = {.lex_state = 8, .external_lex_state = 2}, + [418] = {.lex_state = 8, .external_lex_state = 2}, [419] = {.lex_state = 8, .external_lex_state = 2}, - [420] = {.lex_state = 52, .external_lex_state = 2}, - [421] = {.lex_state = 52, .external_lex_state = 2}, - [422] = {.lex_state = 52, .external_lex_state = 2}, - [423] = {.lex_state = 52, .external_lex_state = 2}, - [424] = {.lex_state = 52, .external_lex_state = 2}, - [425] = {.lex_state = 52, .external_lex_state = 2}, - [426] = {.lex_state = 52, .external_lex_state = 2}, - [427] = {.lex_state = 52, .external_lex_state = 2}, - [428] = {.lex_state = 8, .external_lex_state = 2}, - [429] = {.lex_state = 8, .external_lex_state = 2}, - [430] = {.lex_state = 52, .external_lex_state = 2}, + [420] = {.lex_state = 8, .external_lex_state = 2}, + [421] = {.lex_state = 8, .external_lex_state = 2}, + [422] = {.lex_state = 55, .external_lex_state = 2}, + [423] = {.lex_state = 55, .external_lex_state = 2}, + [424] = {.lex_state = 8, .external_lex_state = 2}, + [425] = {.lex_state = 55, .external_lex_state = 2}, + [426] = {.lex_state = 8, .external_lex_state = 2}, + [427] = {.lex_state = 55, .external_lex_state = 2}, + [428] = {.lex_state = 55, .external_lex_state = 2}, + [429] = {.lex_state = 55, .external_lex_state = 2}, + [430] = {.lex_state = 8, .external_lex_state = 2}, [431] = {.lex_state = 8, .external_lex_state = 2}, [432] = {.lex_state = 8, .external_lex_state = 2}, [433] = {.lex_state = 8, .external_lex_state = 2}, - [434] = {.lex_state = 52, .external_lex_state = 2}, - [435] = {.lex_state = 8, .external_lex_state = 2}, - [436] = {.lex_state = 52, .external_lex_state = 2}, - [437] = {.lex_state = 52, .external_lex_state = 2}, - [438] = {.lex_state = 8, .external_lex_state = 2}, - [439] = {.lex_state = 52, .external_lex_state = 2}, - [440] = {.lex_state = 8, .external_lex_state = 2}, - [441] = {.lex_state = 8, .external_lex_state = 2}, - [442] = {.lex_state = 8, .external_lex_state = 2}, - [443] = {.lex_state = 52, .external_lex_state = 2}, - [444] = {.lex_state = 8, .external_lex_state = 2}, - [445] = {.lex_state = 52, .external_lex_state = 2}, - [446] = {.lex_state = 8, .external_lex_state = 2}, - [447] = {.lex_state = 52, .external_lex_state = 2}, - [448] = {.lex_state = 52, .external_lex_state = 2}, - [449] = {.lex_state = 52, .external_lex_state = 2}, - [450] = {.lex_state = 52, .external_lex_state = 2}, - [451] = {.lex_state = 52, .external_lex_state = 2}, - [452] = {.lex_state = 52, .external_lex_state = 2}, - [453] = {.lex_state = 52, .external_lex_state = 2}, - [454] = {.lex_state = 52, .external_lex_state = 2}, - [455] = {.lex_state = 52, .external_lex_state = 2}, - [456] = {.lex_state = 52, .external_lex_state = 2}, - [457] = {.lex_state = 52, .external_lex_state = 2}, - [458] = {.lex_state = 52, .external_lex_state = 2}, - [459] = {.lex_state = 52, .external_lex_state = 2}, - [460] = {.lex_state = 52, .external_lex_state = 2}, - [461] = {.lex_state = 52, .external_lex_state = 2}, - [462] = {.lex_state = 52, .external_lex_state = 2}, - [463] = {.lex_state = 52, .external_lex_state = 2}, - [464] = {.lex_state = 52, .external_lex_state = 2}, - [465] = {.lex_state = 52, .external_lex_state = 2}, - [466] = {.lex_state = 52, .external_lex_state = 2}, - [467] = {.lex_state = 52, .external_lex_state = 2}, - [468] = {.lex_state = 52, .external_lex_state = 2}, - [469] = {.lex_state = 52, .external_lex_state = 2}, - [470] = {.lex_state = 52, .external_lex_state = 2}, - [471] = {.lex_state = 52, .external_lex_state = 2}, - [472] = {.lex_state = 52, .external_lex_state = 2}, - [473] = {.lex_state = 52, .external_lex_state = 2}, - [474] = {.lex_state = 52, .external_lex_state = 2}, - [475] = {.lex_state = 52, .external_lex_state = 2}, - [476] = {.lex_state = 52, .external_lex_state = 2}, - [477] = {.lex_state = 52, .external_lex_state = 2}, - [478] = {.lex_state = 52, .external_lex_state = 2}, - [479] = {.lex_state = 52, .external_lex_state = 2}, - [480] = {.lex_state = 52, .external_lex_state = 2}, - [481] = {.lex_state = 52, .external_lex_state = 2}, - [482] = {.lex_state = 52, .external_lex_state = 2}, - [483] = {.lex_state = 52, .external_lex_state = 2}, - [484] = {.lex_state = 52, .external_lex_state = 2}, - [485] = {.lex_state = 52, .external_lex_state = 2}, + [434] = {.lex_state = 55, .external_lex_state = 2}, + [435] = {.lex_state = 55, .external_lex_state = 2}, + [436] = {.lex_state = 55, .external_lex_state = 2}, + [437] = {.lex_state = 55, .external_lex_state = 2}, + [438] = {.lex_state = 55, .external_lex_state = 2}, + [439] = {.lex_state = 55, .external_lex_state = 2}, + [440] = {.lex_state = 55, .external_lex_state = 2}, + [441] = {.lex_state = 55, .external_lex_state = 2}, + [442] = {.lex_state = 55, .external_lex_state = 2}, + [443] = {.lex_state = 55, .external_lex_state = 2}, + [444] = {.lex_state = 55, .external_lex_state = 2}, + [445] = {.lex_state = 55, .external_lex_state = 2}, + [446] = {.lex_state = 55, .external_lex_state = 2}, + [447] = {.lex_state = 55, .external_lex_state = 2}, + [448] = {.lex_state = 55, .external_lex_state = 2}, + [449] = {.lex_state = 55, .external_lex_state = 2}, + [450] = {.lex_state = 55, .external_lex_state = 2}, + [451] = {.lex_state = 55, .external_lex_state = 2}, + [452] = {.lex_state = 55, .external_lex_state = 2}, + [453] = {.lex_state = 55, .external_lex_state = 2}, + [454] = {.lex_state = 55, .external_lex_state = 2}, + [455] = {.lex_state = 55, .external_lex_state = 2}, + [456] = {.lex_state = 55, .external_lex_state = 2}, + [457] = {.lex_state = 55, .external_lex_state = 2}, + [458] = {.lex_state = 55, .external_lex_state = 2}, + [459] = {.lex_state = 55, .external_lex_state = 2}, + [460] = {.lex_state = 55, .external_lex_state = 2}, + [461] = {.lex_state = 55, .external_lex_state = 2}, + [462] = {.lex_state = 55, .external_lex_state = 2}, + [463] = {.lex_state = 55, .external_lex_state = 2}, + [464] = {.lex_state = 55, .external_lex_state = 2}, + [465] = {.lex_state = 55, .external_lex_state = 2}, + [466] = {.lex_state = 55, .external_lex_state = 2}, + [467] = {.lex_state = 55, .external_lex_state = 2}, + [468] = {.lex_state = 55, .external_lex_state = 2}, + [469] = {.lex_state = 55, .external_lex_state = 2}, + [470] = {.lex_state = 55, .external_lex_state = 2}, + [471] = {.lex_state = 55, .external_lex_state = 2}, + [472] = {.lex_state = 55, .external_lex_state = 2}, + [473] = {.lex_state = 55, .external_lex_state = 2}, + [474] = {.lex_state = 55, .external_lex_state = 2}, + [475] = {.lex_state = 55, .external_lex_state = 2}, + [476] = {.lex_state = 55, .external_lex_state = 2}, + [477] = {.lex_state = 55, .external_lex_state = 2}, + [478] = {.lex_state = 55, .external_lex_state = 2}, + [479] = {.lex_state = 8, .external_lex_state = 2}, + [480] = {.lex_state = 8, .external_lex_state = 2}, + [481] = {.lex_state = 8, .external_lex_state = 2}, + [482] = {.lex_state = 8, .external_lex_state = 2}, + [483] = {.lex_state = 8, .external_lex_state = 2}, + [484] = {.lex_state = 55, .external_lex_state = 2}, + [485] = {.lex_state = 8, .external_lex_state = 2}, [486] = {.lex_state = 8, .external_lex_state = 2}, - [487] = {.lex_state = 8, .external_lex_state = 2}, + [487] = {.lex_state = 55, .external_lex_state = 2}, [488] = {.lex_state = 8, .external_lex_state = 2}, [489] = {.lex_state = 8, .external_lex_state = 2}, - [490] = {.lex_state = 8, .external_lex_state = 2}, - [491] = {.lex_state = 8, .external_lex_state = 2}, - [492] = {.lex_state = 8, .external_lex_state = 2}, - [493] = {.lex_state = 8, .external_lex_state = 2}, - [494] = {.lex_state = 8, .external_lex_state = 2}, + [490] = {.lex_state = 2, .external_lex_state = 3}, + [491] = {.lex_state = 2, .external_lex_state = 3}, + [492] = {.lex_state = 2, .external_lex_state = 3}, + [493] = {.lex_state = 2, .external_lex_state = 3}, + [494] = {.lex_state = 2, .external_lex_state = 3}, [495] = {.lex_state = 2, .external_lex_state = 3}, [496] = {.lex_state = 2, .external_lex_state = 3}, - [497] = {.lex_state = 2, .external_lex_state = 3}, + [497] = {.lex_state = 55, .external_lex_state = 2}, [498] = {.lex_state = 2, .external_lex_state = 3}, [499] = {.lex_state = 2, .external_lex_state = 3}, [500] = {.lex_state = 2, .external_lex_state = 3}, - [501] = {.lex_state = 2, .external_lex_state = 3}, - [502] = {.lex_state = 52, .external_lex_state = 2}, - [503] = {.lex_state = 2, .external_lex_state = 3}, - [504] = {.lex_state = 52, .external_lex_state = 2}, - [505] = {.lex_state = 52, .external_lex_state = 2}, + [501] = {.lex_state = 55, .external_lex_state = 2}, + [502] = {.lex_state = 55, .external_lex_state = 2}, + [503] = {.lex_state = 55, .external_lex_state = 2}, + [504] = {.lex_state = 2, .external_lex_state = 3}, + [505] = {.lex_state = 2, .external_lex_state = 3}, [506] = {.lex_state = 2, .external_lex_state = 3}, [507] = {.lex_state = 2, .external_lex_state = 3}, - [508] = {.lex_state = 52, .external_lex_state = 2}, + [508] = {.lex_state = 2, .external_lex_state = 3}, [509] = {.lex_state = 2, .external_lex_state = 3}, [510] = {.lex_state = 2, .external_lex_state = 3}, [511] = {.lex_state = 2, .external_lex_state = 3}, @@ -12194,7 +12330,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [529] = {.lex_state = 2, .external_lex_state = 3}, [530] = {.lex_state = 2, .external_lex_state = 3}, [531] = {.lex_state = 2, .external_lex_state = 3}, - [532] = {.lex_state = 5, .external_lex_state = 3}, + [532] = {.lex_state = 2, .external_lex_state = 3}, [533] = {.lex_state = 2, .external_lex_state = 3}, [534] = {.lex_state = 2, .external_lex_state = 3}, [535] = {.lex_state = 2, .external_lex_state = 3}, @@ -12213,7 +12349,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [548] = {.lex_state = 2, .external_lex_state = 3}, [549] = {.lex_state = 2, .external_lex_state = 3}, [550] = {.lex_state = 2, .external_lex_state = 3}, - [551] = {.lex_state = 7, .external_lex_state = 3}, + [551] = {.lex_state = 2, .external_lex_state = 3}, [552] = {.lex_state = 2, .external_lex_state = 3}, [553] = {.lex_state = 2, .external_lex_state = 3}, [554] = {.lex_state = 2, .external_lex_state = 3}, @@ -12234,7 +12370,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [569] = {.lex_state = 2, .external_lex_state = 3}, [570] = {.lex_state = 2, .external_lex_state = 3}, [571] = {.lex_state = 2, .external_lex_state = 3}, - [572] = {.lex_state = 7, .external_lex_state = 3}, + [572] = {.lex_state = 2, .external_lex_state = 3}, [573] = {.lex_state = 2, .external_lex_state = 3}, [574] = {.lex_state = 2, .external_lex_state = 3}, [575] = {.lex_state = 2, .external_lex_state = 3}, @@ -12246,7 +12382,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [581] = {.lex_state = 2, .external_lex_state = 3}, [582] = {.lex_state = 2, .external_lex_state = 3}, [583] = {.lex_state = 2, .external_lex_state = 3}, - [584] = {.lex_state = 5, .external_lex_state = 3}, + [584] = {.lex_state = 2, .external_lex_state = 3}, [585] = {.lex_state = 2, .external_lex_state = 3}, [586] = {.lex_state = 2, .external_lex_state = 3}, [587] = {.lex_state = 2, .external_lex_state = 3}, @@ -12272,32 +12408,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [607] = {.lex_state = 2, .external_lex_state = 3}, [608] = {.lex_state = 2, .external_lex_state = 3}, [609] = {.lex_state = 2, .external_lex_state = 3}, - [610] = {.lex_state = 5, .external_lex_state = 3}, + [610] = {.lex_state = 2, .external_lex_state = 3}, [611] = {.lex_state = 2, .external_lex_state = 3}, [612] = {.lex_state = 2, .external_lex_state = 3}, [613] = {.lex_state = 2, .external_lex_state = 3}, [614] = {.lex_state = 2, .external_lex_state = 3}, [615] = {.lex_state = 2, .external_lex_state = 3}, - [616] = {.lex_state = 2, .external_lex_state = 3}, - [617] = {.lex_state = 2, .external_lex_state = 3}, + [616] = {.lex_state = 5, .external_lex_state = 3}, + [617] = {.lex_state = 7, .external_lex_state = 3}, [618] = {.lex_state = 7, .external_lex_state = 3}, - [619] = {.lex_state = 7, .external_lex_state = 3}, - [620] = {.lex_state = 7, .external_lex_state = 3}, - [621] = {.lex_state = 7, .external_lex_state = 3}, - [622] = {.lex_state = 5, .external_lex_state = 3}, - [623] = {.lex_state = 5, .external_lex_state = 3}, - [624] = {.lex_state = 5, .external_lex_state = 3}, + [619] = {.lex_state = 5, .external_lex_state = 3}, + [620] = {.lex_state = 5, .external_lex_state = 3}, + [621] = {.lex_state = 3, .external_lex_state = 2}, + [622] = {.lex_state = 3, .external_lex_state = 2}, + [623] = {.lex_state = 3, .external_lex_state = 2}, + [624] = {.lex_state = 7, .external_lex_state = 3}, [625] = {.lex_state = 7, .external_lex_state = 3}, [626] = {.lex_state = 7, .external_lex_state = 3}, [627] = {.lex_state = 7, .external_lex_state = 3}, - [628] = {.lex_state = 5, .external_lex_state = 3}, - [629] = {.lex_state = 5, .external_lex_state = 3}, + [628] = {.lex_state = 7, .external_lex_state = 3}, + [629] = {.lex_state = 7, .external_lex_state = 3}, [630] = {.lex_state = 5, .external_lex_state = 3}, [631] = {.lex_state = 5, .external_lex_state = 3}, [632] = {.lex_state = 5, .external_lex_state = 3}, [633] = {.lex_state = 5, .external_lex_state = 3}, [634] = {.lex_state = 5, .external_lex_state = 3}, - [635] = {.lex_state = 5, .external_lex_state = 3}, + [635] = {.lex_state = 7, .external_lex_state = 3}, [636] = {.lex_state = 5, .external_lex_state = 3}, [637] = {.lex_state = 5, .external_lex_state = 3}, [638] = {.lex_state = 5, .external_lex_state = 3}, @@ -12306,7 +12442,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [641] = {.lex_state = 5, .external_lex_state = 3}, [642] = {.lex_state = 5, .external_lex_state = 3}, [643] = {.lex_state = 5, .external_lex_state = 3}, - [644] = {.lex_state = 7, .external_lex_state = 3}, + [644] = {.lex_state = 5, .external_lex_state = 3}, [645] = {.lex_state = 5, .external_lex_state = 3}, [646] = {.lex_state = 5, .external_lex_state = 3}, [647] = {.lex_state = 5, .external_lex_state = 3}, @@ -12314,7 +12450,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [649] = {.lex_state = 5, .external_lex_state = 3}, [650] = {.lex_state = 5, .external_lex_state = 3}, [651] = {.lex_state = 5, .external_lex_state = 3}, - [652] = {.lex_state = 6, .external_lex_state = 3}, + [652] = {.lex_state = 5, .external_lex_state = 3}, [653] = {.lex_state = 5, .external_lex_state = 3}, [654] = {.lex_state = 5, .external_lex_state = 3}, [655] = {.lex_state = 5, .external_lex_state = 3}, @@ -12322,19 +12458,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [657] = {.lex_state = 5, .external_lex_state = 3}, [658] = {.lex_state = 5, .external_lex_state = 3}, [659] = {.lex_state = 5, .external_lex_state = 3}, - [660] = {.lex_state = 5, .external_lex_state = 3}, + [660] = {.lex_state = 7, .external_lex_state = 3}, [661] = {.lex_state = 5, .external_lex_state = 3}, [662] = {.lex_state = 5, .external_lex_state = 3}, - [663] = {.lex_state = 3, .external_lex_state = 2}, + [663] = {.lex_state = 5, .external_lex_state = 3}, [664] = {.lex_state = 5, .external_lex_state = 3}, [665] = {.lex_state = 5, .external_lex_state = 3}, - [666] = {.lex_state = 5, .external_lex_state = 3}, + [666] = {.lex_state = 6, .external_lex_state = 3}, [667] = {.lex_state = 5, .external_lex_state = 3}, [668] = {.lex_state = 5, .external_lex_state = 3}, [669] = {.lex_state = 5, .external_lex_state = 3}, [670] = {.lex_state = 5, .external_lex_state = 3}, [671] = {.lex_state = 5, .external_lex_state = 3}, - [672] = {.lex_state = 5, .external_lex_state = 3}, + [672] = {.lex_state = 7, .external_lex_state = 3}, [673] = {.lex_state = 5, .external_lex_state = 3}, [674] = {.lex_state = 5, .external_lex_state = 3}, [675] = {.lex_state = 5, .external_lex_state = 3}, @@ -12363,10 +12499,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [698] = {.lex_state = 5, .external_lex_state = 3}, [699] = {.lex_state = 5, .external_lex_state = 3}, [700] = {.lex_state = 5, .external_lex_state = 3}, - [701] = {.lex_state = 3, .external_lex_state = 2}, + [701] = {.lex_state = 5, .external_lex_state = 3}, [702] = {.lex_state = 5, .external_lex_state = 3}, [703] = {.lex_state = 5, .external_lex_state = 3}, - [704] = {.lex_state = 3, .external_lex_state = 2}, + [704] = {.lex_state = 5, .external_lex_state = 3}, [705] = {.lex_state = 5, .external_lex_state = 3}, [706] = {.lex_state = 5, .external_lex_state = 3}, [707] = {.lex_state = 5, .external_lex_state = 3}, @@ -12384,7 +12520,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [719] = {.lex_state = 5, .external_lex_state = 3}, [720] = {.lex_state = 5, .external_lex_state = 3}, [721] = {.lex_state = 5, .external_lex_state = 3}, - [722] = {.lex_state = 7, .external_lex_state = 3}, + [722] = {.lex_state = 5, .external_lex_state = 3}, [723] = {.lex_state = 5, .external_lex_state = 3}, [724] = {.lex_state = 5, .external_lex_state = 3}, [725] = {.lex_state = 5, .external_lex_state = 3}, @@ -12399,13 +12535,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [734] = {.lex_state = 5, .external_lex_state = 3}, [735] = {.lex_state = 5, .external_lex_state = 3}, [736] = {.lex_state = 5, .external_lex_state = 3}, - [737] = {.lex_state = 5, .external_lex_state = 3}, + [737] = {.lex_state = 55, .external_lex_state = 2}, [738] = {.lex_state = 5, .external_lex_state = 3}, [739] = {.lex_state = 5, .external_lex_state = 3}, [740] = {.lex_state = 5, .external_lex_state = 3}, [741] = {.lex_state = 5, .external_lex_state = 3}, [742] = {.lex_state = 5, .external_lex_state = 3}, - [743] = {.lex_state = 5, .external_lex_state = 3}, + [743] = {.lex_state = 55, .external_lex_state = 2}, [744] = {.lex_state = 5, .external_lex_state = 3}, [745] = {.lex_state = 5, .external_lex_state = 3}, [746] = {.lex_state = 5, .external_lex_state = 3}, @@ -12429,60 +12565,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [764] = {.lex_state = 5, .external_lex_state = 3}, [765] = {.lex_state = 5, .external_lex_state = 3}, [766] = {.lex_state = 5, .external_lex_state = 3}, - [767] = {.lex_state = 5, .external_lex_state = 3}, + [767] = {.lex_state = 55, .external_lex_state = 2}, [768] = {.lex_state = 5, .external_lex_state = 3}, - [769] = {.lex_state = 7, .external_lex_state = 3}, - [770] = {.lex_state = 7, .external_lex_state = 3}, + [769] = {.lex_state = 5, .external_lex_state = 3}, + [770] = {.lex_state = 5, .external_lex_state = 3}, [771] = {.lex_state = 5, .external_lex_state = 3}, [772] = {.lex_state = 5, .external_lex_state = 3}, - [773] = {.lex_state = 7, .external_lex_state = 3}, - [774] = {.lex_state = 7, .external_lex_state = 3}, - [775] = {.lex_state = 7, .external_lex_state = 3}, + [773] = {.lex_state = 5, .external_lex_state = 3}, + [774] = {.lex_state = 55, .external_lex_state = 2}, + [775] = {.lex_state = 5, .external_lex_state = 3}, [776] = {.lex_state = 7, .external_lex_state = 3}, [777] = {.lex_state = 7, .external_lex_state = 3}, [778] = {.lex_state = 7, .external_lex_state = 3}, - [779] = {.lex_state = 7, .external_lex_state = 3}, - [780] = {.lex_state = 52, .external_lex_state = 2}, + [779] = {.lex_state = 2, .external_lex_state = 3}, + [780] = {.lex_state = 2, .external_lex_state = 3}, [781] = {.lex_state = 7, .external_lex_state = 3}, - [782] = {.lex_state = 7, .external_lex_state = 3}, - [783] = {.lex_state = 7, .external_lex_state = 3}, + [782] = {.lex_state = 5, .external_lex_state = 3}, + [783] = {.lex_state = 5, .external_lex_state = 3}, [784] = {.lex_state = 7, .external_lex_state = 3}, - [785] = {.lex_state = 52, .external_lex_state = 2}, + [785] = {.lex_state = 7, .external_lex_state = 3}, [786] = {.lex_state = 7, .external_lex_state = 3}, - [787] = {.lex_state = 5, .external_lex_state = 3}, - [788] = {.lex_state = 5, .external_lex_state = 3}, - [789] = {.lex_state = 52, .external_lex_state = 2}, - [790] = {.lex_state = 52, .external_lex_state = 2}, - [791] = {.lex_state = 5, .external_lex_state = 3}, - [792] = {.lex_state = 5, .external_lex_state = 3}, + [787] = {.lex_state = 7, .external_lex_state = 3}, + [788] = {.lex_state = 7, .external_lex_state = 3}, + [789] = {.lex_state = 55, .external_lex_state = 2}, + [790] = {.lex_state = 7, .external_lex_state = 3}, + [791] = {.lex_state = 7, .external_lex_state = 3}, + [792] = {.lex_state = 7, .external_lex_state = 3}, [793] = {.lex_state = 7, .external_lex_state = 3}, - [794] = {.lex_state = 5, .external_lex_state = 3}, + [794] = {.lex_state = 55, .external_lex_state = 2}, [795] = {.lex_state = 5, .external_lex_state = 3}, [796] = {.lex_state = 5, .external_lex_state = 3}, [797] = {.lex_state = 5, .external_lex_state = 3}, [798] = {.lex_state = 5, .external_lex_state = 3}, [799] = {.lex_state = 5, .external_lex_state = 3}, - [800] = {.lex_state = 2, .external_lex_state = 3}, - [801] = {.lex_state = 5, .external_lex_state = 3}, + [800] = {.lex_state = 7, .external_lex_state = 3}, + [801] = {.lex_state = 2, .external_lex_state = 3}, [802] = {.lex_state = 5, .external_lex_state = 3}, [803] = {.lex_state = 5, .external_lex_state = 3}, - [804] = {.lex_state = 5, .external_lex_state = 3}, - [805] = {.lex_state = 5, .external_lex_state = 3}, - [806] = {.lex_state = 2, .external_lex_state = 3}, + [804] = {.lex_state = 2, .external_lex_state = 3}, + [805] = {.lex_state = 7, .external_lex_state = 3}, + [806] = {.lex_state = 5, .external_lex_state = 3}, [807] = {.lex_state = 5, .external_lex_state = 3}, [808] = {.lex_state = 5, .external_lex_state = 3}, [809] = {.lex_state = 5, .external_lex_state = 3}, [810] = {.lex_state = 5, .external_lex_state = 3}, [811] = {.lex_state = 5, .external_lex_state = 3}, [812] = {.lex_state = 5, .external_lex_state = 3}, - [813] = {.lex_state = 52, .external_lex_state = 2}, - [814] = {.lex_state = 52, .external_lex_state = 2}, + [813] = {.lex_state = 5, .external_lex_state = 3}, + [814] = {.lex_state = 5, .external_lex_state = 3}, [815] = {.lex_state = 5, .external_lex_state = 3}, [816] = {.lex_state = 5, .external_lex_state = 3}, [817] = {.lex_state = 5, .external_lex_state = 3}, [818] = {.lex_state = 5, .external_lex_state = 3}, [819] = {.lex_state = 5, .external_lex_state = 3}, - [820] = {.lex_state = 5, .external_lex_state = 3}, + [820] = {.lex_state = 2, .external_lex_state = 3}, [821] = {.lex_state = 5, .external_lex_state = 3}, [822] = {.lex_state = 5, .external_lex_state = 3}, [823] = {.lex_state = 5, .external_lex_state = 3}, @@ -12498,13 +12634,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [833] = {.lex_state = 5, .external_lex_state = 3}, [834] = {.lex_state = 5, .external_lex_state = 3}, [835] = {.lex_state = 5, .external_lex_state = 3}, - [836] = {.lex_state = 5, .external_lex_state = 3}, + [836] = {.lex_state = 2, .external_lex_state = 3}, [837] = {.lex_state = 5, .external_lex_state = 3}, [838] = {.lex_state = 5, .external_lex_state = 3}, [839] = {.lex_state = 5, .external_lex_state = 3}, - [840] = {.lex_state = 5, .external_lex_state = 3}, - [841] = {.lex_state = 5, .external_lex_state = 3}, - [842] = {.lex_state = 2, .external_lex_state = 3}, + [840] = {.lex_state = 2, .external_lex_state = 3}, + [841] = {.lex_state = 2, .external_lex_state = 3}, + [842] = {.lex_state = 5, .external_lex_state = 3}, [843] = {.lex_state = 5, .external_lex_state = 3}, [844] = {.lex_state = 5, .external_lex_state = 3}, [845] = {.lex_state = 5, .external_lex_state = 3}, @@ -12522,13 +12658,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [857] = {.lex_state = 5, .external_lex_state = 3}, [858] = {.lex_state = 5, .external_lex_state = 3}, [859] = {.lex_state = 5, .external_lex_state = 3}, - [860] = {.lex_state = 5, .external_lex_state = 3}, + [860] = {.lex_state = 2, .external_lex_state = 3}, [861] = {.lex_state = 5, .external_lex_state = 3}, [862] = {.lex_state = 5, .external_lex_state = 3}, [863] = {.lex_state = 5, .external_lex_state = 3}, - [864] = {.lex_state = 5, .external_lex_state = 3}, + [864] = {.lex_state = 2, .external_lex_state = 3}, [865] = {.lex_state = 5, .external_lex_state = 3}, - [866] = {.lex_state = 5, .external_lex_state = 3}, + [866] = {.lex_state = 2, .external_lex_state = 3}, [867] = {.lex_state = 5, .external_lex_state = 3}, [868] = {.lex_state = 5, .external_lex_state = 3}, [869] = {.lex_state = 5, .external_lex_state = 3}, @@ -12536,11 +12672,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [871] = {.lex_state = 5, .external_lex_state = 3}, [872] = {.lex_state = 5, .external_lex_state = 3}, [873] = {.lex_state = 5, .external_lex_state = 3}, - [874] = {.lex_state = 5, .external_lex_state = 3}, + [874] = {.lex_state = 2, .external_lex_state = 3}, [875] = {.lex_state = 5, .external_lex_state = 3}, [876] = {.lex_state = 5, .external_lex_state = 3}, [877] = {.lex_state = 5, .external_lex_state = 3}, - [878] = {.lex_state = 5, .external_lex_state = 3}, + [878] = {.lex_state = 2, .external_lex_state = 3}, [879] = {.lex_state = 5, .external_lex_state = 3}, [880] = {.lex_state = 5, .external_lex_state = 3}, [881] = {.lex_state = 5, .external_lex_state = 3}, @@ -12551,12 +12687,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [886] = {.lex_state = 5, .external_lex_state = 3}, [887] = {.lex_state = 5, .external_lex_state = 3}, [888] = {.lex_state = 5, .external_lex_state = 3}, - [889] = {.lex_state = 2, .external_lex_state = 3}, + [889] = {.lex_state = 5, .external_lex_state = 3}, [890] = {.lex_state = 5, .external_lex_state = 3}, [891] = {.lex_state = 5, .external_lex_state = 3}, [892] = {.lex_state = 5, .external_lex_state = 3}, [893] = {.lex_state = 5, .external_lex_state = 3}, - [894] = {.lex_state = 5, .external_lex_state = 3}, + [894] = {.lex_state = 2, .external_lex_state = 3}, [895] = {.lex_state = 5, .external_lex_state = 3}, [896] = {.lex_state = 5, .external_lex_state = 3}, [897] = {.lex_state = 5, .external_lex_state = 3}, @@ -12571,40 +12707,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [906] = {.lex_state = 5, .external_lex_state = 3}, [907] = {.lex_state = 5, .external_lex_state = 3}, [908] = {.lex_state = 5, .external_lex_state = 3}, - [909] = {.lex_state = 5, .external_lex_state = 3}, - [910] = {.lex_state = 5, .external_lex_state = 3}, + [909] = {.lex_state = 2, .external_lex_state = 3}, + [910] = {.lex_state = 2, .external_lex_state = 3}, [911] = {.lex_state = 5, .external_lex_state = 3}, [912] = {.lex_state = 5, .external_lex_state = 3}, [913] = {.lex_state = 5, .external_lex_state = 3}, [914] = {.lex_state = 5, .external_lex_state = 3}, [915] = {.lex_state = 5, .external_lex_state = 3}, [916] = {.lex_state = 5, .external_lex_state = 3}, - [917] = {.lex_state = 5, .external_lex_state = 3}, - [918] = {.lex_state = 2, .external_lex_state = 3}, + [917] = {.lex_state = 2, .external_lex_state = 3}, + [918] = {.lex_state = 5, .external_lex_state = 3}, [919] = {.lex_state = 5, .external_lex_state = 3}, - [920] = {.lex_state = 2, .external_lex_state = 3}, - [921] = {.lex_state = 2, .external_lex_state = 3}, + [920] = {.lex_state = 5, .external_lex_state = 3}, + [921] = {.lex_state = 5, .external_lex_state = 3}, [922] = {.lex_state = 2, .external_lex_state = 3}, - [923] = {.lex_state = 2, .external_lex_state = 3}, + [923] = {.lex_state = 5, .external_lex_state = 3}, [924] = {.lex_state = 2, .external_lex_state = 3}, - [925] = {.lex_state = 2, .external_lex_state = 3}, - [926] = {.lex_state = 2, .external_lex_state = 3}, - [927] = {.lex_state = 2, .external_lex_state = 3}, - [928] = {.lex_state = 2, .external_lex_state = 3}, - [929] = {.lex_state = 2, .external_lex_state = 3}, - [930] = {.lex_state = 2, .external_lex_state = 3}, + [925] = {.lex_state = 5, .external_lex_state = 3}, + [926] = {.lex_state = 5, .external_lex_state = 3}, + [927] = {.lex_state = 5, .external_lex_state = 3}, + [928] = {.lex_state = 5, .external_lex_state = 3}, + [929] = {.lex_state = 5, .external_lex_state = 3}, + [930] = {.lex_state = 5, .external_lex_state = 3}, [931] = {.lex_state = 2, .external_lex_state = 3}, - [932] = {.lex_state = 2, .external_lex_state = 3}, - [933] = {.lex_state = 2, .external_lex_state = 3}, - [934] = {.lex_state = 2, .external_lex_state = 3}, - [935] = {.lex_state = 2, .external_lex_state = 3}, - [936] = {.lex_state = 2, .external_lex_state = 3}, + [932] = {.lex_state = 5, .external_lex_state = 3}, + [933] = {.lex_state = 5, .external_lex_state = 3}, + [934] = {.lex_state = 5, .external_lex_state = 3}, + [935] = {.lex_state = 5, .external_lex_state = 3}, + [936] = {.lex_state = 5, .external_lex_state = 3}, [937] = {.lex_state = 2, .external_lex_state = 3}, [938] = {.lex_state = 2, .external_lex_state = 3}, - [939] = {.lex_state = 2, .external_lex_state = 3}, + [939] = {.lex_state = 5, .external_lex_state = 3}, [940] = {.lex_state = 2, .external_lex_state = 3}, [941] = {.lex_state = 2, .external_lex_state = 3}, - [942] = {.lex_state = 2, .external_lex_state = 3}, + [942] = {.lex_state = 5, .external_lex_state = 3}, [943] = {.lex_state = 2, .external_lex_state = 3}, [944] = {.lex_state = 2, .external_lex_state = 3}, [945] = {.lex_state = 2, .external_lex_state = 3}, @@ -12621,55 +12757,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [956] = {.lex_state = 2, .external_lex_state = 3}, [957] = {.lex_state = 2, .external_lex_state = 3}, [958] = {.lex_state = 2, .external_lex_state = 3}, - [959] = {.lex_state = 9, .external_lex_state = 3}, - [960] = {.lex_state = 9, .external_lex_state = 3}, - [961] = {.lex_state = 9, .external_lex_state = 3}, - [962] = {.lex_state = 13, .external_lex_state = 3}, - [963] = {.lex_state = 13, .external_lex_state = 3}, - [964] = {.lex_state = 13, .external_lex_state = 3}, - [965] = {.lex_state = 13, .external_lex_state = 3}, + [959] = {.lex_state = 2, .external_lex_state = 3}, + [960] = {.lex_state = 2, .external_lex_state = 3}, + [961] = {.lex_state = 2, .external_lex_state = 3}, + [962] = {.lex_state = 2, .external_lex_state = 3}, + [963] = {.lex_state = 9, .external_lex_state = 3}, + [964] = {.lex_state = 9, .external_lex_state = 3}, + [965] = {.lex_state = 9, .external_lex_state = 3}, [966] = {.lex_state = 13, .external_lex_state = 3}, - [967] = {.lex_state = 2, .external_lex_state = 3}, - [968] = {.lex_state = 13, .external_lex_state = 3}, - [969] = {.lex_state = 9, .external_lex_state = 3}, + [967] = {.lex_state = 13, .external_lex_state = 3}, + [968] = {.lex_state = 2, .external_lex_state = 3}, + [969] = {.lex_state = 13, .external_lex_state = 3}, [970] = {.lex_state = 13, .external_lex_state = 3}, - [971] = {.lex_state = 2, .external_lex_state = 3}, - [972] = {.lex_state = 13, .external_lex_state = 3}, - [973] = {.lex_state = 2, .external_lex_state = 3}, + [971] = {.lex_state = 13, .external_lex_state = 3}, + [972] = {.lex_state = 9, .external_lex_state = 3}, + [973] = {.lex_state = 13, .external_lex_state = 3}, [974] = {.lex_state = 13, .external_lex_state = 3}, [975] = {.lex_state = 2, .external_lex_state = 3}, - [976] = {.lex_state = 7, .external_lex_state = 3}, + [976] = {.lex_state = 13, .external_lex_state = 3}, [977] = {.lex_state = 2, .external_lex_state = 3}, - [978] = {.lex_state = 2, .external_lex_state = 3}, + [978] = {.lex_state = 13, .external_lex_state = 3}, [979] = {.lex_state = 2, .external_lex_state = 3}, [980] = {.lex_state = 2, .external_lex_state = 3}, [981] = {.lex_state = 2, .external_lex_state = 3}, [982] = {.lex_state = 2, .external_lex_state = 3}, [983] = {.lex_state = 2, .external_lex_state = 3}, - [984] = {.lex_state = 7, .external_lex_state = 3}, + [984] = {.lex_state = 2, .external_lex_state = 3}, [985] = {.lex_state = 2, .external_lex_state = 3}, - [986] = {.lex_state = 2, .external_lex_state = 3}, - [987] = {.lex_state = 9, .external_lex_state = 3}, + [986] = {.lex_state = 7, .external_lex_state = 3}, + [987] = {.lex_state = 2, .external_lex_state = 3}, [988] = {.lex_state = 2, .external_lex_state = 3}, [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 2, .external_lex_state = 3}, - [991] = {.lex_state = 9, .external_lex_state = 3}, + [990] = {.lex_state = 7, .external_lex_state = 3}, + [991] = {.lex_state = 2, .external_lex_state = 3}, [992] = {.lex_state = 2, .external_lex_state = 3}, [993] = {.lex_state = 2, .external_lex_state = 3}, [994] = {.lex_state = 2, .external_lex_state = 3}, - [995] = {.lex_state = 9, .external_lex_state = 3}, + [995] = {.lex_state = 2, .external_lex_state = 3}, [996] = {.lex_state = 2, .external_lex_state = 3}, - [997] = {.lex_state = 9, .external_lex_state = 3}, + [997] = {.lex_state = 2, .external_lex_state = 3}, [998] = {.lex_state = 2, .external_lex_state = 3}, [999] = {.lex_state = 2, .external_lex_state = 3}, - [1000] = {.lex_state = 9, .external_lex_state = 3}, - [1001] = {.lex_state = 9, .external_lex_state = 3}, - [1002] = {.lex_state = 9, .external_lex_state = 3}, + [1000] = {.lex_state = 2, .external_lex_state = 3}, + [1001] = {.lex_state = 2, .external_lex_state = 3}, + [1002] = {.lex_state = 2, .external_lex_state = 3}, [1003] = {.lex_state = 2, .external_lex_state = 3}, [1004] = {.lex_state = 2, .external_lex_state = 3}, [1005] = {.lex_state = 2, .external_lex_state = 3}, [1006] = {.lex_state = 2, .external_lex_state = 3}, - [1007] = {.lex_state = 2, .external_lex_state = 3}, + [1007] = {.lex_state = 9, .external_lex_state = 3}, [1008] = {.lex_state = 2, .external_lex_state = 3}, [1009] = {.lex_state = 2, .external_lex_state = 3}, [1010] = {.lex_state = 2, .external_lex_state = 3}, @@ -12680,47 +12816,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1015] = {.lex_state = 2, .external_lex_state = 3}, [1016] = {.lex_state = 2, .external_lex_state = 3}, [1017] = {.lex_state = 2, .external_lex_state = 3}, - [1018] = {.lex_state = 9, .external_lex_state = 3}, + [1018] = {.lex_state = 2, .external_lex_state = 3}, [1019] = {.lex_state = 2, .external_lex_state = 3}, [1020] = {.lex_state = 2, .external_lex_state = 3}, [1021] = {.lex_state = 2, .external_lex_state = 3}, [1022] = {.lex_state = 2, .external_lex_state = 3}, [1023] = {.lex_state = 2, .external_lex_state = 3}, - [1024] = {.lex_state = 9, .external_lex_state = 3}, - [1025] = {.lex_state = 9, .external_lex_state = 3}, - [1026] = {.lex_state = 2, .external_lex_state = 3}, - [1027] = {.lex_state = 9, .external_lex_state = 3}, + [1024] = {.lex_state = 2, .external_lex_state = 3}, + [1025] = {.lex_state = 2, .external_lex_state = 3}, + [1026] = {.lex_state = 9, .external_lex_state = 3}, + [1027] = {.lex_state = 2, .external_lex_state = 3}, [1028] = {.lex_state = 2, .external_lex_state = 3}, [1029] = {.lex_state = 2, .external_lex_state = 3}, - [1030] = {.lex_state = 9, .external_lex_state = 3}, + [1030] = {.lex_state = 2, .external_lex_state = 3}, [1031] = {.lex_state = 2, .external_lex_state = 3}, - [1032] = {.lex_state = 9, .external_lex_state = 3}, + [1032] = {.lex_state = 2, .external_lex_state = 3}, [1033] = {.lex_state = 2, .external_lex_state = 3}, [1034] = {.lex_state = 2, .external_lex_state = 3}, - [1035] = {.lex_state = 2, .external_lex_state = 3}, + [1035] = {.lex_state = 9, .external_lex_state = 3}, [1036] = {.lex_state = 2, .external_lex_state = 3}, [1037] = {.lex_state = 2, .external_lex_state = 3}, [1038] = {.lex_state = 2, .external_lex_state = 3}, [1039] = {.lex_state = 2, .external_lex_state = 3}, - [1040] = {.lex_state = 2, .external_lex_state = 3}, + [1040] = {.lex_state = 9, .external_lex_state = 3}, [1041] = {.lex_state = 2, .external_lex_state = 3}, - [1042] = {.lex_state = 9, .external_lex_state = 3}, + [1042] = {.lex_state = 2, .external_lex_state = 3}, [1043] = {.lex_state = 2, .external_lex_state = 3}, [1044] = {.lex_state = 2, .external_lex_state = 3}, - [1045] = {.lex_state = 9, .external_lex_state = 3}, + [1045] = {.lex_state = 2, .external_lex_state = 3}, [1046] = {.lex_state = 2, .external_lex_state = 3}, [1047] = {.lex_state = 2, .external_lex_state = 3}, [1048] = {.lex_state = 2, .external_lex_state = 3}, [1049] = {.lex_state = 2, .external_lex_state = 3}, [1050] = {.lex_state = 2, .external_lex_state = 3}, - [1051] = {.lex_state = 9, .external_lex_state = 3}, - [1052] = {.lex_state = 9, .external_lex_state = 3}, + [1051] = {.lex_state = 2, .external_lex_state = 3}, + [1052] = {.lex_state = 2, .external_lex_state = 3}, [1053] = {.lex_state = 2, .external_lex_state = 3}, [1054] = {.lex_state = 2, .external_lex_state = 3}, [1055] = {.lex_state = 2, .external_lex_state = 3}, [1056] = {.lex_state = 2, .external_lex_state = 3}, [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 9, .external_lex_state = 3}, + [1058] = {.lex_state = 2, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 3}, [1061] = {.lex_state = 2, .external_lex_state = 3}, @@ -12729,14 +12865,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1064] = {.lex_state = 2, .external_lex_state = 3}, [1065] = {.lex_state = 2, .external_lex_state = 3}, [1066] = {.lex_state = 2, .external_lex_state = 3}, - [1067] = {.lex_state = 9, .external_lex_state = 3}, + [1067] = {.lex_state = 2, .external_lex_state = 3}, [1068] = {.lex_state = 2, .external_lex_state = 3}, [1069] = {.lex_state = 2, .external_lex_state = 3}, [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 2, .external_lex_state = 3}, [1072] = {.lex_state = 2, .external_lex_state = 3}, [1073] = {.lex_state = 2, .external_lex_state = 3}, - [1074] = {.lex_state = 9, .external_lex_state = 3}, + [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, [1076] = {.lex_state = 2, .external_lex_state = 3}, [1077] = {.lex_state = 2, .external_lex_state = 3}, @@ -12749,20 +12885,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, [1086] = {.lex_state = 2, .external_lex_state = 3}, - [1087] = {.lex_state = 9, .external_lex_state = 3}, + [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, - [1090] = {.lex_state = 9, .external_lex_state = 3}, + [1090] = {.lex_state = 2, .external_lex_state = 3}, [1091] = {.lex_state = 2, .external_lex_state = 3}, [1092] = {.lex_state = 2, .external_lex_state = 3}, [1093] = {.lex_state = 2, .external_lex_state = 3}, - [1094] = {.lex_state = 9, .external_lex_state = 3}, + [1094] = {.lex_state = 2, .external_lex_state = 3}, [1095] = {.lex_state = 2, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, [1097] = {.lex_state = 2, .external_lex_state = 3}, [1098] = {.lex_state = 2, .external_lex_state = 3}, - [1099] = {.lex_state = 9, .external_lex_state = 3}, - [1100] = {.lex_state = 9, .external_lex_state = 3}, + [1099] = {.lex_state = 2, .external_lex_state = 3}, + [1100] = {.lex_state = 2, .external_lex_state = 3}, [1101] = {.lex_state = 2, .external_lex_state = 3}, [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 2, .external_lex_state = 3}, @@ -12774,12 +12910,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, [1111] = {.lex_state = 2, .external_lex_state = 3}, - [1112] = {.lex_state = 2, .external_lex_state = 3}, + [1112] = {.lex_state = 9, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 9, .external_lex_state = 3}, + [1114] = {.lex_state = 2, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, - [1116] = {.lex_state = 9, .external_lex_state = 3}, - [1117] = {.lex_state = 2, .external_lex_state = 3}, + [1116] = {.lex_state = 2, .external_lex_state = 3}, + [1117] = {.lex_state = 9, .external_lex_state = 3}, [1118] = {.lex_state = 2, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, @@ -12793,7 +12929,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, - [1131] = {.lex_state = 2, .external_lex_state = 3}, + [1131] = {.lex_state = 9, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, [1134] = {.lex_state = 2, .external_lex_state = 3}, @@ -12834,49 +12970,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1169] = {.lex_state = 2, .external_lex_state = 3}, [1170] = {.lex_state = 2, .external_lex_state = 3}, [1171] = {.lex_state = 2, .external_lex_state = 3}, - [1172] = {.lex_state = 2, .external_lex_state = 3}, - [1173] = {.lex_state = 2, .external_lex_state = 3}, + [1172] = {.lex_state = 9, .external_lex_state = 3}, + [1173] = {.lex_state = 9, .external_lex_state = 3}, [1174] = {.lex_state = 2, .external_lex_state = 3}, - [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, - [1177] = {.lex_state = 2, .external_lex_state = 3}, - [1178] = {.lex_state = 2, .external_lex_state = 3}, - [1179] = {.lex_state = 2, .external_lex_state = 3}, - [1180] = {.lex_state = 2, .external_lex_state = 3}, - [1181] = {.lex_state = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, - [1183] = {.lex_state = 2, .external_lex_state = 3}, - [1184] = {.lex_state = 2, .external_lex_state = 3}, - [1185] = {.lex_state = 2, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, - [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 2, .external_lex_state = 3}, - [1189] = {.lex_state = 2, .external_lex_state = 3}, - [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 2, .external_lex_state = 3}, - [1192] = {.lex_state = 2, .external_lex_state = 3}, - [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 9, .external_lex_state = 3}, + [1176] = {.lex_state = 9, .external_lex_state = 3}, + [1177] = {.lex_state = 9, .external_lex_state = 3}, + [1178] = {.lex_state = 9, .external_lex_state = 3}, + [1179] = {.lex_state = 9, .external_lex_state = 3}, + [1180] = {.lex_state = 9, .external_lex_state = 3}, + [1181] = {.lex_state = 9, .external_lex_state = 3}, + [1182] = {.lex_state = 9, .external_lex_state = 3}, + [1183] = {.lex_state = 9, .external_lex_state = 3}, + [1184] = {.lex_state = 9, .external_lex_state = 3}, + [1185] = {.lex_state = 9, .external_lex_state = 3}, + [1186] = {.lex_state = 9, .external_lex_state = 3}, + [1187] = {.lex_state = 9, .external_lex_state = 3}, + [1188] = {.lex_state = 9, .external_lex_state = 3}, + [1189] = {.lex_state = 9, .external_lex_state = 3}, + [1190] = {.lex_state = 9, .external_lex_state = 3}, + [1191] = {.lex_state = 9, .external_lex_state = 3}, + [1192] = {.lex_state = 9, .external_lex_state = 3}, + [1193] = {.lex_state = 9, .external_lex_state = 3}, + [1194] = {.lex_state = 13, .external_lex_state = 3}, [1195] = {.lex_state = 13, .external_lex_state = 3}, - [1196] = {.lex_state = 9, .external_lex_state = 3}, + [1196] = {.lex_state = 13, .external_lex_state = 3}, [1197] = {.lex_state = 9, .external_lex_state = 3}, - [1198] = {.lex_state = 13, .external_lex_state = 3}, - [1199] = {.lex_state = 13, .external_lex_state = 3}, - [1200] = {.lex_state = 9, .external_lex_state = 3}, - [1201] = {.lex_state = 2, .external_lex_state = 3}, - [1202] = {.lex_state = 2, .external_lex_state = 3}, - [1203] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 9, .external_lex_state = 3}, + [1199] = {.lex_state = 2, .external_lex_state = 3}, + [1200] = {.lex_state = 2, .external_lex_state = 3}, + [1201] = {.lex_state = 6, .external_lex_state = 3}, + [1202] = {.lex_state = 6, .external_lex_state = 3}, + [1203] = {.lex_state = 6, .external_lex_state = 3}, [1204] = {.lex_state = 6, .external_lex_state = 3}, [1205] = {.lex_state = 2, .external_lex_state = 3}, - [1206] = {.lex_state = 6, .external_lex_state = 3}, - [1207] = {.lex_state = 13, .external_lex_state = 3}, - [1208] = {.lex_state = 6, .external_lex_state = 3}, - [1209] = {.lex_state = 6, .external_lex_state = 3}, + [1206] = {.lex_state = 13, .external_lex_state = 3}, + [1207] = {.lex_state = 2, .external_lex_state = 3}, + [1208] = {.lex_state = 2, .external_lex_state = 3}, + [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, [1211] = {.lex_state = 2, .external_lex_state = 3}, [1212] = {.lex_state = 2, .external_lex_state = 3}, - [1213] = {.lex_state = 2, .external_lex_state = 3}, - [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1213] = {.lex_state = 9, .external_lex_state = 3}, + [1214] = {.lex_state = 9, .external_lex_state = 3}, [1215] = {.lex_state = 9, .external_lex_state = 3}, [1216] = {.lex_state = 9, .external_lex_state = 3}, [1217] = {.lex_state = 9, .external_lex_state = 3}, @@ -12907,13 +13043,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1242] = {.lex_state = 9, .external_lex_state = 3}, [1243] = {.lex_state = 9, .external_lex_state = 3}, [1244] = {.lex_state = 9, .external_lex_state = 3}, - [1245] = {.lex_state = 9, .external_lex_state = 3}, - [1246] = {.lex_state = 9, .external_lex_state = 3}, + [1245] = {.lex_state = 13, .external_lex_state = 3}, + [1246] = {.lex_state = 13, .external_lex_state = 3}, [1247] = {.lex_state = 13, .external_lex_state = 3}, [1248] = {.lex_state = 13, .external_lex_state = 3}, - [1249] = {.lex_state = 13, .external_lex_state = 3}, + [1249] = {.lex_state = 2, .external_lex_state = 3}, [1250] = {.lex_state = 13, .external_lex_state = 3}, - [1251] = {.lex_state = 13, .external_lex_state = 3}, + [1251] = {.lex_state = 2, .external_lex_state = 3}, [1252] = {.lex_state = 13, .external_lex_state = 3}, [1253] = {.lex_state = 13, .external_lex_state = 3}, [1254] = {.lex_state = 13, .external_lex_state = 3}, @@ -12921,25 +13057,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1256] = {.lex_state = 13, .external_lex_state = 3}, [1257] = {.lex_state = 13, .external_lex_state = 3}, [1258] = {.lex_state = 13, .external_lex_state = 3}, - [1259] = {.lex_state = 13, .external_lex_state = 3}, + [1259] = {.lex_state = 2, .external_lex_state = 3}, [1260] = {.lex_state = 13, .external_lex_state = 3}, - [1261] = {.lex_state = 7, .external_lex_state = 3}, - [1262] = {.lex_state = 2, .external_lex_state = 3}, - [1263] = {.lex_state = 10, .external_lex_state = 3}, + [1261] = {.lex_state = 13, .external_lex_state = 3}, + [1262] = {.lex_state = 9, .external_lex_state = 3}, + [1263] = {.lex_state = 9, .external_lex_state = 3}, [1264] = {.lex_state = 2, .external_lex_state = 3}, - [1265] = {.lex_state = 9, .external_lex_state = 3}, - [1266] = {.lex_state = 7, .external_lex_state = 3}, - [1267] = {.lex_state = 9, .external_lex_state = 3}, + [1265] = {.lex_state = 7, .external_lex_state = 3}, + [1266] = {.lex_state = 10, .external_lex_state = 3}, + [1267] = {.lex_state = 0, .external_lex_state = 3}, [1268] = {.lex_state = 7, .external_lex_state = 3}, - [1269] = {.lex_state = 2, .external_lex_state = 3}, - [1270] = {.lex_state = 0, .external_lex_state = 3}, + [1269] = {.lex_state = 7, .external_lex_state = 3}, + [1270] = {.lex_state = 7, .external_lex_state = 3}, [1271] = {.lex_state = 2, .external_lex_state = 3}, - [1272] = {.lex_state = 7, .external_lex_state = 3}, - [1273] = {.lex_state = 7, .external_lex_state = 3}, - [1274] = {.lex_state = 10, .external_lex_state = 3}, + [1272] = {.lex_state = 2, .external_lex_state = 3}, + [1273] = {.lex_state = 2, .external_lex_state = 3}, + [1274] = {.lex_state = 2, .external_lex_state = 3}, [1275] = {.lex_state = 10, .external_lex_state = 3}, [1276] = {.lex_state = 2, .external_lex_state = 3}, - [1277] = {.lex_state = 7, .external_lex_state = 3}, + [1277] = {.lex_state = 10, .external_lex_state = 3}, [1278] = {.lex_state = 10, .external_lex_state = 3}, [1279] = {.lex_state = 2, .external_lex_state = 3}, [1280] = {.lex_state = 2, .external_lex_state = 3}, @@ -12947,45 +13083,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1282] = {.lex_state = 2, .external_lex_state = 3}, [1283] = {.lex_state = 2, .external_lex_state = 3}, [1284] = {.lex_state = 2, .external_lex_state = 3}, - [1285] = {.lex_state = 7, .external_lex_state = 3}, + [1285] = {.lex_state = 2, .external_lex_state = 3}, [1286] = {.lex_state = 2, .external_lex_state = 3}, [1287] = {.lex_state = 2, .external_lex_state = 3}, - [1288] = {.lex_state = 10, .external_lex_state = 3}, + [1288] = {.lex_state = 7, .external_lex_state = 3}, [1289] = {.lex_state = 13, .external_lex_state = 3}, [1290] = {.lex_state = 2, .external_lex_state = 3}, - [1291] = {.lex_state = 7, .external_lex_state = 3}, - [1292] = {.lex_state = 2, .external_lex_state = 3}, - [1293] = {.lex_state = 2, .external_lex_state = 3}, - [1294] = {.lex_state = 10, .external_lex_state = 3}, + [1291] = {.lex_state = 10, .external_lex_state = 3}, + [1292] = {.lex_state = 7, .external_lex_state = 3}, + [1293] = {.lex_state = 7, .external_lex_state = 3}, + [1294] = {.lex_state = 7, .external_lex_state = 3}, [1295] = {.lex_state = 2, .external_lex_state = 3}, [1296] = {.lex_state = 2, .external_lex_state = 3}, [1297] = {.lex_state = 2, .external_lex_state = 3}, [1298] = {.lex_state = 10, .external_lex_state = 3}, [1299] = {.lex_state = 2, .external_lex_state = 3}, - [1300] = {.lex_state = 2, .external_lex_state = 3}, - [1301] = {.lex_state = 2, .external_lex_state = 3}, + [1300] = {.lex_state = 10, .external_lex_state = 3}, + [1301] = {.lex_state = 10, .external_lex_state = 3}, [1302] = {.lex_state = 2, .external_lex_state = 3}, [1303] = {.lex_state = 2, .external_lex_state = 3}, [1304] = {.lex_state = 2, .external_lex_state = 3}, - [1305] = {.lex_state = 2, .external_lex_state = 3}, - [1306] = {.lex_state = 2, .external_lex_state = 3}, - [1307] = {.lex_state = 10, .external_lex_state = 3}, + [1305] = {.lex_state = 10, .external_lex_state = 3}, + [1306] = {.lex_state = 10, .external_lex_state = 3}, + [1307] = {.lex_state = 2, .external_lex_state = 3}, [1308] = {.lex_state = 2, .external_lex_state = 3}, - [1309] = {.lex_state = 0, .external_lex_state = 3}, + [1309] = {.lex_state = 10, .external_lex_state = 3}, [1310] = {.lex_state = 2, .external_lex_state = 3}, - [1311] = {.lex_state = 0, .external_lex_state = 3}, - [1312] = {.lex_state = 0, .external_lex_state = 3}, + [1311] = {.lex_state = 10, .external_lex_state = 3}, + [1312] = {.lex_state = 2, .external_lex_state = 3}, [1313] = {.lex_state = 10, .external_lex_state = 3}, - [1314] = {.lex_state = 0, .external_lex_state = 3}, - [1315] = {.lex_state = 10, .external_lex_state = 3}, - [1316] = {.lex_state = 2, .external_lex_state = 3}, - [1317] = {.lex_state = 2, .external_lex_state = 3}, + [1314] = {.lex_state = 10, .external_lex_state = 3}, + [1315] = {.lex_state = 2, .external_lex_state = 3}, + [1316] = {.lex_state = 0, .external_lex_state = 3}, + [1317] = {.lex_state = 0, .external_lex_state = 3}, [1318] = {.lex_state = 2, .external_lex_state = 3}, - [1319] = {.lex_state = 10, .external_lex_state = 3}, - [1320] = {.lex_state = 10, .external_lex_state = 3}, + [1319] = {.lex_state = 0, .external_lex_state = 3}, + [1320] = {.lex_state = 0, .external_lex_state = 3}, [1321] = {.lex_state = 2, .external_lex_state = 3}, - [1322] = {.lex_state = 10, .external_lex_state = 3}, - [1323] = {.lex_state = 10, .external_lex_state = 3}, + [1322] = {.lex_state = 2, .external_lex_state = 3}, + [1323] = {.lex_state = 2, .external_lex_state = 3}, [1324] = {.lex_state = 2, .external_lex_state = 3}, [1325] = {.lex_state = 2, .external_lex_state = 3}, [1326] = {.lex_state = 2, .external_lex_state = 3}, @@ -12999,11 +13135,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1334] = {.lex_state = 2, .external_lex_state = 3}, [1335] = {.lex_state = 2, .external_lex_state = 3}, [1336] = {.lex_state = 2, .external_lex_state = 3}, - [1337] = {.lex_state = 2, .external_lex_state = 3}, + [1337] = {.lex_state = 10, .external_lex_state = 3}, [1338] = {.lex_state = 2, .external_lex_state = 3}, [1339] = {.lex_state = 2, .external_lex_state = 3}, [1340] = {.lex_state = 2, .external_lex_state = 3}, - [1341] = {.lex_state = 10, .external_lex_state = 3}, + [1341] = {.lex_state = 2, .external_lex_state = 3}, [1342] = {.lex_state = 2, .external_lex_state = 3}, [1343] = {.lex_state = 2, .external_lex_state = 3}, [1344] = {.lex_state = 2, .external_lex_state = 3}, @@ -13020,35 +13156,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1355] = {.lex_state = 2, .external_lex_state = 3}, [1356] = {.lex_state = 2, .external_lex_state = 3}, [1357] = {.lex_state = 2, .external_lex_state = 3}, - [1358] = {.lex_state = 9, .external_lex_state = 3}, + [1358] = {.lex_state = 2, .external_lex_state = 3}, [1359] = {.lex_state = 2, .external_lex_state = 3}, - [1360] = {.lex_state = 2, .external_lex_state = 3}, - [1361] = {.lex_state = 2, .external_lex_state = 3}, + [1360] = {.lex_state = 7, .external_lex_state = 3}, + [1361] = {.lex_state = 9, .external_lex_state = 3}, [1362] = {.lex_state = 2, .external_lex_state = 3}, - [1363] = {.lex_state = 2, .external_lex_state = 3}, - [1364] = {.lex_state = 0, .external_lex_state = 3}, - [1365] = {.lex_state = 9, .external_lex_state = 3}, - [1366] = {.lex_state = 2, .external_lex_state = 3}, + [1363] = {.lex_state = 55, .external_lex_state = 3}, + [1364] = {.lex_state = 2, .external_lex_state = 3}, + [1365] = {.lex_state = 2, .external_lex_state = 3}, + [1366] = {.lex_state = 7, .external_lex_state = 3}, [1367] = {.lex_state = 2, .external_lex_state = 3}, [1368] = {.lex_state = 2, .external_lex_state = 3}, - [1369] = {.lex_state = 0, .external_lex_state = 3}, + [1369] = {.lex_state = 9, .external_lex_state = 3}, [1370] = {.lex_state = 2, .external_lex_state = 3}, [1371] = {.lex_state = 2, .external_lex_state = 3}, [1372] = {.lex_state = 2, .external_lex_state = 3}, - [1373] = {.lex_state = 6, .external_lex_state = 3}, - [1374] = {.lex_state = 9, .external_lex_state = 3}, - [1375] = {.lex_state = 2, .external_lex_state = 3}, + [1373] = {.lex_state = 2, .external_lex_state = 3}, + [1374] = {.lex_state = 2, .external_lex_state = 3}, + [1375] = {.lex_state = 9, .external_lex_state = 3}, [1376] = {.lex_state = 2, .external_lex_state = 3}, - [1377] = {.lex_state = 0, .external_lex_state = 3}, - [1378] = {.lex_state = 2, .external_lex_state = 3}, + [1377] = {.lex_state = 2, .external_lex_state = 3}, + [1378] = {.lex_state = 6, .external_lex_state = 3}, [1379] = {.lex_state = 2, .external_lex_state = 3}, - [1380] = {.lex_state = 0, .external_lex_state = 3}, - [1381] = {.lex_state = 9, .external_lex_state = 3}, + [1380] = {.lex_state = 55, .external_lex_state = 3}, + [1381] = {.lex_state = 2, .external_lex_state = 3}, [1382] = {.lex_state = 2, .external_lex_state = 3}, [1383] = {.lex_state = 2, .external_lex_state = 3}, - [1384] = {.lex_state = 2, .external_lex_state = 3}, - [1385] = {.lex_state = 52, .external_lex_state = 3}, - [1386] = {.lex_state = 0, .external_lex_state = 3}, + [1384] = {.lex_state = 9, .external_lex_state = 3}, + [1385] = {.lex_state = 2, .external_lex_state = 3}, + [1386] = {.lex_state = 2, .external_lex_state = 3}, [1387] = {.lex_state = 2, .external_lex_state = 3}, [1388] = {.lex_state = 2, .external_lex_state = 3}, [1389] = {.lex_state = 2, .external_lex_state = 3}, @@ -13056,39 +13192,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1391] = {.lex_state = 2, .external_lex_state = 3}, [1392] = {.lex_state = 2, .external_lex_state = 3}, [1393] = {.lex_state = 2, .external_lex_state = 3}, - [1394] = {.lex_state = 2, .external_lex_state = 3}, - [1395] = {.lex_state = 2, .external_lex_state = 3}, - [1396] = {.lex_state = 0, .external_lex_state = 3}, + [1394] = {.lex_state = 0, .external_lex_state = 3}, + [1395] = {.lex_state = 6, .external_lex_state = 3}, + [1396] = {.lex_state = 2, .external_lex_state = 3}, [1397] = {.lex_state = 2, .external_lex_state = 3}, - [1398] = {.lex_state = 0, .external_lex_state = 3}, + [1398] = {.lex_state = 2, .external_lex_state = 3}, [1399] = {.lex_state = 2, .external_lex_state = 3}, - [1400] = {.lex_state = 7, .external_lex_state = 3}, + [1400] = {.lex_state = 9, .external_lex_state = 3}, [1401] = {.lex_state = 2, .external_lex_state = 3}, [1402] = {.lex_state = 2, .external_lex_state = 3}, - [1403] = {.lex_state = 2, .external_lex_state = 3}, + [1403] = {.lex_state = 0, .external_lex_state = 3}, [1404] = {.lex_state = 2, .external_lex_state = 3}, [1405] = {.lex_state = 2, .external_lex_state = 3}, - [1406] = {.lex_state = 9, .external_lex_state = 3}, - [1407] = {.lex_state = 2, .external_lex_state = 3}, - [1408] = {.lex_state = 2, .external_lex_state = 3}, - [1409] = {.lex_state = 7, .external_lex_state = 3}, - [1410] = {.lex_state = 0, .external_lex_state = 3}, + [1406] = {.lex_state = 0, .external_lex_state = 3}, + [1407] = {.lex_state = 0, .external_lex_state = 3}, + [1408] = {.lex_state = 0, .external_lex_state = 3}, + [1409] = {.lex_state = 2, .external_lex_state = 3}, + [1410] = {.lex_state = 2, .external_lex_state = 3}, [1411] = {.lex_state = 2, .external_lex_state = 3}, [1412] = {.lex_state = 0, .external_lex_state = 3}, - [1413] = {.lex_state = 52, .external_lex_state = 3}, + [1413] = {.lex_state = 2, .external_lex_state = 3}, [1414] = {.lex_state = 6, .external_lex_state = 3}, [1415] = {.lex_state = 2, .external_lex_state = 3}, - [1416] = {.lex_state = 2, .external_lex_state = 3}, - [1417] = {.lex_state = 2, .external_lex_state = 3}, - [1418] = {.lex_state = 6, .external_lex_state = 3}, - [1419] = {.lex_state = 2, .external_lex_state = 3}, - [1420] = {.lex_state = 2, .external_lex_state = 3}, + [1416] = {.lex_state = 0, .external_lex_state = 3}, + [1417] = {.lex_state = 6, .external_lex_state = 3}, + [1418] = {.lex_state = 9, .external_lex_state = 3}, + [1419] = {.lex_state = 0, .external_lex_state = 3}, + [1420] = {.lex_state = 0, .external_lex_state = 3}, [1421] = {.lex_state = 2, .external_lex_state = 3}, [1422] = {.lex_state = 2, .external_lex_state = 3}, - [1423] = {.lex_state = 6, .external_lex_state = 3}, + [1423] = {.lex_state = 2, .external_lex_state = 3}, [1424] = {.lex_state = 2, .external_lex_state = 3}, [1425] = {.lex_state = 2, .external_lex_state = 3}, - [1426] = {.lex_state = 9, .external_lex_state = 3}, + [1426] = {.lex_state = 2, .external_lex_state = 3}, [1427] = {.lex_state = 2, .external_lex_state = 3}, [1428] = {.lex_state = 2, .external_lex_state = 3}, [1429] = {.lex_state = 2, .external_lex_state = 3}, @@ -13097,217 +13233,217 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1432] = {.lex_state = 2, .external_lex_state = 3}, [1433] = {.lex_state = 2, .external_lex_state = 3}, [1434] = {.lex_state = 2, .external_lex_state = 3}, - [1435] = {.lex_state = 9, .external_lex_state = 3}, - [1436] = {.lex_state = 9, .external_lex_state = 3}, - [1437] = {.lex_state = 9, .external_lex_state = 3}, - [1438] = {.lex_state = 52, .external_lex_state = 3}, - [1439] = {.lex_state = 0, .external_lex_state = 3}, + [1435] = {.lex_state = 2, .external_lex_state = 3}, + [1436] = {.lex_state = 55, .external_lex_state = 3}, + [1437] = {.lex_state = 0, .external_lex_state = 3}, + [1438] = {.lex_state = 9, .external_lex_state = 3}, + [1439] = {.lex_state = 9, .external_lex_state = 3}, [1440] = {.lex_state = 2, .external_lex_state = 3}, - [1441] = {.lex_state = 2, .external_lex_state = 3}, - [1442] = {.lex_state = 2, .external_lex_state = 3}, + [1441] = {.lex_state = 55, .external_lex_state = 3}, + [1442] = {.lex_state = 55, .external_lex_state = 3}, [1443] = {.lex_state = 0, .external_lex_state = 3}, - [1444] = {.lex_state = 0, .external_lex_state = 3}, - [1445] = {.lex_state = 52, .external_lex_state = 3}, + [1444] = {.lex_state = 2, .external_lex_state = 3}, + [1445] = {.lex_state = 9, .external_lex_state = 3}, [1446] = {.lex_state = 9, .external_lex_state = 3}, - [1447] = {.lex_state = 0, .external_lex_state = 3}, - [1448] = {.lex_state = 9, .external_lex_state = 3}, - [1449] = {.lex_state = 9, .external_lex_state = 3}, - [1450] = {.lex_state = 0, .external_lex_state = 3}, - [1451] = {.lex_state = 9, .external_lex_state = 3}, - [1452] = {.lex_state = 0, .external_lex_state = 3}, - [1453] = {.lex_state = 0, .external_lex_state = 3}, - [1454] = {.lex_state = 0, .external_lex_state = 3}, - [1455] = {.lex_state = 9, .external_lex_state = 3}, - [1456] = {.lex_state = 2, .external_lex_state = 3}, + [1447] = {.lex_state = 9, .external_lex_state = 3}, + [1448] = {.lex_state = 55, .external_lex_state = 3}, + [1449] = {.lex_state = 55, .external_lex_state = 3}, + [1450] = {.lex_state = 9, .external_lex_state = 3}, + [1451] = {.lex_state = 2, .external_lex_state = 3}, + [1452] = {.lex_state = 9, .external_lex_state = 3}, + [1453] = {.lex_state = 2, .external_lex_state = 3}, + [1454] = {.lex_state = 2, .external_lex_state = 3}, + [1455] = {.lex_state = 0, .external_lex_state = 3}, + [1456] = {.lex_state = 9, .external_lex_state = 3}, [1457] = {.lex_state = 2, .external_lex_state = 3}, - [1458] = {.lex_state = 9, .external_lex_state = 3}, - [1459] = {.lex_state = 2, .external_lex_state = 3}, + [1458] = {.lex_state = 2, .external_lex_state = 3}, + [1459] = {.lex_state = 0, .external_lex_state = 3}, [1460] = {.lex_state = 2, .external_lex_state = 3}, [1461] = {.lex_state = 9, .external_lex_state = 3}, - [1462] = {.lex_state = 52, .external_lex_state = 3}, - [1463] = {.lex_state = 52, .external_lex_state = 3}, - [1464] = {.lex_state = 0, .external_lex_state = 3}, - [1465] = {.lex_state = 0, .external_lex_state = 3}, - [1466] = {.lex_state = 0, .external_lex_state = 3}, + [1462] = {.lex_state = 2, .external_lex_state = 3}, + [1463] = {.lex_state = 55, .external_lex_state = 3}, + [1464] = {.lex_state = 9, .external_lex_state = 3}, + [1465] = {.lex_state = 9, .external_lex_state = 3}, + [1466] = {.lex_state = 2, .external_lex_state = 3}, [1467] = {.lex_state = 2, .external_lex_state = 3}, - [1468] = {.lex_state = 9, .external_lex_state = 3}, - [1469] = {.lex_state = 0, .external_lex_state = 3}, + [1468] = {.lex_state = 0, .external_lex_state = 3}, + [1469] = {.lex_state = 2, .external_lex_state = 3}, [1470] = {.lex_state = 0, .external_lex_state = 3}, - [1471] = {.lex_state = 2, .external_lex_state = 3}, - [1472] = {.lex_state = 2, .external_lex_state = 3}, + [1471] = {.lex_state = 9, .external_lex_state = 3}, + [1472] = {.lex_state = 0, .external_lex_state = 3}, [1473] = {.lex_state = 9, .external_lex_state = 3}, [1474] = {.lex_state = 2, .external_lex_state = 3}, - [1475] = {.lex_state = 2, .external_lex_state = 3}, - [1476] = {.lex_state = 0, .external_lex_state = 3}, - [1477] = {.lex_state = 0, .external_lex_state = 3}, - [1478] = {.lex_state = 2, .external_lex_state = 3}, - [1479] = {.lex_state = 52, .external_lex_state = 3}, + [1475] = {.lex_state = 0, .external_lex_state = 3}, + [1476] = {.lex_state = 55, .external_lex_state = 3}, + [1477] = {.lex_state = 2, .external_lex_state = 3}, + [1478] = {.lex_state = 55, .external_lex_state = 3}, + [1479] = {.lex_state = 0, .external_lex_state = 3}, [1480] = {.lex_state = 2, .external_lex_state = 3}, - [1481] = {.lex_state = 9, .external_lex_state = 3}, - [1482] = {.lex_state = 52, .external_lex_state = 3}, - [1483] = {.lex_state = 2, .external_lex_state = 3}, - [1484] = {.lex_state = 0, .external_lex_state = 3}, - [1485] = {.lex_state = 0, .external_lex_state = 3}, - [1486] = {.lex_state = 0, .external_lex_state = 3}, - [1487] = {.lex_state = 6, .external_lex_state = 3}, + [1481] = {.lex_state = 55, .external_lex_state = 3}, + [1482] = {.lex_state = 0, .external_lex_state = 3}, + [1483] = {.lex_state = 0, .external_lex_state = 3}, + [1484] = {.lex_state = 55, .external_lex_state = 3}, + [1485] = {.lex_state = 9, .external_lex_state = 3}, + [1486] = {.lex_state = 2, .external_lex_state = 3}, + [1487] = {.lex_state = 9, .external_lex_state = 3}, [1488] = {.lex_state = 2, .external_lex_state = 3}, - [1489] = {.lex_state = 2, .external_lex_state = 3}, - [1490] = {.lex_state = 0, .external_lex_state = 3}, - [1491] = {.lex_state = 0, .external_lex_state = 3}, + [1489] = {.lex_state = 0, .external_lex_state = 3}, + [1490] = {.lex_state = 2, .external_lex_state = 4}, + [1491] = {.lex_state = 2, .external_lex_state = 3}, [1492] = {.lex_state = 2, .external_lex_state = 3}, [1493] = {.lex_state = 2, .external_lex_state = 3}, - [1494] = {.lex_state = 2, .external_lex_state = 3}, + [1494] = {.lex_state = 55, .external_lex_state = 3}, [1495] = {.lex_state = 0, .external_lex_state = 3}, - [1496] = {.lex_state = 52, .external_lex_state = 3}, - [1497] = {.lex_state = 0, .external_lex_state = 3}, + [1496] = {.lex_state = 2, .external_lex_state = 3}, + [1497] = {.lex_state = 2, .external_lex_state = 3}, [1498] = {.lex_state = 2, .external_lex_state = 3}, - [1499] = {.lex_state = 2, .external_lex_state = 4}, - [1500] = {.lex_state = 0, .external_lex_state = 3}, - [1501] = {.lex_state = 9, .external_lex_state = 3}, - [1502] = {.lex_state = 9, .external_lex_state = 3}, - [1503] = {.lex_state = 52, .external_lex_state = 3}, - [1504] = {.lex_state = 9, .external_lex_state = 3}, - [1505] = {.lex_state = 52, .external_lex_state = 3}, - [1506] = {.lex_state = 52, .external_lex_state = 3}, - [1507] = {.lex_state = 0, .external_lex_state = 3}, - [1508] = {.lex_state = 0, .external_lex_state = 3}, - [1509] = {.lex_state = 2, .external_lex_state = 3}, + [1499] = {.lex_state = 9, .external_lex_state = 3}, + [1500] = {.lex_state = 2, .external_lex_state = 3}, + [1501] = {.lex_state = 2, .external_lex_state = 4}, + [1502] = {.lex_state = 0, .external_lex_state = 3}, + [1503] = {.lex_state = 2, .external_lex_state = 3}, + [1504] = {.lex_state = 55, .external_lex_state = 3}, + [1505] = {.lex_state = 2, .external_lex_state = 3}, + [1506] = {.lex_state = 2, .external_lex_state = 4}, + [1507] = {.lex_state = 6, .external_lex_state = 3}, + [1508] = {.lex_state = 55, .external_lex_state = 3}, + [1509] = {.lex_state = 0, .external_lex_state = 3}, [1510] = {.lex_state = 0, .external_lex_state = 3}, - [1511] = {.lex_state = 52, .external_lex_state = 3}, - [1512] = {.lex_state = 0, .external_lex_state = 3}, - [1513] = {.lex_state = 52, .external_lex_state = 3}, + [1511] = {.lex_state = 0, .external_lex_state = 3}, + [1512] = {.lex_state = 2, .external_lex_state = 3}, + [1513] = {.lex_state = 2, .external_lex_state = 3}, [1514] = {.lex_state = 2, .external_lex_state = 4}, [1515] = {.lex_state = 2, .external_lex_state = 3}, - [1516] = {.lex_state = 2, .external_lex_state = 3}, - [1517] = {.lex_state = 2, .external_lex_state = 3}, - [1518] = {.lex_state = 0, .external_lex_state = 3}, - [1519] = {.lex_state = 2, .external_lex_state = 3}, - [1520] = {.lex_state = 2, .external_lex_state = 3}, + [1516] = {.lex_state = 2, .external_lex_state = 4}, + [1517] = {.lex_state = 9, .external_lex_state = 3}, + [1518] = {.lex_state = 2, .external_lex_state = 3}, + [1519] = {.lex_state = 2, .external_lex_state = 4}, + [1520] = {.lex_state = 55, .external_lex_state = 3}, [1521] = {.lex_state = 2, .external_lex_state = 3}, - [1522] = {.lex_state = 2, .external_lex_state = 3}, - [1523] = {.lex_state = 0, .external_lex_state = 3}, - [1524] = {.lex_state = 9, .external_lex_state = 3}, + [1522] = {.lex_state = 0, .external_lex_state = 3}, + [1523] = {.lex_state = 55, .external_lex_state = 3}, + [1524] = {.lex_state = 0, .external_lex_state = 3}, [1525] = {.lex_state = 2, .external_lex_state = 3}, [1526] = {.lex_state = 2, .external_lex_state = 3}, - [1527] = {.lex_state = 6, .external_lex_state = 3}, - [1528] = {.lex_state = 52, .external_lex_state = 3}, - [1529] = {.lex_state = 9, .external_lex_state = 3}, - [1530] = {.lex_state = 0, .external_lex_state = 3}, + [1527] = {.lex_state = 2, .external_lex_state = 3}, + [1528] = {.lex_state = 2, .external_lex_state = 3}, + [1529] = {.lex_state = 2, .external_lex_state = 3}, + [1530] = {.lex_state = 2, .external_lex_state = 3}, [1531] = {.lex_state = 2, .external_lex_state = 3}, [1532] = {.lex_state = 2, .external_lex_state = 3}, - [1533] = {.lex_state = 2, .external_lex_state = 3}, - [1534] = {.lex_state = 52, .external_lex_state = 3}, - [1535] = {.lex_state = 2, .external_lex_state = 3}, - [1536] = {.lex_state = 2, .external_lex_state = 3}, + [1533] = {.lex_state = 55, .external_lex_state = 3}, + [1534] = {.lex_state = 2, .external_lex_state = 3}, + [1535] = {.lex_state = 6, .external_lex_state = 3}, + [1536] = {.lex_state = 9, .external_lex_state = 3}, [1537] = {.lex_state = 2, .external_lex_state = 3}, - [1538] = {.lex_state = 2, .external_lex_state = 3}, - [1539] = {.lex_state = 2, .external_lex_state = 3}, - [1540] = {.lex_state = 52, .external_lex_state = 3}, - [1541] = {.lex_state = 0, .external_lex_state = 3}, + [1538] = {.lex_state = 0, .external_lex_state = 3}, + [1539] = {.lex_state = 0, .external_lex_state = 3}, + [1540] = {.lex_state = 2, .external_lex_state = 4}, + [1541] = {.lex_state = 55, .external_lex_state = 3}, [1542] = {.lex_state = 2, .external_lex_state = 3}, - [1543] = {.lex_state = 52, .external_lex_state = 3}, + [1543] = {.lex_state = 55, .external_lex_state = 3}, [1544] = {.lex_state = 2, .external_lex_state = 3}, - [1545] = {.lex_state = 52, .external_lex_state = 3}, + [1545] = {.lex_state = 55, .external_lex_state = 3}, [1546] = {.lex_state = 2, .external_lex_state = 3}, - [1547] = {.lex_state = 2, .external_lex_state = 4}, - [1548] = {.lex_state = 2, .external_lex_state = 4}, + [1547] = {.lex_state = 0, .external_lex_state = 3}, + [1548] = {.lex_state = 0, .external_lex_state = 3}, [1549] = {.lex_state = 0, .external_lex_state = 3}, - [1550] = {.lex_state = 2, .external_lex_state = 3}, - [1551] = {.lex_state = 2, .external_lex_state = 3}, - [1552] = {.lex_state = 2, .external_lex_state = 4}, - [1553] = {.lex_state = 52, .external_lex_state = 3}, - [1554] = {.lex_state = 2, .external_lex_state = 4}, - [1555] = {.lex_state = 2, .external_lex_state = 3}, - [1556] = {.lex_state = 2, .external_lex_state = 3}, - [1557] = {.lex_state = 2, .external_lex_state = 3}, - [1558] = {.lex_state = 2, .external_lex_state = 3}, - [1559] = {.lex_state = 9, .external_lex_state = 3}, - [1560] = {.lex_state = 2, .external_lex_state = 3}, + [1550] = {.lex_state = 0, .external_lex_state = 3}, + [1551] = {.lex_state = 0, .external_lex_state = 3}, + [1552] = {.lex_state = 2, .external_lex_state = 3}, + [1553] = {.lex_state = 9, .external_lex_state = 3}, + [1554] = {.lex_state = 0, .external_lex_state = 3}, + [1555] = {.lex_state = 55, .external_lex_state = 3}, + [1556] = {.lex_state = 0, .external_lex_state = 3}, + [1557] = {.lex_state = 0, .external_lex_state = 3}, + [1558] = {.lex_state = 0, .external_lex_state = 3}, + [1559] = {.lex_state = 6, .external_lex_state = 3}, + [1560] = {.lex_state = 0, .external_lex_state = 3}, [1561] = {.lex_state = 0, .external_lex_state = 3}, - [1562] = {.lex_state = 2, .external_lex_state = 3}, + [1562] = {.lex_state = 0, .external_lex_state = 3}, [1563] = {.lex_state = 0, .external_lex_state = 3}, - [1564] = {.lex_state = 2, .external_lex_state = 3}, - [1565] = {.lex_state = 2, .external_lex_state = 4}, - [1566] = {.lex_state = 52, .external_lex_state = 3}, - [1567] = {.lex_state = 0, .external_lex_state = 3}, - [1568] = {.lex_state = 52, .external_lex_state = 3}, + [1564] = {.lex_state = 6, .external_lex_state = 3}, + [1565] = {.lex_state = 6, .external_lex_state = 3}, + [1566] = {.lex_state = 0, .external_lex_state = 3}, + [1567] = {.lex_state = 6, .external_lex_state = 3}, + [1568] = {.lex_state = 0, .external_lex_state = 3}, [1569] = {.lex_state = 0, .external_lex_state = 3}, [1570] = {.lex_state = 0, .external_lex_state = 3}, [1571] = {.lex_state = 0, .external_lex_state = 3}, [1572] = {.lex_state = 0, .external_lex_state = 3}, [1573] = {.lex_state = 0, .external_lex_state = 3}, [1574] = {.lex_state = 0, .external_lex_state = 3}, - [1575] = {.lex_state = 2, .external_lex_state = 3}, + [1575] = {.lex_state = 0, .external_lex_state = 3}, [1576] = {.lex_state = 0, .external_lex_state = 3}, [1577] = {.lex_state = 0, .external_lex_state = 3}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, - [1579] = {.lex_state = 0, .external_lex_state = 3}, - [1580] = {.lex_state = 7, .external_lex_state = 3}, + [1578] = {.lex_state = 0, .external_lex_state = 3}, + [1579] = {.lex_state = 7, .external_lex_state = 3}, + [1580] = {.lex_state = 6, .external_lex_state = 3}, [1581] = {.lex_state = 0, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 52, .external_lex_state = 3}, + [1582] = {.lex_state = 0, .external_lex_state = 3}, + [1583] = {.lex_state = 55, .external_lex_state = 3}, [1584] = {.lex_state = 0, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 52, .external_lex_state = 3}, - [1587] = {.lex_state = 52, .external_lex_state = 3}, + [1585] = {.lex_state = 0, .external_lex_state = 3}, + [1586] = {.lex_state = 7, .external_lex_state = 3}, + [1587] = {.lex_state = 0, .external_lex_state = 3}, [1588] = {.lex_state = 0, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, + [1589] = {.lex_state = 0, .external_lex_state = 3}, [1590] = {.lex_state = 0, .external_lex_state = 3}, - [1591] = {.lex_state = 0, .external_lex_state = 3}, + [1591] = {.lex_state = 7, .external_lex_state = 3}, [1592] = {.lex_state = 0, .external_lex_state = 3}, - [1593] = {.lex_state = 0, .external_lex_state = 3}, + [1593] = {.lex_state = 7, .external_lex_state = 3}, [1594] = {.lex_state = 0, .external_lex_state = 3}, - [1595] = {.lex_state = 0, .external_lex_state = 3}, - [1596] = {.lex_state = 0, .external_lex_state = 3}, + [1595] = {.lex_state = 6, .external_lex_state = 3}, + [1596] = {.lex_state = 7, .external_lex_state = 3}, [1597] = {.lex_state = 0, .external_lex_state = 3}, - [1598] = {.lex_state = 7, .external_lex_state = 3}, - [1599] = {.lex_state = 52, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 6, .external_lex_state = 3}, - [1603] = {.lex_state = 0, .external_lex_state = 3}, - [1604] = {.lex_state = 0, .external_lex_state = 3}, + [1598] = {.lex_state = 0, .external_lex_state = 3}, + [1599] = {.lex_state = 7, .external_lex_state = 3}, + [1600] = {.lex_state = 55, .external_lex_state = 3}, + [1601] = {.lex_state = 0, .external_lex_state = 3}, + [1602] = {.lex_state = 55, .external_lex_state = 3}, + [1603] = {.lex_state = 55, .external_lex_state = 3}, + [1604] = {.lex_state = 55, .external_lex_state = 3}, [1605] = {.lex_state = 0, .external_lex_state = 3}, [1606] = {.lex_state = 0, .external_lex_state = 3}, [1607] = {.lex_state = 0, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 3}, + [1608] = {.lex_state = 0, .external_lex_state = 3}, [1609] = {.lex_state = 0, .external_lex_state = 3}, - [1610] = {.lex_state = 7, .external_lex_state = 3}, + [1610] = {.lex_state = 0, .external_lex_state = 3}, [1611] = {.lex_state = 0, .external_lex_state = 3}, - [1612] = {.lex_state = 0, .external_lex_state = 3}, - [1613] = {.lex_state = 0, .external_lex_state = 3}, + [1612] = {.lex_state = 7, .external_lex_state = 3}, + [1613] = {.lex_state = 55, .external_lex_state = 3}, [1614] = {.lex_state = 0, .external_lex_state = 3}, - [1615] = {.lex_state = 0, .external_lex_state = 3}, - [1616] = {.lex_state = 0, .external_lex_state = 3}, - [1617] = {.lex_state = 2, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 0, .external_lex_state = 3}, - [1621] = {.lex_state = 52, .external_lex_state = 3}, - [1622] = {.lex_state = 52, .external_lex_state = 3}, - [1623] = {.lex_state = 0, .external_lex_state = 3}, + [1615] = {.lex_state = 2, .external_lex_state = 3}, + [1616] = {.lex_state = 7, .external_lex_state = 3}, + [1617] = {.lex_state = 0, .external_lex_state = 3}, + [1618] = {.lex_state = 6, .external_lex_state = 3}, + [1619] = {.lex_state = 0, .external_lex_state = 3}, + [1620] = {.lex_state = 7, .external_lex_state = 3}, + [1621] = {.lex_state = 0, .external_lex_state = 3}, + [1622] = {.lex_state = 2, .external_lex_state = 3}, + [1623] = {.lex_state = 6, .external_lex_state = 3}, [1624] = {.lex_state = 0, .external_lex_state = 3}, - [1625] = {.lex_state = 6, .external_lex_state = 3}, + [1625] = {.lex_state = 0, .external_lex_state = 3}, [1626] = {.lex_state = 6, .external_lex_state = 3}, - [1627] = {.lex_state = 0, .external_lex_state = 3}, - [1628] = {.lex_state = 2, .external_lex_state = 3}, - [1629] = {.lex_state = 52, .external_lex_state = 3}, - [1630] = {.lex_state = 0, .external_lex_state = 3}, - [1631] = {.lex_state = 0, .external_lex_state = 3}, - [1632] = {.lex_state = 0, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 3}, + [1627] = {.lex_state = 6, .external_lex_state = 3}, + [1628] = {.lex_state = 55, .external_lex_state = 3}, + [1629] = {.lex_state = 55, .external_lex_state = 3}, + [1630] = {.lex_state = 9, .external_lex_state = 3}, + [1631] = {.lex_state = 7, .external_lex_state = 3}, + [1632] = {.lex_state = 55, .external_lex_state = 3}, + [1633] = {.lex_state = 55, .external_lex_state = 3}, [1634] = {.lex_state = 0, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 3}, + [1635] = {.lex_state = 0, .external_lex_state = 3}, [1636] = {.lex_state = 0, .external_lex_state = 3}, [1637] = {.lex_state = 0, .external_lex_state = 3}, - [1638] = {.lex_state = 0, .external_lex_state = 3}, + [1638] = {.lex_state = 7, .external_lex_state = 3}, [1639] = {.lex_state = 0, .external_lex_state = 3}, [1640] = {.lex_state = 0, .external_lex_state = 3}, - [1641] = {.lex_state = 52, .external_lex_state = 3}, + [1641] = {.lex_state = 0, .external_lex_state = 3}, [1642] = {.lex_state = 0, .external_lex_state = 3}, - [1643] = {.lex_state = 2, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 52, .external_lex_state = 3}, + [1643] = {.lex_state = 0, .external_lex_state = 3}, + [1644] = {.lex_state = 0, .external_lex_state = 3}, + [1645] = {.lex_state = 0, .external_lex_state = 3}, [1646] = {.lex_state = 0, .external_lex_state = 3}, [1647] = {.lex_state = 0, .external_lex_state = 3}, [1648] = {.lex_state = 0, .external_lex_state = 3}, @@ -13315,45 +13451,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1650] = {.lex_state = 0, .external_lex_state = 3}, [1651] = {.lex_state = 0, .external_lex_state = 3}, [1652] = {.lex_state = 0, .external_lex_state = 3}, - [1653] = {.lex_state = 0, .external_lex_state = 3}, - [1654] = {.lex_state = 0, .external_lex_state = 3}, + [1653] = {.lex_state = 2, .external_lex_state = 3}, + [1654] = {.lex_state = 55, .external_lex_state = 3}, [1655] = {.lex_state = 0, .external_lex_state = 3}, - [1656] = {.lex_state = 0, .external_lex_state = 3}, + [1656] = {.lex_state = 2, .external_lex_state = 3}, [1657] = {.lex_state = 0, .external_lex_state = 3}, - [1658] = {.lex_state = 52, .external_lex_state = 3}, + [1658] = {.lex_state = 55, .external_lex_state = 3}, [1659] = {.lex_state = 0, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, + [1660] = {.lex_state = 2, .external_lex_state = 3}, [1661] = {.lex_state = 0, .external_lex_state = 3}, [1662] = {.lex_state = 0, .external_lex_state = 3}, - [1663] = {.lex_state = 0, .external_lex_state = 3}, - [1664] = {.lex_state = 52, .external_lex_state = 3}, + [1663] = {.lex_state = 55, .external_lex_state = 3}, + [1664] = {.lex_state = 0, .external_lex_state = 3}, [1665] = {.lex_state = 0, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 3}, - [1667] = {.lex_state = 52, .external_lex_state = 3}, - [1668] = {.lex_state = 52, .external_lex_state = 3}, - [1669] = {.lex_state = 0, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, + [1666] = {.lex_state = 0, .external_lex_state = 3}, + [1667] = {.lex_state = 0, .external_lex_state = 3}, + [1668] = {.lex_state = 2, .external_lex_state = 3}, + [1669] = {.lex_state = 55, .external_lex_state = 3}, + [1670] = {.lex_state = 2, .external_lex_state = 3}, [1671] = {.lex_state = 0, .external_lex_state = 3}, [1672] = {.lex_state = 0, .external_lex_state = 3}, [1673] = {.lex_state = 0, .external_lex_state = 3}, - [1674] = {.lex_state = 0, .external_lex_state = 3}, - [1675] = {.lex_state = 0, .external_lex_state = 3}, + [1674] = {.lex_state = 2, .external_lex_state = 3}, + [1675] = {.lex_state = 7, .external_lex_state = 3}, [1676] = {.lex_state = 0, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, - [1678] = {.lex_state = 52, .external_lex_state = 3}, - [1679] = {.lex_state = 2, .external_lex_state = 3}, - [1680] = {.lex_state = 2, .external_lex_state = 3}, + [1677] = {.lex_state = 0, .external_lex_state = 3}, + [1678] = {.lex_state = 0, .external_lex_state = 3}, + [1679] = {.lex_state = 0, .external_lex_state = 3}, + [1680] = {.lex_state = 0, .external_lex_state = 3}, [1681] = {.lex_state = 0, .external_lex_state = 3}, [1682] = {.lex_state = 0, .external_lex_state = 3}, [1683] = {.lex_state = 0, .external_lex_state = 3}, - [1684] = {.lex_state = 0, .external_lex_state = 3}, - [1685] = {.lex_state = 6, .external_lex_state = 3}, - [1686] = {.lex_state = 2, .external_lex_state = 3}, + [1684] = {.lex_state = 55, .external_lex_state = 3}, + [1685] = {.lex_state = 0, .external_lex_state = 3}, + [1686] = {.lex_state = 0, .external_lex_state = 3}, [1687] = {.lex_state = 0, .external_lex_state = 3}, - [1688] = {.lex_state = 6, .external_lex_state = 3}, - [1689] = {.lex_state = 0, .external_lex_state = 3}, + [1688] = {.lex_state = 2, .external_lex_state = 3}, + [1689] = {.lex_state = 7, .external_lex_state = 3}, [1690] = {.lex_state = 0, .external_lex_state = 3}, - [1691] = {.lex_state = 0, .external_lex_state = 3}, + [1691] = {.lex_state = 7, .external_lex_state = 3}, [1692] = {.lex_state = 0, .external_lex_state = 3}, [1693] = {.lex_state = 0, .external_lex_state = 3}, [1694] = {.lex_state = 6, .external_lex_state = 3}, @@ -13362,491 +13498,504 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1697] = {.lex_state = 0, .external_lex_state = 3}, [1698] = {.lex_state = 0, .external_lex_state = 3}, [1699] = {.lex_state = 0, .external_lex_state = 3}, - [1700] = {.lex_state = 2, .external_lex_state = 3}, - [1701] = {.lex_state = 0, .external_lex_state = 3}, - [1702] = {.lex_state = 0, .external_lex_state = 3}, + [1700] = {.lex_state = 6, .external_lex_state = 3}, + [1701] = {.lex_state = 55, .external_lex_state = 3}, + [1702] = {.lex_state = 55, .external_lex_state = 3}, [1703] = {.lex_state = 0, .external_lex_state = 3}, [1704] = {.lex_state = 0, .external_lex_state = 3}, - [1705] = {.lex_state = 0, .external_lex_state = 3}, + [1705] = {.lex_state = 55, .external_lex_state = 3}, [1706] = {.lex_state = 0, .external_lex_state = 3}, - [1707] = {.lex_state = 52, .external_lex_state = 3}, - [1708] = {.lex_state = 0, .external_lex_state = 3}, - [1709] = {.lex_state = 52, .external_lex_state = 3}, + [1707] = {.lex_state = 7, .external_lex_state = 3}, + [1708] = {.lex_state = 55, .external_lex_state = 3}, + [1709] = {.lex_state = 55, .external_lex_state = 3}, [1710] = {.lex_state = 0, .external_lex_state = 3}, [1711] = {.lex_state = 0, .external_lex_state = 3}, - [1712] = {.lex_state = 6, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, + [1712] = {.lex_state = 55, .external_lex_state = 3}, + [1713] = {.lex_state = 0, .external_lex_state = 3}, [1714] = {.lex_state = 0, .external_lex_state = 3}, - [1715] = {.lex_state = 0, .external_lex_state = 3}, - [1716] = {.lex_state = 0, .external_lex_state = 3}, - [1717] = {.lex_state = 0, .external_lex_state = 3}, + [1715] = {.lex_state = 7, .external_lex_state = 3}, + [1716] = {.lex_state = 6, .external_lex_state = 3}, + [1717] = {.lex_state = 7, .external_lex_state = 3}, [1718] = {.lex_state = 0, .external_lex_state = 3}, - [1719] = {.lex_state = 7, .external_lex_state = 3}, - [1720] = {.lex_state = 0, .external_lex_state = 3}, + [1719] = {.lex_state = 0, .external_lex_state = 3}, + [1720] = {.lex_state = 9, .external_lex_state = 3}, [1721] = {.lex_state = 0, .external_lex_state = 3}, - [1722] = {.lex_state = 0, .external_lex_state = 3}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, + [1722] = {.lex_state = 7, .external_lex_state = 3}, + [1723] = {.lex_state = 0, .external_lex_state = 3}, [1724] = {.lex_state = 0, .external_lex_state = 3}, [1725] = {.lex_state = 0, .external_lex_state = 3}, [1726] = {.lex_state = 7, .external_lex_state = 3}, - [1727] = {.lex_state = 0, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 3}, - [1729] = {.lex_state = 6, .external_lex_state = 3}, - [1730] = {.lex_state = 6, .external_lex_state = 3}, - [1731] = {.lex_state = 7, .external_lex_state = 3}, + [1727] = {.lex_state = 55, .external_lex_state = 3}, + [1728] = {.lex_state = 2, .external_lex_state = 3}, + [1729] = {.lex_state = 7, .external_lex_state = 3}, + [1730] = {.lex_state = 0, .external_lex_state = 3}, + [1731] = {.lex_state = 0, .external_lex_state = 3}, [1732] = {.lex_state = 0, .external_lex_state = 3}, - [1733] = {.lex_state = 52, .external_lex_state = 3}, + [1733] = {.lex_state = 0, .external_lex_state = 3}, [1734] = {.lex_state = 0, .external_lex_state = 3}, [1735] = {.lex_state = 0, .external_lex_state = 3}, - [1736] = {.lex_state = 0, .external_lex_state = 3}, - [1737] = {.lex_state = 0, .external_lex_state = 3}, + [1736] = {.lex_state = 2, .external_lex_state = 3}, + [1737] = {.lex_state = 7, .external_lex_state = 3}, [1738] = {.lex_state = 0, .external_lex_state = 3}, [1739] = {.lex_state = 0, .external_lex_state = 3}, - [1740] = {.lex_state = 7, .external_lex_state = 3}, - [1741] = {.lex_state = 0, .external_lex_state = 3}, - [1742] = {.lex_state = 52, .external_lex_state = 3}, + [1740] = {.lex_state = 0, .external_lex_state = 3}, + [1741] = {.lex_state = 7, .external_lex_state = 3}, + [1742] = {.lex_state = 0, .external_lex_state = 3}, [1743] = {.lex_state = 0, .external_lex_state = 3}, - [1744] = {.lex_state = 7, .external_lex_state = 3}, - [1745] = {.lex_state = 0, .external_lex_state = 3}, - [1746] = {.lex_state = 0, .external_lex_state = 3}, - [1747] = {.lex_state = 0, .external_lex_state = 3}, - [1748] = {.lex_state = 6, .external_lex_state = 3}, - [1749] = {.lex_state = 52, .external_lex_state = 3}, - [1750] = {.lex_state = 6, .external_lex_state = 3}, + [1744] = {.lex_state = 6, .external_lex_state = 3}, + [1745] = {.lex_state = 7, .external_lex_state = 3}, + [1746] = {.lex_state = 55, .external_lex_state = 3}, + [1747] = {.lex_state = 6, .external_lex_state = 3}, + [1748] = {.lex_state = 7, .external_lex_state = 3}, + [1749] = {.lex_state = 0, .external_lex_state = 3}, + [1750] = {.lex_state = 0, .external_lex_state = 3}, [1751] = {.lex_state = 0, .external_lex_state = 3}, - [1752] = {.lex_state = 2, .external_lex_state = 3}, + [1752] = {.lex_state = 0, .external_lex_state = 3}, [1753] = {.lex_state = 0, .external_lex_state = 3}, - [1754] = {.lex_state = 52, .external_lex_state = 3}, + [1754] = {.lex_state = 0, .external_lex_state = 3}, [1755] = {.lex_state = 0, .external_lex_state = 3}, [1756] = {.lex_state = 0, .external_lex_state = 3}, [1757] = {.lex_state = 0, .external_lex_state = 3}, [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 0, .external_lex_state = 3}, + [1759] = {.lex_state = 2, .external_lex_state = 3}, [1760] = {.lex_state = 0, .external_lex_state = 3}, - [1761] = {.lex_state = 0, .external_lex_state = 3}, + [1761] = {.lex_state = 55, .external_lex_state = 3}, [1762] = {.lex_state = 2, .external_lex_state = 3}, - [1763] = {.lex_state = 6, .external_lex_state = 3}, - [1764] = {.lex_state = 2, .external_lex_state = 3}, + [1763] = {.lex_state = 0, .external_lex_state = 3}, + [1764] = {.lex_state = 0, .external_lex_state = 3}, [1765] = {.lex_state = 0, .external_lex_state = 3}, [1766] = {.lex_state = 0, .external_lex_state = 3}, [1767] = {.lex_state = 0, .external_lex_state = 3}, - [1768] = {.lex_state = 0, .external_lex_state = 3}, - [1769] = {.lex_state = 0, .external_lex_state = 3}, - [1770] = {.lex_state = 0, .external_lex_state = 3}, + [1768] = {.lex_state = 7, .external_lex_state = 3}, + [1769] = {.lex_state = 6, .external_lex_state = 3}, + [1770] = {.lex_state = 55, .external_lex_state = 3}, [1771] = {.lex_state = 0, .external_lex_state = 3}, - [1772] = {.lex_state = 6, .external_lex_state = 3}, - [1773] = {.lex_state = 2, .external_lex_state = 3}, - [1774] = {.lex_state = 0, .external_lex_state = 3}, - [1775] = {.lex_state = 0, .external_lex_state = 3}, - [1776] = {.lex_state = 9, .external_lex_state = 3}, - [1777] = {.lex_state = 7, .external_lex_state = 3}, - [1778] = {.lex_state = 52, .external_lex_state = 3}, - [1779] = {.lex_state = 52, .external_lex_state = 3}, - [1780] = {.lex_state = 52, .external_lex_state = 3}, - [1781] = {.lex_state = 0, .external_lex_state = 3}, + [1772] = {.lex_state = 0, .external_lex_state = 3}, + [1773] = {.lex_state = 55, .external_lex_state = 3}, + [1774] = {.lex_state = 55, .external_lex_state = 3}, + [1775] = {.lex_state = 7, .external_lex_state = 3}, + [1776] = {.lex_state = 55, .external_lex_state = 3}, + [1777] = {.lex_state = 0, .external_lex_state = 3}, + [1778] = {.lex_state = 0, .external_lex_state = 3}, + [1779] = {.lex_state = 0, .external_lex_state = 3}, + [1780] = {.lex_state = 0, .external_lex_state = 3}, + [1781] = {.lex_state = 7, .external_lex_state = 3}, [1782] = {.lex_state = 0, .external_lex_state = 3}, [1783] = {.lex_state = 0, .external_lex_state = 3}, [1784] = {.lex_state = 0, .external_lex_state = 3}, [1785] = {.lex_state = 0, .external_lex_state = 3}, - [1786] = {.lex_state = 0, .external_lex_state = 3}, - [1787] = {.lex_state = 9, .external_lex_state = 3}, + [1786] = {.lex_state = 6, .external_lex_state = 3}, + [1787] = {.lex_state = 55, .external_lex_state = 3}, [1788] = {.lex_state = 0, .external_lex_state = 3}, [1789] = {.lex_state = 0, .external_lex_state = 3}, [1790] = {.lex_state = 0, .external_lex_state = 3}, [1791] = {.lex_state = 0, .external_lex_state = 3}, - [1792] = {.lex_state = 52, .external_lex_state = 3}, - [1793] = {.lex_state = 0, .external_lex_state = 3}, - [1794] = {.lex_state = 6, .external_lex_state = 3}, - [1795] = {.lex_state = 2, .external_lex_state = 3}, - [1796] = {.lex_state = 0, .external_lex_state = 3}, - [1797] = {.lex_state = 2, .external_lex_state = 3}, - [1798] = {.lex_state = 52, .external_lex_state = 3}, - [1799] = {.lex_state = 6, .external_lex_state = 3}, - [1800] = {.lex_state = 6, .external_lex_state = 3}, + [1792] = {.lex_state = 7, .external_lex_state = 3}, + [1793] = {.lex_state = 55, .external_lex_state = 3}, + [1794] = {.lex_state = 0, .external_lex_state = 3}, + [1795] = {.lex_state = 0, .external_lex_state = 3}, + [1796] = {.lex_state = 55, .external_lex_state = 3}, + [1797] = {.lex_state = 0, .external_lex_state = 3}, + [1798] = {.lex_state = 2, .external_lex_state = 3}, + [1799] = {.lex_state = 55, .external_lex_state = 3}, + [1800] = {.lex_state = 0, .external_lex_state = 3}, [1801] = {.lex_state = 0, .external_lex_state = 3}, [1802] = {.lex_state = 0, .external_lex_state = 3}, - [1803] = {.lex_state = 0, .external_lex_state = 3}, - [1804] = {.lex_state = 52, .external_lex_state = 3}, - [1805] = {.lex_state = 52, .external_lex_state = 3}, - [1806] = {.lex_state = 52, .external_lex_state = 3}, + [1803] = {.lex_state = 2, .external_lex_state = 3}, + [1804] = {.lex_state = 55, .external_lex_state = 3}, + [1805] = {.lex_state = 0, .external_lex_state = 3}, + [1806] = {.lex_state = 2, .external_lex_state = 3}, [1807] = {.lex_state = 0, .external_lex_state = 3}, - [1808] = {.lex_state = 0, .external_lex_state = 3}, - [1809] = {.lex_state = 0, .external_lex_state = 3}, + [1808] = {.lex_state = 2, .external_lex_state = 3}, + [1809] = {.lex_state = 2, .external_lex_state = 3}, [1810] = {.lex_state = 0, .external_lex_state = 3}, - [1811] = {.lex_state = 6, .external_lex_state = 3}, - [1812] = {.lex_state = 6, .external_lex_state = 3}, + [1811] = {.lex_state = 2, .external_lex_state = 3}, + [1812] = {.lex_state = 2, .external_lex_state = 3}, [1813] = {.lex_state = 0, .external_lex_state = 3}, [1814] = {.lex_state = 0, .external_lex_state = 3}, [1815] = {.lex_state = 0, .external_lex_state = 3}, [1816] = {.lex_state = 0, .external_lex_state = 3}, - [1817] = {.lex_state = 0, .external_lex_state = 3}, + [1817] = {.lex_state = 2, .external_lex_state = 3}, [1818] = {.lex_state = 0, .external_lex_state = 3}, - [1819] = {.lex_state = 52, .external_lex_state = 3}, - [1820] = {.lex_state = 0, .external_lex_state = 3}, - [1821] = {.lex_state = 2, .external_lex_state = 3}, - [1822] = {.lex_state = 2, .external_lex_state = 3}, + [1819] = {.lex_state = 0, .external_lex_state = 3}, + [1820] = {.lex_state = 2, .external_lex_state = 3}, + [1821] = {.lex_state = 0, .external_lex_state = 3}, + [1822] = {.lex_state = 0, .external_lex_state = 3}, [1823] = {.lex_state = 0, .external_lex_state = 3}, [1824] = {.lex_state = 0, .external_lex_state = 3}, [1825] = {.lex_state = 0, .external_lex_state = 3}, [1826] = {.lex_state = 0, .external_lex_state = 3}, - [1827] = {.lex_state = 2, .external_lex_state = 3}, + [1827] = {.lex_state = 0, .external_lex_state = 3}, [1828] = {.lex_state = 2, .external_lex_state = 3}, [1829] = {.lex_state = 0, .external_lex_state = 3}, - [1830] = {.lex_state = 0, .external_lex_state = 3}, - [1831] = {.lex_state = 52, .external_lex_state = 3}, - [1832] = {.lex_state = 52, .external_lex_state = 3}, + [1830] = {.lex_state = 2, .external_lex_state = 3}, + [1831] = {.lex_state = 55, .external_lex_state = 3}, + [1832] = {.lex_state = 2, .external_lex_state = 3}, [1833] = {.lex_state = 0, .external_lex_state = 3}, - [1834] = {.lex_state = 52, .external_lex_state = 3}, - [1835] = {.lex_state = 0, .external_lex_state = 3}, + [1834] = {.lex_state = 2, .external_lex_state = 3}, + [1835] = {.lex_state = 2, .external_lex_state = 3}, [1836] = {.lex_state = 0, .external_lex_state = 3}, [1837] = {.lex_state = 2, .external_lex_state = 3}, [1838] = {.lex_state = 0, .external_lex_state = 3}, [1839] = {.lex_state = 0, .external_lex_state = 3}, - [1840] = {.lex_state = 0, .external_lex_state = 3}, + [1840] = {.lex_state = 2, .external_lex_state = 3}, [1841] = {.lex_state = 0, .external_lex_state = 3}, - [1842] = {.lex_state = 0, .external_lex_state = 3}, - [1843] = {.lex_state = 0, .external_lex_state = 3}, - [1844] = {.lex_state = 0, .external_lex_state = 3}, - [1845] = {.lex_state = 0, .external_lex_state = 3}, + [1842] = {.lex_state = 2, .external_lex_state = 3}, + [1843] = {.lex_state = 2, .external_lex_state = 3}, + [1844] = {.lex_state = 2, .external_lex_state = 3}, + [1845] = {.lex_state = 2, .external_lex_state = 3}, [1846] = {.lex_state = 0, .external_lex_state = 3}, - [1847] = {.lex_state = 52, .external_lex_state = 3}, + [1847] = {.lex_state = 0, .external_lex_state = 3}, [1848] = {.lex_state = 0, .external_lex_state = 3}, - [1849] = {.lex_state = 2, .external_lex_state = 3}, - [1850] = {.lex_state = 6, .external_lex_state = 3}, + [1849] = {.lex_state = 0, .external_lex_state = 3}, + [1850] = {.lex_state = 55, .external_lex_state = 3}, [1851] = {.lex_state = 0, .external_lex_state = 3}, - [1852] = {.lex_state = 2, .external_lex_state = 3}, - [1853] = {.lex_state = 0, .external_lex_state = 3}, - [1854] = {.lex_state = 0, .external_lex_state = 3}, + [1852] = {.lex_state = 0, .external_lex_state = 3}, + [1853] = {.lex_state = 6, .external_lex_state = 3}, + [1854] = {.lex_state = 55, .external_lex_state = 3}, [1855] = {.lex_state = 2, .external_lex_state = 3}, - [1856] = {.lex_state = 52, .external_lex_state = 3}, - [1857] = {.lex_state = 2, .external_lex_state = 3}, - [1858] = {.lex_state = 2, .external_lex_state = 3}, - [1859] = {.lex_state = 2, .external_lex_state = 3}, + [1856] = {.lex_state = 0, .external_lex_state = 3}, + [1857] = {.lex_state = 0, .external_lex_state = 3}, + [1858] = {.lex_state = 55, .external_lex_state = 3}, + [1859] = {.lex_state = 0, .external_lex_state = 3}, [1860] = {.lex_state = 0, .external_lex_state = 3}, - [1861] = {.lex_state = 2, .external_lex_state = 3}, - [1862] = {.lex_state = 2, .external_lex_state = 3}, - [1863] = {.lex_state = 2, .external_lex_state = 3}, - [1864] = {.lex_state = 0, .external_lex_state = 3}, - [1865] = {.lex_state = 52, .external_lex_state = 3}, - [1866] = {.lex_state = 52, .external_lex_state = 3}, - [1867] = {.lex_state = 2, .external_lex_state = 3}, + [1861] = {.lex_state = 0, .external_lex_state = 3}, + [1862] = {.lex_state = 0, .external_lex_state = 3}, + [1863] = {.lex_state = 0, .external_lex_state = 3}, + [1864] = {.lex_state = 55, .external_lex_state = 3}, + [1865] = {.lex_state = 0, .external_lex_state = 3}, + [1866] = {.lex_state = 0, .external_lex_state = 3}, + [1867] = {.lex_state = 0, .external_lex_state = 3}, [1868] = {.lex_state = 0, .external_lex_state = 3}, [1869] = {.lex_state = 0, .external_lex_state = 3}, - [1870] = {.lex_state = 1, .external_lex_state = 3}, - [1871] = {.lex_state = 2, .external_lex_state = 3}, + [1870] = {.lex_state = 55, .external_lex_state = 3}, + [1871] = {.lex_state = 0, .external_lex_state = 3}, [1872] = {.lex_state = 0, .external_lex_state = 3}, [1873] = {.lex_state = 0, .external_lex_state = 3}, [1874] = {.lex_state = 0, .external_lex_state = 3}, - [1875] = {.lex_state = 2, .external_lex_state = 3}, + [1875] = {.lex_state = 0, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 2, .external_lex_state = 3}, - [1878] = {.lex_state = 2, .external_lex_state = 3}, + [1877] = {.lex_state = 55, .external_lex_state = 3}, + [1878] = {.lex_state = 0, .external_lex_state = 3}, [1879] = {.lex_state = 0, .external_lex_state = 3}, [1880] = {.lex_state = 0, .external_lex_state = 3}, - [1881] = {.lex_state = 2, .external_lex_state = 3}, + [1881] = {.lex_state = 0, .external_lex_state = 3}, [1882] = {.lex_state = 0, .external_lex_state = 3}, - [1883] = {.lex_state = 2, .external_lex_state = 3}, + [1883] = {.lex_state = 0, .external_lex_state = 3}, [1884] = {.lex_state = 0, .external_lex_state = 3}, [1885] = {.lex_state = 0, .external_lex_state = 3}, [1886] = {.lex_state = 0, .external_lex_state = 3}, - [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 6, .external_lex_state = 3}, + [1887] = {.lex_state = 2, .external_lex_state = 3}, + [1888] = {.lex_state = 2, .external_lex_state = 3}, [1889] = {.lex_state = 0, .external_lex_state = 3}, [1890] = {.lex_state = 0, .external_lex_state = 3}, [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 0, .external_lex_state = 3}, + [1892] = {.lex_state = 2, .external_lex_state = 3}, [1893] = {.lex_state = 0, .external_lex_state = 3}, [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 6, .external_lex_state = 3}, - [1896] = {.lex_state = 2, .external_lex_state = 3}, + [1895] = {.lex_state = 0, .external_lex_state = 3}, + [1896] = {.lex_state = 0, .external_lex_state = 3}, [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 2, .external_lex_state = 3}, + [1898] = {.lex_state = 0, .external_lex_state = 3}, [1899] = {.lex_state = 2, .external_lex_state = 3}, [1900] = {.lex_state = 0, .external_lex_state = 3}, - [1901] = {.lex_state = 0, .external_lex_state = 3}, + [1901] = {.lex_state = 55, .external_lex_state = 3}, [1902] = {.lex_state = 0, .external_lex_state = 3}, - [1903] = {.lex_state = 52, .external_lex_state = 3}, - [1904] = {.lex_state = 0, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 0, .external_lex_state = 3}, - [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 2, .external_lex_state = 3}, - [1910] = {.lex_state = 2, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, - [1912] = {.lex_state = 2, .external_lex_state = 3}, + [1903] = {.lex_state = 0, .external_lex_state = 3}, + [1904] = {.lex_state = 6, .external_lex_state = 3}, + [1905] = {.lex_state = 55, .external_lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 5}, + [1907] = {.lex_state = 2, .external_lex_state = 3}, + [1908] = {.lex_state = 2, .external_lex_state = 3}, + [1909] = {.lex_state = 0, .external_lex_state = 3}, + [1910] = {.lex_state = 0, .external_lex_state = 3}, + [1911] = {.lex_state = 55, .external_lex_state = 3}, + [1912] = {.lex_state = 0, .external_lex_state = 3}, [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 0, .external_lex_state = 3}, + [1914] = {.lex_state = 2, .external_lex_state = 3}, [1915] = {.lex_state = 0, .external_lex_state = 3}, [1916] = {.lex_state = 0, .external_lex_state = 3}, [1917] = {.lex_state = 0, .external_lex_state = 3}, - [1918] = {.lex_state = 9, .external_lex_state = 3}, + [1918] = {.lex_state = 0, .external_lex_state = 3}, [1919] = {.lex_state = 0, .external_lex_state = 3}, - [1920] = {.lex_state = 0, .external_lex_state = 3}, + [1920] = {.lex_state = 1, .external_lex_state = 3}, [1921] = {.lex_state = 0, .external_lex_state = 3}, [1922] = {.lex_state = 0, .external_lex_state = 3}, - [1923] = {.lex_state = 2, .external_lex_state = 3}, + [1923] = {.lex_state = 0, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, [1925] = {.lex_state = 0, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, [1927] = {.lex_state = 0, .external_lex_state = 3}, [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 0, .external_lex_state = 3}, + [1929] = {.lex_state = 2, .external_lex_state = 3}, [1930] = {.lex_state = 0, .external_lex_state = 3}, [1931] = {.lex_state = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 2, .external_lex_state = 3}, - [1933] = {.lex_state = 2, .external_lex_state = 3}, + [1932] = {.lex_state = 9, .external_lex_state = 3}, + [1933] = {.lex_state = 0, .external_lex_state = 3}, [1934] = {.lex_state = 2, .external_lex_state = 3}, - [1935] = {.lex_state = 0, .external_lex_state = 3}, + [1935] = {.lex_state = 2, .external_lex_state = 3}, [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 3}, - [1938] = {.lex_state = 0, .external_lex_state = 3}, + [1937] = {.lex_state = 2, .external_lex_state = 3}, + [1938] = {.lex_state = 2, .external_lex_state = 3}, [1939] = {.lex_state = 0, .external_lex_state = 3}, [1940] = {.lex_state = 0, .external_lex_state = 3}, - [1941] = {.lex_state = 2, .external_lex_state = 3}, + [1941] = {.lex_state = 0, .external_lex_state = 3}, [1942] = {.lex_state = 0, .external_lex_state = 3}, [1943] = {.lex_state = 0, .external_lex_state = 3}, [1944] = {.lex_state = 2, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 0, .external_lex_state = 3}, + [1947] = {.lex_state = 2, .external_lex_state = 3}, [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 2, .external_lex_state = 3}, - [1952] = {.lex_state = 0, .external_lex_state = 3}, + [1951] = {.lex_state = 0, .external_lex_state = 3}, + [1952] = {.lex_state = 2, .external_lex_state = 3}, [1953] = {.lex_state = 0, .external_lex_state = 3}, - [1954] = {.lex_state = 52, .external_lex_state = 3}, + [1954] = {.lex_state = 0, .external_lex_state = 3}, [1955] = {.lex_state = 0, .external_lex_state = 3}, [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 2, .external_lex_state = 3}, + [1957] = {.lex_state = 0, .external_lex_state = 3}, [1958] = {.lex_state = 0, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, - [1960] = {.lex_state = 0, .external_lex_state = 3}, - [1961] = {.lex_state = 2, .external_lex_state = 3}, - [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 6, .external_lex_state = 3}, - [1964] = {.lex_state = 0, .external_lex_state = 3}, - [1965] = {.lex_state = 52, .external_lex_state = 3}, + [1960] = {.lex_state = 6, .external_lex_state = 3}, + [1961] = {.lex_state = 0, .external_lex_state = 3}, + [1962] = {.lex_state = 2, .external_lex_state = 3}, + [1963] = {.lex_state = 55, .external_lex_state = 3}, + [1964] = {.lex_state = 55, .external_lex_state = 3}, + [1965] = {.lex_state = 0, .external_lex_state = 3}, [1966] = {.lex_state = 0, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 52, .external_lex_state = 3}, + [1969] = {.lex_state = 2, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.lex_state = 2, .external_lex_state = 3}, + [1971] = {.lex_state = 55, .external_lex_state = 3}, [1972] = {.lex_state = 0, .external_lex_state = 3}, - [1973] = {.lex_state = 2, .external_lex_state = 3}, - [1974] = {.lex_state = 0, .external_lex_state = 3}, - [1975] = {.lex_state = 0, .external_lex_state = 3}, - [1976] = {.lex_state = 0, .external_lex_state = 3}, + [1973] = {.lex_state = 0, .external_lex_state = 3}, + [1974] = {.lex_state = 6, .external_lex_state = 3}, + [1975] = {.lex_state = 6, .external_lex_state = 3}, + [1976] = {.lex_state = 55, .external_lex_state = 3}, [1977] = {.lex_state = 0, .external_lex_state = 3}, - [1978] = {.lex_state = 0, .external_lex_state = 3}, - [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 52, .external_lex_state = 3}, + [1978] = {.lex_state = 2, .external_lex_state = 3}, + [1979] = {.lex_state = 2, .external_lex_state = 3}, + [1980] = {.lex_state = 2, .external_lex_state = 3}, [1981] = {.lex_state = 0, .external_lex_state = 3}, [1982] = {.lex_state = 0, .external_lex_state = 3}, - [1983] = {.lex_state = 52, .external_lex_state = 3}, - [1984] = {.lex_state = 2, .external_lex_state = 3}, - [1985] = {.lex_state = 0, .external_lex_state = 5}, - [1986] = {.lex_state = 2, .external_lex_state = 3}, - [1987] = {.lex_state = 52, .external_lex_state = 3}, + [1983] = {.lex_state = 0, .external_lex_state = 3}, + [1984] = {.lex_state = 0, .external_lex_state = 3}, + [1985] = {.lex_state = 0, .external_lex_state = 3}, + [1986] = {.lex_state = 0, .external_lex_state = 3}, + [1987] = {.lex_state = 55, .external_lex_state = 3}, [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 0, .external_lex_state = 3}, + [1989] = {.lex_state = 2, .external_lex_state = 3}, [1990] = {.lex_state = 0, .external_lex_state = 3}, [1991] = {.lex_state = 2, .external_lex_state = 3}, - [1992] = {.lex_state = 0, .external_lex_state = 3}, + [1992] = {.lex_state = 2, .external_lex_state = 3}, [1993] = {.lex_state = 2, .external_lex_state = 3}, [1994] = {.lex_state = 2, .external_lex_state = 3}, - [1995] = {.lex_state = 0, .external_lex_state = 3}, + [1995] = {.lex_state = 2, .external_lex_state = 3}, [1996] = {.lex_state = 2, .external_lex_state = 3}, - [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 2, .external_lex_state = 3}, - [2000] = {.lex_state = 0, .external_lex_state = 3}, + [1997] = {.lex_state = 2, .external_lex_state = 3}, + [1998] = {.lex_state = 6, .external_lex_state = 3}, + [1999] = {.lex_state = 0, .external_lex_state = 3}, + [2000] = {.lex_state = 2, .external_lex_state = 3}, [2001] = {.lex_state = 2, .external_lex_state = 3}, - [2002] = {.lex_state = 0, .external_lex_state = 3}, + [2002] = {.lex_state = 2, .external_lex_state = 3}, [2003] = {.lex_state = 0, .external_lex_state = 3}, - [2004] = {.lex_state = 2, .external_lex_state = 3}, - [2005] = {.lex_state = 0, .external_lex_state = 3}, - [2006] = {.lex_state = 2, .external_lex_state = 3}, + [2004] = {.lex_state = 0, .external_lex_state = 3}, + [2005] = {.lex_state = 2, .external_lex_state = 3}, + [2006] = {.lex_state = 0, .external_lex_state = 3}, [2007] = {.lex_state = 2, .external_lex_state = 3}, [2008] = {.lex_state = 2, .external_lex_state = 3}, - [2009] = {.lex_state = 2, .external_lex_state = 3}, + [2009] = {.lex_state = 0, .external_lex_state = 3}, [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 2, .external_lex_state = 3}, + [2011] = {.lex_state = 0, .external_lex_state = 3}, [2012] = {.lex_state = 2, .external_lex_state = 3}, [2013] = {.lex_state = 2, .external_lex_state = 3}, - [2014] = {.lex_state = 2, .external_lex_state = 3}, + [2014] = {.lex_state = 0, .external_lex_state = 3}, [2015] = {.lex_state = 2, .external_lex_state = 3}, - [2016] = {.lex_state = 0, .external_lex_state = 3}, + [2016] = {.lex_state = 2, .external_lex_state = 3}, [2017] = {.lex_state = 2, .external_lex_state = 3}, - [2018] = {.lex_state = 2, .external_lex_state = 3}, + [2018] = {.lex_state = 0, .external_lex_state = 3}, [2019] = {.lex_state = 2, .external_lex_state = 3}, - [2020] = {.lex_state = 2, .external_lex_state = 3}, + [2020] = {.lex_state = 0, .external_lex_state = 3}, [2021] = {.lex_state = 2, .external_lex_state = 3}, [2022] = {.lex_state = 2, .external_lex_state = 3}, - [2023] = {.lex_state = 0, .external_lex_state = 3}, - [2024] = {.lex_state = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 2, .external_lex_state = 3}, + [2024] = {.lex_state = 2, .external_lex_state = 3}, [2025] = {.lex_state = 0, .external_lex_state = 3}, [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 2, .external_lex_state = 3}, - [2028] = {.lex_state = 2, .external_lex_state = 3}, + [2027] = {.lex_state = 0, .external_lex_state = 3}, + [2028] = {.lex_state = 0, .external_lex_state = 3}, [2029] = {.lex_state = 2, .external_lex_state = 3}, [2030] = {.lex_state = 2, .external_lex_state = 3}, [2031] = {.lex_state = 0, .external_lex_state = 3}, - [2032] = {.lex_state = 2, .external_lex_state = 3}, + [2032] = {.lex_state = 0, .external_lex_state = 3}, [2033] = {.lex_state = 0, .external_lex_state = 3}, - [2034] = {.lex_state = 0, .external_lex_state = 3}, + [2034] = {.lex_state = 2, .external_lex_state = 3}, [2035] = {.lex_state = 0, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, - [2037] = {.lex_state = 2, .external_lex_state = 3}, - [2038] = {.lex_state = 2, .external_lex_state = 3}, - [2039] = {.lex_state = 0, .external_lex_state = 3}, - [2040] = {.lex_state = 2, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .external_lex_state = 3}, + [2037] = {.lex_state = 0, .external_lex_state = 3}, + [2038] = {.lex_state = 0, .external_lex_state = 3}, + [2039] = {.lex_state = 2, .external_lex_state = 3}, + [2040] = {.lex_state = 0, .external_lex_state = 3}, + [2041] = {.lex_state = 2, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 0, .external_lex_state = 3}, + [2043] = {.lex_state = 2, .external_lex_state = 3}, + [2044] = {.lex_state = 2, .external_lex_state = 3}, [2045] = {.lex_state = 0, .external_lex_state = 3}, [2046] = {.lex_state = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 0, .external_lex_state = 3}, + [2047] = {.lex_state = 2, .external_lex_state = 3}, [2048] = {.lex_state = 2, .external_lex_state = 3}, - [2049] = {.lex_state = 0, .external_lex_state = 3}, - [2050] = {.lex_state = 2, .external_lex_state = 3}, + [2049] = {.lex_state = 2, .external_lex_state = 3}, + [2050] = {.lex_state = 0, .external_lex_state = 3}, [2051] = {.lex_state = 0, .external_lex_state = 3}, - [2052] = {.lex_state = 2, .external_lex_state = 3}, + [2052] = {.lex_state = 0, .external_lex_state = 3}, [2053] = {.lex_state = 2, .external_lex_state = 3}, - [2054] = {.lex_state = 0, .external_lex_state = 3}, - [2055] = {.lex_state = 2, .external_lex_state = 3}, - [2056] = {.lex_state = 0, .external_lex_state = 3}, + [2054] = {.lex_state = 2, .external_lex_state = 3}, + [2055] = {.lex_state = 0, .external_lex_state = 3}, + [2056] = {.lex_state = 2, .external_lex_state = 3}, [2057] = {.lex_state = 0, .external_lex_state = 3}, [2058] = {.lex_state = 0, .external_lex_state = 3}, - [2059] = {.lex_state = 0, .external_lex_state = 3}, + [2059] = {.lex_state = 2, .external_lex_state = 3}, [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 2, .external_lex_state = 3}, + [2061] = {.lex_state = 0, .external_lex_state = 3}, [2062] = {.lex_state = 2, .external_lex_state = 3}, [2063] = {.lex_state = 2, .external_lex_state = 3}, [2064] = {.lex_state = 2, .external_lex_state = 3}, - [2065] = {.lex_state = 0, .external_lex_state = 3}, - [2066] = {.lex_state = 0, .external_lex_state = 3}, + [2065] = {.lex_state = 2, .external_lex_state = 3}, + [2066] = {.lex_state = 2, .external_lex_state = 3}, [2067] = {.lex_state = 0, .external_lex_state = 3}, [2068] = {.lex_state = 0, .external_lex_state = 3}, - [2069] = {.lex_state = 0, .external_lex_state = 3}, + [2069] = {.lex_state = 2, .external_lex_state = 3}, [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 0, .external_lex_state = 3}, + [2071] = {.lex_state = 2, .external_lex_state = 3}, + [2072] = {.lex_state = 2, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 2, .external_lex_state = 3}, - [2076] = {.lex_state = 0, .external_lex_state = 3}, + [2075] = {.lex_state = 0, .external_lex_state = 3}, + [2076] = {.lex_state = 2, .external_lex_state = 3}, [2077] = {.lex_state = 0, .external_lex_state = 3}, - [2078] = {.lex_state = 0, .external_lex_state = 3}, + [2078] = {.lex_state = 2, .external_lex_state = 3}, [2079] = {.lex_state = 2, .external_lex_state = 3}, - [2080] = {.lex_state = 2, .external_lex_state = 3}, - [2081] = {.lex_state = 2, .external_lex_state = 3}, + [2080] = {.lex_state = 0, .external_lex_state = 3}, + [2081] = {.lex_state = 0, .external_lex_state = 3}, [2082] = {.lex_state = 2, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 2, .external_lex_state = 3}, - [2086] = {.lex_state = 2, .external_lex_state = 3}, - [2087] = {.lex_state = 2, .external_lex_state = 3}, + [2085] = {.lex_state = 6, .external_lex_state = 3}, + [2086] = {.lex_state = 0, .external_lex_state = 3}, + [2087] = {.lex_state = 0, .external_lex_state = 3}, [2088] = {.lex_state = 0, .external_lex_state = 3}, [2089] = {.lex_state = 0, .external_lex_state = 3}, [2090] = {.lex_state = 0, .external_lex_state = 3}, [2091] = {.lex_state = 0, .external_lex_state = 3}, - [2092] = {.lex_state = 0, .external_lex_state = 3}, + [2092] = {.lex_state = 2, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, [2094] = {.lex_state = 0, .external_lex_state = 3}, [2095] = {.lex_state = 2, .external_lex_state = 3}, [2096] = {.lex_state = 2, .external_lex_state = 3}, - [2097] = {.lex_state = 2, .external_lex_state = 3}, + [2097] = {.lex_state = 0, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, [2099] = {.lex_state = 2, .external_lex_state = 3}, [2100] = {.lex_state = 2, .external_lex_state = 3}, [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 6, .external_lex_state = 3}, - [2103] = {.lex_state = 2, .external_lex_state = 3}, - [2104] = {.lex_state = 52, .external_lex_state = 3}, + [2102] = {.lex_state = 0, .external_lex_state = 3}, + [2103] = {.lex_state = 0, .external_lex_state = 3}, + [2104] = {.lex_state = 2, .external_lex_state = 3}, [2105] = {.lex_state = 2, .external_lex_state = 3}, - [2106] = {.lex_state = 2, .external_lex_state = 3}, - [2107] = {.lex_state = 2, .external_lex_state = 3}, - [2108] = {.lex_state = 2, .external_lex_state = 3}, - [2109] = {.lex_state = 2, .external_lex_state = 3}, + [2106] = {.lex_state = 0, .external_lex_state = 3}, + [2107] = {.lex_state = 0, .external_lex_state = 3}, + [2108] = {.lex_state = 0, .external_lex_state = 3}, + [2109] = {.lex_state = 0, .external_lex_state = 3}, [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 2, .external_lex_state = 3}, - [2112] = {.lex_state = 2, .external_lex_state = 3}, - [2113] = {.lex_state = 2, .external_lex_state = 3}, - [2114] = {.lex_state = 0, .external_lex_state = 3}, + [2111] = {.lex_state = 0, .external_lex_state = 3}, + [2112] = {.lex_state = 0, .external_lex_state = 3}, + [2113] = {.lex_state = 0, .external_lex_state = 3}, + [2114] = {.lex_state = 2, .external_lex_state = 3}, [2115] = {.lex_state = 0, .external_lex_state = 3}, [2116] = {.lex_state = 0, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, - [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 2, .external_lex_state = 3}, + [2118] = {.lex_state = 6, .external_lex_state = 3}, + [2119] = {.lex_state = 0, .external_lex_state = 3}, [2120] = {.lex_state = 2, .external_lex_state = 3}, [2121] = {.lex_state = 0, .external_lex_state = 3}, [2122] = {.lex_state = 2, .external_lex_state = 3}, - [2123] = {.lex_state = 6, .external_lex_state = 3}, - [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 6, .external_lex_state = 3}, + [2123] = {.lex_state = 0, .external_lex_state = 3}, + [2124] = {.lex_state = 2, .external_lex_state = 3}, + [2125] = {.lex_state = 0, .external_lex_state = 3}, [2126] = {.lex_state = 2, .external_lex_state = 3}, [2127] = {.lex_state = 2, .external_lex_state = 3}, - [2128] = {.lex_state = 2, .external_lex_state = 3}, + [2128] = {.lex_state = 0, .external_lex_state = 3}, [2129] = {.lex_state = 2, .external_lex_state = 3}, [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 0, .external_lex_state = 3}, + [2131] = {.lex_state = 2, .external_lex_state = 3}, [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 0, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 2, .external_lex_state = 3}, + [2134] = {.lex_state = 2, .external_lex_state = 3}, [2135] = {.lex_state = 0, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 6, .external_lex_state = 3}, [2137] = {.lex_state = 0, .external_lex_state = 3}, [2138] = {.lex_state = 0, .external_lex_state = 3}, [2139] = {.lex_state = 0, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 2, .external_lex_state = 3}, - [2143] = {.lex_state = 2, .external_lex_state = 3}, - [2144] = {.lex_state = 2, .external_lex_state = 3}, - [2145] = {.lex_state = 0, .external_lex_state = 3}, - [2146] = {.lex_state = 0, .external_lex_state = 3}, - [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 0, .external_lex_state = 3}, - [2149] = {.lex_state = 0, .external_lex_state = 3}, - [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 0, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 0, .external_lex_state = 3}, + [2144] = {.lex_state = 0, .external_lex_state = 3}, + [2145] = {.lex_state = 2, .external_lex_state = 3}, + [2146] = {.lex_state = 2, .external_lex_state = 3}, + [2147] = {.lex_state = 2, .external_lex_state = 3}, + [2148] = {.lex_state = 2, .external_lex_state = 3}, + [2149] = {.lex_state = 2, .external_lex_state = 3}, + [2150] = {.lex_state = 2, .external_lex_state = 3}, + [2151] = {.lex_state = 2, .external_lex_state = 3}, [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 0, .external_lex_state = 3}, - [2154] = {.lex_state = 0, .external_lex_state = 3}, + [2153] = {.lex_state = 2, .external_lex_state = 3}, + [2154] = {.lex_state = 2, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, [2156] = {.lex_state = 0, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 2, .external_lex_state = 3}, - [2160] = {.lex_state = 2, .external_lex_state = 3}, - [2161] = {.lex_state = 2, .external_lex_state = 3}, - [2162] = {.lex_state = 2, .external_lex_state = 3}, - [2163] = {.lex_state = 2, .external_lex_state = 3}, + [2159] = {.lex_state = 0, .external_lex_state = 3}, + [2160] = {.lex_state = 0, .external_lex_state = 3}, + [2161] = {.lex_state = 0, .external_lex_state = 3}, + [2162] = {.lex_state = 0, .external_lex_state = 3}, + [2163] = {.lex_state = 0, .external_lex_state = 3}, [2164] = {.lex_state = 0, .external_lex_state = 3}, - [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 6, .external_lex_state = 3}, - [2167] = {.lex_state = 0, .external_lex_state = 3}, + [2165] = {.lex_state = 2, .external_lex_state = 3}, + [2166] = {.lex_state = 2, .external_lex_state = 3}, + [2167] = {.lex_state = 2, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 0, .external_lex_state = 3}, - [2170] = {.lex_state = 0, .external_lex_state = 3}, - [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 0, .external_lex_state = 3}, - [2173] = {.lex_state = 2, .external_lex_state = 3}, + [2169] = {.lex_state = 2, .external_lex_state = 3}, + [2170] = {.lex_state = 2, .external_lex_state = 3}, + [2171] = {.lex_state = 2, .external_lex_state = 3}, + [2172] = {.lex_state = 2, .external_lex_state = 3}, + [2173] = {.lex_state = 0, .external_lex_state = 3}, [2174] = {.lex_state = 2, .external_lex_state = 3}, - [2175] = {.lex_state = 2, .external_lex_state = 3}, - [2176] = {.lex_state = 2, .external_lex_state = 3}, - [2177] = {.lex_state = 2, .external_lex_state = 3}, + [2175] = {.lex_state = 0, .external_lex_state = 3}, + [2176] = {.lex_state = 0, .external_lex_state = 3}, + [2177] = {.lex_state = 0, .external_lex_state = 3}, [2178] = {.lex_state = 2, .external_lex_state = 3}, - [2179] = {.lex_state = 6, .external_lex_state = 3}, - [2180] = {.lex_state = 2, .external_lex_state = 3}, + [2179] = {.lex_state = 0, .external_lex_state = 3}, + [2180] = {.lex_state = 0, .external_lex_state = 3}, [2181] = {.lex_state = 0, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 6, .external_lex_state = 3}, + [2183] = {.lex_state = 0, .external_lex_state = 3}, [2184] = {.lex_state = 2, .external_lex_state = 3}, + [2185] = {.lex_state = 0, .external_lex_state = 3}, + [2186] = {.lex_state = 0, .external_lex_state = 3}, + [2187] = {.lex_state = 0, .external_lex_state = 3}, + [2188] = {.lex_state = 0, .external_lex_state = 3}, + [2189] = {.lex_state = 2, .external_lex_state = 3}, + [2190] = {.lex_state = 2, .external_lex_state = 3}, + [2191] = {.lex_state = 6, .external_lex_state = 3}, + [2192] = {.lex_state = 2, .external_lex_state = 3}, + [2193] = {.lex_state = 2, .external_lex_state = 3}, + [2194] = {.lex_state = 0, .external_lex_state = 3}, + [2195] = {.lex_state = 0, .external_lex_state = 3}, + [2196] = {.lex_state = 6, .external_lex_state = 3}, + [2197] = {.lex_state = 2, .external_lex_state = 3}, }; enum { @@ -13903,6 +14052,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(1), [anon_sym_u128] = ACTIONS(1), [anon_sym_i128] = ACTIONS(1), + [anon_sym_u256] = ACTIONS(1), + [anon_sym_i256] = ACTIONS(1), + [anon_sym_b256] = ACTIONS(1), [anon_sym_isize] = ACTIONS(1), [anon_sym_usize] = ACTIONS(1), [anon_sym_f32] = ACTIONS(1), @@ -13941,7 +14093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1), [anon_sym_continue] = ACTIONS(1), [anon_sym_default] = ACTIONS(1), - [anon_sym_dep] = ACTIONS(1), + [anon_sym_mod] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_fn] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), @@ -13954,6 +14106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(1), [anon_sym_struct] = ACTIONS(1), [anon_sym_trait] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), [anon_sym_use] = ACTIONS(1), [anon_sym_where] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), @@ -13961,7 +14114,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), [anon_sym_asm] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), @@ -13992,6 +14144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), @@ -14024,74 +14177,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2115), - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_dep_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_configurable_item] = STATE(4), - [sym_storage_item] = STATE(4), - [sym_const_item] = STATE(4), - [sym_asm_item] = STATE(66), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(4), - [sym_abi_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), + [sym_source_file] = STATE(2128), + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_configurable_item] = STATE(7), + [sym_storage_item] = STATE(7), + [sym_const_item] = STATE(7), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(7), + [sym_abi_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), [sym__expression] = STATE(913), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -14105,6 +14259,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -14126,7 +14283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -14139,100 +14296,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [2] = { [sym__statement] = STATE(12), [sym_empty_statement] = STATE(12), - [sym_primitive_type] = STATE(698), + [sym_primitive_type] = STATE(729), [sym_program_type] = STATE(12), [sym_expression_statement] = STATE(12), [sym_attribute_item] = STATE(12), [sym_inner_attribute_item] = STATE(12), - [sym_dep_item] = STATE(12), + [sym_mod_item] = STATE(12), [sym_struct_item] = STATE(12), [sym_enum_item] = STATE(12), [sym_configurable_item] = STATE(12), [sym_storage_item] = STATE(12), [sym_const_item] = STATE(12), - [sym_asm_item] = STATE(66), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(12), [sym_function_item] = STATE(12), [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2113), + [sym_function_modifiers] = STATE(2127), [sym_impl_item] = STATE(12), [sym_abi_item] = STATE(12), [sym_trait_item] = STATE(12), [sym_let_declaration] = STATE(12), [sym_use_declaration] = STATE(12), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(833), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(899), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -14245,6 +14404,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -14259,7 +14421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(99), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -14267,7 +14429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -14280,100 +14442,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_dep_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_configurable_item] = STATE(10), - [sym_storage_item] = STATE(10), - [sym_const_item] = STATE(10), - [sym_asm_item] = STATE(66), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(10), - [sym_abi_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(863), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(12), + [sym_expression_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_configurable_item] = STATE(12), + [sym_storage_item] = STATE(12), + [sym_const_item] = STATE(12), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(12), + [sym_abi_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(879), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -14386,6 +14550,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -14400,7 +14567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(101), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -14408,7 +14575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -14421,101 +14588,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [4] = { [sym__statement] = STATE(5), [sym_empty_statement] = STATE(5), - [sym_primitive_type] = STATE(698), + [sym_primitive_type] = STATE(729), [sym_program_type] = STATE(5), [sym_expression_statement] = STATE(5), [sym_attribute_item] = STATE(5), [sym_inner_attribute_item] = STATE(5), - [sym_dep_item] = STATE(5), + [sym_mod_item] = STATE(5), [sym_struct_item] = STATE(5), [sym_enum_item] = STATE(5), [sym_configurable_item] = STATE(5), [sym_storage_item] = STATE(5), [sym_const_item] = STATE(5), - [sym_asm_item] = STATE(66), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(5), [sym_function_item] = STATE(5), [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2113), + [sym_function_modifiers] = STATE(2127), [sym_impl_item] = STATE(5), [sym_abi_item] = STATE(5), [sym_trait_item] = STATE(5), [sym_let_declaration] = STATE(5), [sym_use_declaration] = STATE(5), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(913), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(891), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(101), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -14528,6 +14696,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -14542,6 +14713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(103), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -14549,7 +14721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -14562,241 +14734,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_dep_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_configurable_item] = STATE(5), - [sym_storage_item] = STATE(5), - [sym_const_item] = STATE(5), - [sym_asm_item] = STATE(66), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(5), - [sym_abi_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(913), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(103), - [sym_identifier] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(108), - [anon_sym_u8] = ACTIONS(111), - [anon_sym_i8] = ACTIONS(111), - [anon_sym_u16] = ACTIONS(111), - [anon_sym_i16] = ACTIONS(111), - [anon_sym_u32] = ACTIONS(111), - [anon_sym_i32] = ACTIONS(111), - [anon_sym_u64] = ACTIONS(111), - [anon_sym_i64] = ACTIONS(111), - [anon_sym_u128] = ACTIONS(111), - [anon_sym_i128] = ACTIONS(111), - [anon_sym_isize] = ACTIONS(111), - [anon_sym_usize] = ACTIONS(111), - [anon_sym_f32] = ACTIONS(111), - [anon_sym_f64] = ACTIONS(111), - [anon_sym_bool] = ACTIONS(111), - [anon_sym_char] = ACTIONS(111), - [anon_sym_str] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_contract] = ACTIONS(120), - [anon_sym_script] = ACTIONS(120), - [anon_sym_predicate] = ACTIONS(120), - [anon_sym_library] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_SQUOTE] = ACTIONS(129), - [anon_sym_abi] = ACTIONS(132), - [anon_sym_break] = ACTIONS(135), - [anon_sym_configurable] = ACTIONS(138), - [anon_sym_const] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(144), - [anon_sym_default] = ACTIONS(147), - [anon_sym_dep] = ACTIONS(150), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_fn] = ACTIONS(156), - [anon_sym_for] = ACTIONS(159), - [anon_sym_if] = ACTIONS(162), - [anon_sym_impl] = ACTIONS(165), - [anon_sym_let] = ACTIONS(168), - [anon_sym_match] = ACTIONS(171), - [anon_sym_pub] = ACTIONS(174), - [anon_sym_return] = ACTIONS(177), - [anon_sym_storage] = ACTIONS(180), - [anon_sym_struct] = ACTIONS(183), - [anon_sym_trait] = ACTIONS(186), - [anon_sym_use] = ACTIONS(189), - [anon_sym_while] = ACTIONS(192), - [anon_sym_POUND] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_asm] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_COLON_COLON] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(198), - [anon_sym_PIPE] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(219), - [anon_sym_move] = ACTIONS(222), - [sym_integer_literal] = ACTIONS(225), - [aux_sym_string_literal_token1] = ACTIONS(228), - [sym_char_literal] = ACTIONS(225), - [anon_sym_true] = ACTIONS(231), - [anon_sym_false] = ACTIONS(231), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(234), - [sym_metavariable] = ACTIONS(237), - [sym_raw_string_literal] = ACTIONS(225), - [sym_float_literal] = ACTIONS(225), - [sym_block_comment] = ACTIONS(3), - }, - [6] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_dep_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_configurable_item] = STATE(9), - [sym_storage_item] = STATE(9), - [sym_const_item] = STATE(9), - [sym_asm_item] = STATE(66), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(9), - [sym_abi_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(880), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(12), + [sym_expression_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_configurable_item] = STATE(12), + [sym_storage_item] = STATE(12), + [sym_const_item] = STATE(12), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(12), + [sym_abi_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(888), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -14809,6 +14842,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -14823,7 +14859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(240), + [anon_sym_RBRACE] = ACTIONS(105), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -14831,7 +14867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -14844,100 +14880,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_dep_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_configurable_item] = STATE(8), - [sym_storage_item] = STATE(8), - [sym_const_item] = STATE(8), - [sym_asm_item] = STATE(66), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(8), - [sym_abi_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(845), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [6] = { + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(3), + [sym_expression_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_configurable_item] = STATE(3), + [sym_storage_item] = STATE(3), + [sym_const_item] = STATE(3), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(3), + [sym_abi_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(885), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -14950,6 +14988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -14964,7 +15005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(242), + [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -14972,7 +15013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -14985,100 +15026,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_dep_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_configurable_item] = STATE(13), - [sym_storage_item] = STATE(13), - [sym_const_item] = STATE(13), - [sym_asm_item] = STATE(66), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(13), - [sym_abi_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(841), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [7] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(8), + [sym_expression_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_configurable_item] = STATE(8), + [sym_storage_item] = STATE(8), + [sym_const_item] = STATE(8), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(8), + [sym_abi_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(913), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(109), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15091,6 +15135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -15105,7 +15152,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(244), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -15113,7 +15159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -15126,100 +15172,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [8] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(8), + [sym_expression_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_configurable_item] = STATE(8), + [sym_storage_item] = STATE(8), + [sym_const_item] = STATE(8), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(8), + [sym_abi_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(913), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(111), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_u8] = ACTIONS(119), + [anon_sym_i8] = ACTIONS(119), + [anon_sym_u16] = ACTIONS(119), + [anon_sym_i16] = ACTIONS(119), + [anon_sym_u32] = ACTIONS(119), + [anon_sym_i32] = ACTIONS(119), + [anon_sym_u64] = ACTIONS(119), + [anon_sym_i64] = ACTIONS(119), + [anon_sym_u128] = ACTIONS(119), + [anon_sym_i128] = ACTIONS(119), + [anon_sym_u256] = ACTIONS(119), + [anon_sym_i256] = ACTIONS(119), + [anon_sym_b256] = ACTIONS(119), + [anon_sym_isize] = ACTIONS(119), + [anon_sym_usize] = ACTIONS(119), + [anon_sym_f32] = ACTIONS(119), + [anon_sym_f64] = ACTIONS(119), + [anon_sym_bool] = ACTIONS(119), + [anon_sym_char] = ACTIONS(119), + [anon_sym_str] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_contract] = ACTIONS(128), + [anon_sym_script] = ACTIONS(128), + [anon_sym_predicate] = ACTIONS(128), + [anon_sym_library] = ACTIONS(128), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(134), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_abi] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_configurable] = ACTIONS(146), + [anon_sym_const] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(152), + [anon_sym_default] = ACTIONS(155), + [anon_sym_mod] = ACTIONS(158), + [anon_sym_enum] = ACTIONS(161), + [anon_sym_fn] = ACTIONS(164), + [anon_sym_for] = ACTIONS(167), + [anon_sym_if] = ACTIONS(170), + [anon_sym_impl] = ACTIONS(173), + [anon_sym_let] = ACTIONS(176), + [anon_sym_match] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_storage] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_use] = ACTIONS(200), + [anon_sym_while] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(206), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_asm] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_COLON_COLON] = ACTIONS(218), + [anon_sym_STAR] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(221), + [anon_sym_DOT_DOT] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_PIPE] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(230), + [anon_sym_move] = ACTIONS(233), + [sym_integer_literal] = ACTIONS(236), + [aux_sym_string_literal_token1] = ACTIONS(239), + [sym_char_literal] = ACTIONS(236), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(245), + [sym_metavariable] = ACTIONS(248), + [sym_raw_string_literal] = ACTIONS(236), + [sym_float_literal] = ACTIONS(236), [sym_block_comment] = ACTIONS(3), }, [9] = { [sym__statement] = STATE(13), [sym_empty_statement] = STATE(13), - [sym_primitive_type] = STATE(698), + [sym_primitive_type] = STATE(729), [sym_program_type] = STATE(13), [sym_expression_statement] = STATE(13), [sym_attribute_item] = STATE(13), [sym_inner_attribute_item] = STATE(13), - [sym_dep_item] = STATE(13), + [sym_mod_item] = STATE(13), [sym_struct_item] = STATE(13), [sym_enum_item] = STATE(13), [sym_configurable_item] = STATE(13), [sym_storage_item] = STATE(13), [sym_const_item] = STATE(13), - [sym_asm_item] = STATE(66), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(13), [sym_function_item] = STATE(13), [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2113), + [sym_function_modifiers] = STATE(2127), [sym_impl_item] = STATE(13), [sym_abi_item] = STATE(13), [sym_trait_item] = STATE(13), [sym_let_declaration] = STATE(13), [sym_use_declaration] = STATE(13), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(868), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(850), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15232,6 +15426,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -15246,7 +15443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(246), + [anon_sym_RBRACE] = ACTIONS(251), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -15254,7 +15451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -15267,100 +15464,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_dep_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_configurable_item] = STATE(13), - [sym_storage_item] = STATE(13), - [sym_const_item] = STATE(13), - [sym_asm_item] = STATE(66), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(13), - [sym_abi_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(892), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(2), + [sym_expression_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_configurable_item] = STATE(2), + [sym_storage_item] = STATE(2), + [sym_const_item] = STATE(2), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(2), + [sym_abi_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(903), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15373,6 +15572,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -15387,7 +15589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(248), + [anon_sym_RBRACE] = ACTIONS(253), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -15395,7 +15597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -15408,100 +15610,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [11] = { [sym__statement] = STATE(14), [sym_empty_statement] = STATE(14), - [sym_primitive_type] = STATE(698), + [sym_primitive_type] = STATE(729), [sym_program_type] = STATE(14), [sym_expression_statement] = STATE(14), [sym_attribute_item] = STATE(14), [sym_inner_attribute_item] = STATE(14), - [sym_dep_item] = STATE(14), + [sym_mod_item] = STATE(14), [sym_struct_item] = STATE(14), [sym_enum_item] = STATE(14), [sym_configurable_item] = STATE(14), [sym_storage_item] = STATE(14), [sym_const_item] = STATE(14), - [sym_asm_item] = STATE(66), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(14), [sym_function_item] = STATE(14), [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2113), + [sym_function_modifiers] = STATE(2127), [sym_impl_item] = STATE(14), [sym_abi_item] = STATE(14), [sym_trait_item] = STATE(14), [sym_let_declaration] = STATE(14), [sym_use_declaration] = STATE(14), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(837), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(872), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15514,6 +15718,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -15528,7 +15735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(255), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -15536,7 +15743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -15549,100 +15756,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_dep_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_configurable_item] = STATE(13), - [sym_storage_item] = STATE(13), - [sym_const_item] = STATE(13), - [sym_asm_item] = STATE(66), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(13), - [sym_abi_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(831), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(12), + [sym_expression_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_configurable_item] = STATE(12), + [sym_storage_item] = STATE(12), + [sym_const_item] = STATE(12), + [sym_asm_item] = STATE(81), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(12), + [sym_abi_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(913), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_u8] = ACTIONS(119), + [anon_sym_i8] = ACTIONS(119), + [anon_sym_u16] = ACTIONS(119), + [anon_sym_i16] = ACTIONS(119), + [anon_sym_u32] = ACTIONS(119), + [anon_sym_i32] = ACTIONS(119), + [anon_sym_u64] = ACTIONS(119), + [anon_sym_i64] = ACTIONS(119), + [anon_sym_u128] = ACTIONS(119), + [anon_sym_i128] = ACTIONS(119), + [anon_sym_u256] = ACTIONS(119), + [anon_sym_i256] = ACTIONS(119), + [anon_sym_b256] = ACTIONS(119), + [anon_sym_isize] = ACTIONS(119), + [anon_sym_usize] = ACTIONS(119), + [anon_sym_f32] = ACTIONS(119), + [anon_sym_f64] = ACTIONS(119), + [anon_sym_bool] = ACTIONS(119), + [anon_sym_char] = ACTIONS(119), + [anon_sym_str] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_contract] = ACTIONS(128), + [anon_sym_script] = ACTIONS(128), + [anon_sym_predicate] = ACTIONS(128), + [anon_sym_library] = ACTIONS(128), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(134), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_abi] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_configurable] = ACTIONS(146), + [anon_sym_const] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(152), + [anon_sym_default] = ACTIONS(155), + [anon_sym_mod] = ACTIONS(158), + [anon_sym_enum] = ACTIONS(161), + [anon_sym_fn] = ACTIONS(164), + [anon_sym_for] = ACTIONS(167), + [anon_sym_if] = ACTIONS(170), + [anon_sym_impl] = ACTIONS(173), + [anon_sym_let] = ACTIONS(176), + [anon_sym_match] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_storage] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_use] = ACTIONS(200), + [anon_sym_while] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(206), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_asm] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_COLON_COLON] = ACTIONS(218), + [anon_sym_STAR] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(221), + [anon_sym_DOT_DOT] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_PIPE] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(230), + [anon_sym_move] = ACTIONS(233), + [sym_integer_literal] = ACTIONS(236), + [aux_sym_string_literal_token1] = ACTIONS(239), + [sym_char_literal] = ACTIONS(236), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(245), + [sym_metavariable] = ACTIONS(248), + [sym_raw_string_literal] = ACTIONS(236), + [sym_float_literal] = ACTIONS(236), + [sym_block_comment] = ACTIONS(3), + }, + [13] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(12), + [sym_expression_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_configurable_item] = STATE(12), + [sym_storage_item] = STATE(12), + [sym_const_item] = STATE(12), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(12), + [sym_abi_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(869), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15655,6 +16010,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -15669,7 +16027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(252), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -15677,7 +16035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -15690,241 +16048,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [13] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_dep_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_configurable_item] = STATE(13), - [sym_storage_item] = STATE(13), - [sym_const_item] = STATE(13), - [sym_asm_item] = STATE(92), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(13), - [sym_abi_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(913), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(108), - [anon_sym_u8] = ACTIONS(111), - [anon_sym_i8] = ACTIONS(111), - [anon_sym_u16] = ACTIONS(111), - [anon_sym_i16] = ACTIONS(111), - [anon_sym_u32] = ACTIONS(111), - [anon_sym_i32] = ACTIONS(111), - [anon_sym_u64] = ACTIONS(111), - [anon_sym_i64] = ACTIONS(111), - [anon_sym_u128] = ACTIONS(111), - [anon_sym_i128] = ACTIONS(111), - [anon_sym_isize] = ACTIONS(111), - [anon_sym_usize] = ACTIONS(111), - [anon_sym_f32] = ACTIONS(111), - [anon_sym_f64] = ACTIONS(111), - [anon_sym_bool] = ACTIONS(111), - [anon_sym_char] = ACTIONS(111), - [anon_sym_str] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_contract] = ACTIONS(120), - [anon_sym_script] = ACTIONS(120), - [anon_sym_predicate] = ACTIONS(120), - [anon_sym_library] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(129), - [anon_sym_abi] = ACTIONS(132), - [anon_sym_break] = ACTIONS(135), - [anon_sym_configurable] = ACTIONS(138), - [anon_sym_const] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(144), - [anon_sym_default] = ACTIONS(147), - [anon_sym_dep] = ACTIONS(150), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_fn] = ACTIONS(156), - [anon_sym_for] = ACTIONS(159), - [anon_sym_if] = ACTIONS(162), - [anon_sym_impl] = ACTIONS(165), - [anon_sym_let] = ACTIONS(168), - [anon_sym_match] = ACTIONS(171), - [anon_sym_pub] = ACTIONS(174), - [anon_sym_return] = ACTIONS(177), - [anon_sym_storage] = ACTIONS(180), - [anon_sym_struct] = ACTIONS(183), - [anon_sym_trait] = ACTIONS(186), - [anon_sym_use] = ACTIONS(189), - [anon_sym_while] = ACTIONS(192), - [anon_sym_POUND] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_asm] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_COLON_COLON] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(198), - [anon_sym_PIPE] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(219), - [anon_sym_move] = ACTIONS(222), - [sym_integer_literal] = ACTIONS(225), - [aux_sym_string_literal_token1] = ACTIONS(228), - [sym_char_literal] = ACTIONS(225), - [anon_sym_true] = ACTIONS(231), - [anon_sym_false] = ACTIONS(231), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(234), - [sym_metavariable] = ACTIONS(237), - [sym_raw_string_literal] = ACTIONS(225), - [sym_float_literal] = ACTIONS(225), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_primitive_type] = STATE(698), - [sym_program_type] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_dep_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_configurable_item] = STATE(13), - [sym_storage_item] = STATE(13), - [sym_const_item] = STATE(13), - [sym_asm_item] = STATE(66), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2113), - [sym_impl_item] = STATE(13), - [sym_abi_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_visibility_modifier] = STATE(1269), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(834), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(65), - [sym_match_expression] = STATE(65), - [sym_while_expression] = STATE(65), - [sym_for_expression] = STATE(65), - [sym_const_block] = STATE(65), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2102), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(65), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1516), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_primitive_type] = STATE(729), + [sym_program_type] = STATE(12), + [sym_expression_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_configurable_item] = STATE(12), + [sym_storage_item] = STATE(12), + [sym_const_item] = STATE(12), + [sym_asm_item] = STATE(52), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2127), + [sym_impl_item] = STATE(12), + [sym_abi_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(838), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(61), + [sym_match_expression] = STATE(61), + [sym_while_expression] = STATE(61), + [sym_for_expression] = STATE(61), + [sym_const_block] = STATE(61), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2118), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(61), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1496), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15937,6 +16156,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -15951,7 +16173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_library] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(254), + [anon_sym_RBRACE] = ACTIONS(259), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_abi] = ACTIONS(25), [anon_sym_break] = ACTIONS(27), @@ -15959,7 +16181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_dep] = ACTIONS(37), + [anon_sym_mod] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_fn] = ACTIONS(41), [anon_sym_for] = ACTIONS(43), @@ -15972,79 +16194,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(57), [anon_sym_struct] = ACTIONS(59), [anon_sym_trait] = ACTIONS(61), - [anon_sym_use] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_type] = ACTIONS(63), + [anon_sym_use] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(757), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(764), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(256), + [anon_sym_SEMI] = ACTIONS(261), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16055,6 +16278,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -16062,127 +16288,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(256), - [anon_sym_RBRACK] = ACTIONS(256), - [anon_sym_COLON] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_RBRACK] = ACTIONS(261), + [anon_sym_COLON] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_RPAREN] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(261), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(264), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(269), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(256), - [anon_sym_BANG] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(264), - [anon_sym_SLASH] = ACTIONS(264), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(264), - [anon_sym_QMARK] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(264), - [anon_sym_GT] = ACTIONS(264), - [anon_sym_else] = ACTIONS(264), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_DOT_DOT_DOT] = ACTIONS(256), - [anon_sym_DOT_DOT] = ACTIONS(264), - [anon_sym_DOT_DOT_EQ] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(264), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_PIPE] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(264), - [anon_sym_EQ_EQ] = ACTIONS(256), - [anon_sym_BANG_EQ] = ACTIONS(256), - [anon_sym_LT_EQ] = ACTIONS(256), - [anon_sym_GT_EQ] = ACTIONS(256), - [anon_sym_LT_LT] = ACTIONS(264), - [anon_sym_GT_GT] = ACTIONS(264), - [anon_sym_PERCENT] = ACTIONS(264), - [anon_sym_PLUS_EQ] = ACTIONS(256), - [anon_sym_DASH_EQ] = ACTIONS(256), - [anon_sym_STAR_EQ] = ACTIONS(256), - [anon_sym_SLASH_EQ] = ACTIONS(256), - [anon_sym_PERCENT_EQ] = ACTIONS(256), - [anon_sym_AMP_EQ] = ACTIONS(256), - [anon_sym_PIPE_EQ] = ACTIONS(256), - [anon_sym_CARET_EQ] = ACTIONS(256), - [anon_sym_LT_LT_EQ] = ACTIONS(256), - [anon_sym_GT_GT_EQ] = ACTIONS(256), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(256), - [anon_sym_move] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(264), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_QMARK] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_else] = ACTIONS(269), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(269), + [anon_sym_DOT_DOT_EQ] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ] = ACTIONS(261), + [anon_sym_LT_EQ] = ACTIONS(261), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(269), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_PLUS_EQ] = ACTIONS(261), + [anon_sym_DASH_EQ] = ACTIONS(261), + [anon_sym_STAR_EQ] = ACTIONS(261), + [anon_sym_SLASH_EQ] = ACTIONS(261), + [anon_sym_PERCENT_EQ] = ACTIONS(261), + [anon_sym_AMP_EQ] = ACTIONS(261), + [anon_sym_PIPE_EQ] = ACTIONS(261), + [anon_sym_CARET_EQ] = ACTIONS(261), + [anon_sym_LT_LT_EQ] = ACTIONS(261), + [anon_sym_GT_GT_EQ] = ACTIONS(261), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_EQ_GT] = ACTIONS(261), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(269), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(707), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(758), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(15), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(289), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16193,6 +16419,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -16200,126 +16429,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_RBRACK] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(284), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(286), + [anon_sym_LBRACK] = ACTIONS(289), + [anon_sym_RBRACK] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(293), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_else] = ACTIONS(286), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [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_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_LT_LT_EQ] = ACTIONS(284), - [anon_sym_GT_GT_EQ] = ACTIONS(284), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_move] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_else] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [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_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_LT_LT_EQ] = ACTIONS(289), + [anon_sym_GT_GT_EQ] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(760), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(747), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(288), + [anon_sym_SEMI] = ACTIONS(295), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16330,6 +16559,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -16337,126 +16569,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(295), + [anon_sym_RBRACK] = ACTIONS(295), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(288), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(288), + [anon_sym_RPAREN] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(295), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(290), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(297), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(290), - [anon_sym_SLASH] = ACTIONS(290), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(290), - [anon_sym_QMARK] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(292), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_else] = ACTIONS(290), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(294), - [anon_sym_DOT_DOT_DOT] = ACTIONS(288), - [anon_sym_DOT_DOT] = ACTIONS(296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(280), - [anon_sym_AMP_AMP] = ACTIONS(288), - [anon_sym_PIPE_PIPE] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_CARET] = ACTIONS(290), - [anon_sym_EQ_EQ] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(288), - [anon_sym_LT_EQ] = ACTIONS(288), - [anon_sym_GT_EQ] = ACTIONS(288), - [anon_sym_LT_LT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(290), - [anon_sym_PERCENT] = ACTIONS(290), - [anon_sym_PLUS_EQ] = ACTIONS(288), - [anon_sym_DASH_EQ] = ACTIONS(288), - [anon_sym_STAR_EQ] = ACTIONS(288), - [anon_sym_SLASH_EQ] = ACTIONS(288), - [anon_sym_PERCENT_EQ] = ACTIONS(288), - [anon_sym_AMP_EQ] = ACTIONS(288), - [anon_sym_PIPE_EQ] = ACTIONS(288), - [anon_sym_CARET_EQ] = ACTIONS(288), - [anon_sym_LT_LT_EQ] = ACTIONS(288), - [anon_sym_GT_GT_EQ] = ACTIONS(288), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(288), - [anon_sym_move] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(290), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(297), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_QMARK] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_else] = ACTIONS(297), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(297), + [anon_sym_AMP] = ACTIONS(297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(295), + [anon_sym_DOT_DOT] = ACTIONS(297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(295), + [anon_sym_PIPE_PIPE] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(297), + [anon_sym_CARET] = ACTIONS(297), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(295), + [anon_sym_LT_LT] = ACTIONS(297), + [anon_sym_GT_GT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_PLUS_EQ] = ACTIONS(295), + [anon_sym_DASH_EQ] = ACTIONS(295), + [anon_sym_STAR_EQ] = ACTIONS(295), + [anon_sym_SLASH_EQ] = ACTIONS(295), + [anon_sym_PERCENT_EQ] = ACTIONS(295), + [anon_sym_AMP_EQ] = ACTIONS(295), + [anon_sym_PIPE_EQ] = ACTIONS(295), + [anon_sym_CARET_EQ] = ACTIONS(295), + [anon_sym_LT_LT_EQ] = ACTIONS(295), + [anon_sym_GT_GT_EQ] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_EQ_GT] = ACTIONS(295), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(297), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(707), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(766), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(299), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16467,6 +16699,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -16474,126 +16709,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_RBRACK] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(299), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(299), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(286), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(301), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_else] = ACTIONS(286), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [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_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_LT_LT_EQ] = ACTIONS(284), - [anon_sym_GT_GT_EQ] = ACTIONS(284), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_move] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(299), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_QMARK] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_else] = ACTIONS(301), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(299), + [anon_sym_DOT_DOT] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(299), + [anon_sym_PIPE_PIPE] = ACTIONS(299), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_BANG_EQ] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_SLASH] = ACTIONS(301), + [anon_sym_PERCENT] = ACTIONS(301), + [anon_sym_PLUS_EQ] = ACTIONS(299), + [anon_sym_DASH_EQ] = ACTIONS(299), + [anon_sym_STAR_EQ] = ACTIONS(299), + [anon_sym_SLASH_EQ] = ACTIONS(299), + [anon_sym_PERCENT_EQ] = ACTIONS(299), + [anon_sym_AMP_EQ] = ACTIONS(299), + [anon_sym_PIPE_EQ] = ACTIONS(299), + [anon_sym_CARET_EQ] = ACTIONS(299), + [anon_sym_LT_LT_EQ] = ACTIONS(299), + [anon_sym_GT_GT_EQ] = ACTIONS(299), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_EQ_GT] = ACTIONS(299), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(301), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(756), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(15), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(747), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(295), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16604,6 +16839,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -16611,126 +16849,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(300), - [anon_sym_RBRACK] = ACTIONS(300), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_RPAREN] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_SQUOTE] = ACTIONS(302), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(295), + [anon_sym_RBRACK] = ACTIONS(295), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(297), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_BANG] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_SLASH] = ACTIONS(304), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_QMARK] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(304), - [anon_sym_else] = ACTIONS(304), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_AMP] = ACTIONS(304), - [anon_sym_DOT_DOT_DOT] = ACTIONS(300), - [anon_sym_DOT_DOT] = ACTIONS(304), - [anon_sym_DOT_DOT_EQ] = ACTIONS(300), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_AMP_AMP] = ACTIONS(300), - [anon_sym_PIPE_PIPE] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(304), - [anon_sym_CARET] = ACTIONS(304), - [anon_sym_EQ_EQ] = ACTIONS(300), - [anon_sym_BANG_EQ] = ACTIONS(300), - [anon_sym_LT_EQ] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_GT_GT] = ACTIONS(304), - [anon_sym_PERCENT] = ACTIONS(304), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(300), - [anon_sym_move] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(304), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(297), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_QMARK] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_else] = ACTIONS(297), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(297), + [anon_sym_AMP] = ACTIONS(297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(295), + [anon_sym_DOT_DOT] = ACTIONS(297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(295), + [anon_sym_PIPE_PIPE] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(297), + [anon_sym_CARET] = ACTIONS(297), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(295), + [anon_sym_LT_LT] = ACTIONS(297), + [anon_sym_GT_GT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_PLUS_EQ] = ACTIONS(295), + [anon_sym_DASH_EQ] = ACTIONS(295), + [anon_sym_STAR_EQ] = ACTIONS(295), + [anon_sym_SLASH_EQ] = ACTIONS(295), + [anon_sym_PERCENT_EQ] = ACTIONS(295), + [anon_sym_AMP_EQ] = ACTIONS(295), + [anon_sym_PIPE_EQ] = ACTIONS(295), + [anon_sym_CARET_EQ] = ACTIONS(295), + [anon_sym_LT_LT_EQ] = ACTIONS(295), + [anon_sym_GT_GT_EQ] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_EQ_GT] = ACTIONS(295), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(297), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(709), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(753), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(311), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16741,6 +16979,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -16748,126 +16989,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(311), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(308), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(313), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_SLASH] = ACTIONS(308), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(308), - [anon_sym_GT] = ACTIONS(308), - [anon_sym_else] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(306), - [anon_sym_DOT_DOT] = ACTIONS(308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(306), - [anon_sym_PIPE] = ACTIONS(308), - [anon_sym_CARET] = ACTIONS(308), - [anon_sym_EQ_EQ] = ACTIONS(306), - [anon_sym_BANG_EQ] = ACTIONS(306), - [anon_sym_LT_EQ] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(306), - [anon_sym_LT_LT] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_PLUS_EQ] = ACTIONS(306), - [anon_sym_DASH_EQ] = ACTIONS(306), - [anon_sym_STAR_EQ] = ACTIONS(306), - [anon_sym_SLASH_EQ] = ACTIONS(306), - [anon_sym_PERCENT_EQ] = ACTIONS(306), - [anon_sym_AMP_EQ] = ACTIONS(306), - [anon_sym_PIPE_EQ] = ACTIONS(306), - [anon_sym_CARET_EQ] = ACTIONS(306), - [anon_sym_LT_LT_EQ] = ACTIONS(306), - [anon_sym_GT_GT_EQ] = ACTIONS(306), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(306), - [anon_sym_move] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(308), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_else] = ACTIONS(313), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_PIPE_PIPE] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_EQ_GT] = ACTIONS(311), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(313), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(709), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(744), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(315), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16878,6 +17119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -16885,126 +17129,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(306), - [anon_sym_RPAREN] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RBRACK] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(308), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(317), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_SLASH] = ACTIONS(308), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(308), - [anon_sym_GT] = ACTIONS(308), - [anon_sym_else] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(306), - [anon_sym_DOT_DOT] = ACTIONS(308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(306), - [anon_sym_PIPE] = ACTIONS(308), - [anon_sym_CARET] = ACTIONS(308), - [anon_sym_EQ_EQ] = ACTIONS(306), - [anon_sym_BANG_EQ] = ACTIONS(306), - [anon_sym_LT_EQ] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(306), - [anon_sym_LT_LT] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_PLUS_EQ] = ACTIONS(306), - [anon_sym_DASH_EQ] = ACTIONS(306), - [anon_sym_STAR_EQ] = ACTIONS(306), - [anon_sym_SLASH_EQ] = ACTIONS(306), - [anon_sym_PERCENT_EQ] = ACTIONS(306), - [anon_sym_AMP_EQ] = ACTIONS(306), - [anon_sym_PIPE_EQ] = ACTIONS(306), - [anon_sym_CARET_EQ] = ACTIONS(306), - [anon_sym_LT_LT_EQ] = ACTIONS(306), - [anon_sym_GT_GT_EQ] = ACTIONS(306), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(306), - [anon_sym_move] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(308), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_else] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(315), + [anon_sym_DASH_EQ] = ACTIONS(315), + [anon_sym_STAR_EQ] = ACTIONS(315), + [anon_sym_SLASH_EQ] = ACTIONS(315), + [anon_sym_PERCENT_EQ] = ACTIONS(315), + [anon_sym_AMP_EQ] = ACTIONS(315), + [anon_sym_PIPE_EQ] = ACTIONS(315), + [anon_sym_CARET_EQ] = ACTIONS(315), + [anon_sym_LT_LT_EQ] = ACTIONS(315), + [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(317), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(752), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(744), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(315), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17015,6 +17259,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -17022,125 +17269,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RBRACK] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(312), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(317), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(310), - [anon_sym_BANG] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(292), - [anon_sym_GT] = ACTIONS(312), - [anon_sym_else] = ACTIONS(312), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(294), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(280), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(310), - [anon_sym_move] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(312), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_else] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(315), + [anon_sym_DASH_EQ] = ACTIONS(315), + [anon_sym_STAR_EQ] = ACTIONS(315), + [anon_sym_SLASH_EQ] = ACTIONS(315), + [anon_sym_PERCENT_EQ] = ACTIONS(315), + [anon_sym_AMP_EQ] = ACTIONS(315), + [anon_sym_PIPE_EQ] = ACTIONS(315), + [anon_sym_CARET_EQ] = ACTIONS(315), + [anon_sym_LT_LT_EQ] = ACTIONS(315), + [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(317), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(857), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(846), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17151,6 +17398,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -17158,120 +17408,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(256), - [anon_sym_COLON] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_COLON] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(261), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(264), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(269), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(264), - [anon_sym_SLASH] = ACTIONS(264), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(264), - [anon_sym_QMARK] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(264), - [anon_sym_GT] = ACTIONS(264), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_DOT_DOT_DOT] = ACTIONS(256), - [anon_sym_DOT_DOT] = ACTIONS(264), - [anon_sym_DOT_DOT_EQ] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(264), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_PIPE] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(264), - [anon_sym_EQ_EQ] = ACTIONS(256), - [anon_sym_BANG_EQ] = ACTIONS(256), - [anon_sym_LT_EQ] = ACTIONS(256), - [anon_sym_GT_EQ] = ACTIONS(256), - [anon_sym_LT_LT] = ACTIONS(264), - [anon_sym_GT_GT] = ACTIONS(264), - [anon_sym_PERCENT] = ACTIONS(264), - [anon_sym_PLUS_EQ] = ACTIONS(256), - [anon_sym_DASH_EQ] = ACTIONS(256), - [anon_sym_STAR_EQ] = ACTIONS(256), - [anon_sym_SLASH_EQ] = ACTIONS(256), - [anon_sym_PERCENT_EQ] = ACTIONS(256), - [anon_sym_AMP_EQ] = ACTIONS(256), - [anon_sym_PIPE_EQ] = ACTIONS(256), - [anon_sym_CARET_EQ] = ACTIONS(256), - [anon_sym_LT_LT_EQ] = ACTIONS(256), - [anon_sym_GT_GT_EQ] = ACTIONS(256), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [anon_sym_DOT] = ACTIONS(264), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_QMARK] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(261), + [anon_sym_DOT_DOT] = ACTIONS(269), + [anon_sym_DOT_DOT_EQ] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(261), + [anon_sym_PIPE_PIPE] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(261), + [anon_sym_BANG_EQ] = ACTIONS(261), + [anon_sym_LT_EQ] = ACTIONS(261), + [anon_sym_GT_EQ] = ACTIONS(261), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(269), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_PLUS_EQ] = ACTIONS(261), + [anon_sym_DASH_EQ] = ACTIONS(261), + [anon_sym_STAR_EQ] = ACTIONS(261), + [anon_sym_SLASH_EQ] = ACTIONS(261), + [anon_sym_PERCENT_EQ] = ACTIONS(261), + [anon_sym_AMP_EQ] = ACTIONS(261), + [anon_sym_PIPE_EQ] = ACTIONS(261), + [anon_sym_CARET_EQ] = ACTIONS(261), + [anon_sym_LT_LT_EQ] = ACTIONS(261), + [anon_sym_GT_GT_EQ] = ACTIONS(261), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(269), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(869), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(744), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17282,6 +17532,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -17289,119 +17542,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(315), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(290), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(317), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(290), - [anon_sym_SLASH] = ACTIONS(290), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(290), - [anon_sym_QMARK] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(292), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(322), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(288), - [anon_sym_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(288), - [anon_sym_PIPE_PIPE] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_CARET] = ACTIONS(290), - [anon_sym_EQ_EQ] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(288), - [anon_sym_LT_EQ] = ACTIONS(288), - [anon_sym_GT_EQ] = ACTIONS(288), - [anon_sym_LT_LT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(290), - [anon_sym_PERCENT] = ACTIONS(290), - [anon_sym_PLUS_EQ] = ACTIONS(288), - [anon_sym_DASH_EQ] = ACTIONS(288), - [anon_sym_STAR_EQ] = ACTIONS(288), - [anon_sym_SLASH_EQ] = ACTIONS(288), - [anon_sym_PERCENT_EQ] = ACTIONS(288), - [anon_sym_AMP_EQ] = ACTIONS(288), - [anon_sym_PIPE_EQ] = ACTIONS(288), - [anon_sym_CARET_EQ] = ACTIONS(288), - [anon_sym_LT_LT_EQ] = ACTIONS(288), - [anon_sym_GT_GT_EQ] = ACTIONS(288), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [anon_sym_DOT] = ACTIONS(290), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(315), + [anon_sym_DASH_EQ] = ACTIONS(315), + [anon_sym_STAR_EQ] = ACTIONS(315), + [anon_sym_SLASH_EQ] = ACTIONS(315), + [anon_sym_PERCENT_EQ] = ACTIONS(315), + [anon_sym_AMP_EQ] = ACTIONS(315), + [anon_sym_PIPE_EQ] = ACTIONS(315), + [anon_sym_CARET_EQ] = ACTIONS(315), + [anon_sym_LT_LT_EQ] = ACTIONS(315), + [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(317), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(707), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(839), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17412,6 +17665,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -17419,119 +17675,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(286), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(301), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [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_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_LT_LT_EQ] = ACTIONS(284), - [anon_sym_GT_GT_EQ] = ACTIONS(284), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [anon_sym_DOT] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_QMARK] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(299), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(299), + [anon_sym_PIPE_PIPE] = ACTIONS(299), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_BANG_EQ] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_SLASH] = ACTIONS(301), + [anon_sym_PERCENT] = ACTIONS(301), + [anon_sym_PLUS_EQ] = ACTIONS(299), + [anon_sym_DASH_EQ] = ACTIONS(299), + [anon_sym_STAR_EQ] = ACTIONS(299), + [anon_sym_SLASH_EQ] = ACTIONS(299), + [anon_sym_PERCENT_EQ] = ACTIONS(299), + [anon_sym_AMP_EQ] = ACTIONS(299), + [anon_sym_PIPE_EQ] = ACTIONS(299), + [anon_sym_CARET_EQ] = ACTIONS(299), + [anon_sym_LT_LT_EQ] = ACTIONS(299), + [anon_sym_GT_GT_EQ] = ACTIONS(299), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(301), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(879), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(23), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(744), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17542,6 +17798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -17549,119 +17808,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(300), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(300), - [anon_sym_SQUOTE] = ACTIONS(302), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(304), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(317), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_SLASH] = ACTIONS(304), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_QMARK] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(304), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_AMP] = ACTIONS(304), - [anon_sym_DOT_DOT_DOT] = ACTIONS(300), - [anon_sym_DOT_DOT] = ACTIONS(304), - [anon_sym_DOT_DOT_EQ] = ACTIONS(300), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_AMP_AMP] = ACTIONS(300), - [anon_sym_PIPE_PIPE] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(304), - [anon_sym_CARET] = ACTIONS(304), - [anon_sym_EQ_EQ] = ACTIONS(300), - [anon_sym_BANG_EQ] = ACTIONS(300), - [anon_sym_LT_EQ] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_GT_GT] = ACTIONS(304), - [anon_sym_PERCENT] = ACTIONS(304), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [anon_sym_DOT] = ACTIONS(304), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(315), + [anon_sym_DASH_EQ] = ACTIONS(315), + [anon_sym_STAR_EQ] = ACTIONS(315), + [anon_sym_SLASH_EQ] = ACTIONS(315), + [anon_sym_PERCENT_EQ] = ACTIONS(315), + [anon_sym_AMP_EQ] = ACTIONS(315), + [anon_sym_PIPE_EQ] = ACTIONS(315), + [anon_sym_CARET_EQ] = ACTIONS(315), + [anon_sym_LT_LT_EQ] = ACTIONS(315), + [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(317), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(709), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(851), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17672,6 +17931,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -17679,119 +17941,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(308), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(313), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_SLASH] = ACTIONS(308), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(308), - [anon_sym_GT] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(306), - [anon_sym_DOT_DOT] = ACTIONS(308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(306), - [anon_sym_PIPE] = ACTIONS(308), - [anon_sym_CARET] = ACTIONS(308), - [anon_sym_EQ_EQ] = ACTIONS(306), - [anon_sym_BANG_EQ] = ACTIONS(306), - [anon_sym_LT_EQ] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(306), - [anon_sym_LT_LT] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_PLUS_EQ] = ACTIONS(306), - [anon_sym_DASH_EQ] = ACTIONS(306), - [anon_sym_STAR_EQ] = ACTIONS(306), - [anon_sym_SLASH_EQ] = ACTIONS(306), - [anon_sym_PERCENT_EQ] = ACTIONS(306), - [anon_sym_AMP_EQ] = ACTIONS(306), - [anon_sym_PIPE_EQ] = ACTIONS(306), - [anon_sym_CARET_EQ] = ACTIONS(306), - [anon_sym_LT_LT_EQ] = ACTIONS(306), - [anon_sym_GT_GT_EQ] = ACTIONS(306), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [anon_sym_DOT] = ACTIONS(308), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_PIPE_PIPE] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(313), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(873), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(871), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(23), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17802,6 +18064,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -17809,119 +18074,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(312), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_LBRACK] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(291), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(293), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(292), - [anon_sym_GT] = ACTIONS(312), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(322), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [anon_sym_DOT] = ACTIONS(312), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [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_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_LT_LT_EQ] = ACTIONS(289), + [anon_sym_GT_GT_EQ] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(293), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(709), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(747), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17932,6 +18197,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -17939,119 +18207,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(295), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(308), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(297), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_SLASH] = ACTIONS(308), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(308), - [anon_sym_GT] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(306), - [anon_sym_DOT_DOT] = ACTIONS(308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(306), - [anon_sym_PIPE] = ACTIONS(308), - [anon_sym_CARET] = ACTIONS(308), - [anon_sym_EQ_EQ] = ACTIONS(306), - [anon_sym_BANG_EQ] = ACTIONS(306), - [anon_sym_LT_EQ] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(306), - [anon_sym_LT_LT] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_PLUS_EQ] = ACTIONS(306), - [anon_sym_DASH_EQ] = ACTIONS(306), - [anon_sym_STAR_EQ] = ACTIONS(306), - [anon_sym_SLASH_EQ] = ACTIONS(306), - [anon_sym_PERCENT_EQ] = ACTIONS(306), - [anon_sym_AMP_EQ] = ACTIONS(306), - [anon_sym_PIPE_EQ] = ACTIONS(306), - [anon_sym_CARET_EQ] = ACTIONS(306), - [anon_sym_LT_LT_EQ] = ACTIONS(306), - [anon_sym_GT_GT_EQ] = ACTIONS(306), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [anon_sym_DOT] = ACTIONS(308), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_EQ] = ACTIONS(297), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_QMARK] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(297), + [anon_sym_AMP] = ACTIONS(297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(295), + [anon_sym_DOT_DOT] = ACTIONS(297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(295), + [anon_sym_PIPE_PIPE] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(297), + [anon_sym_CARET] = ACTIONS(297), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(295), + [anon_sym_LT_LT] = ACTIONS(297), + [anon_sym_GT_GT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_PLUS_EQ] = ACTIONS(295), + [anon_sym_DASH_EQ] = ACTIONS(295), + [anon_sym_STAR_EQ] = ACTIONS(295), + [anon_sym_SLASH_EQ] = ACTIONS(295), + [anon_sym_PERCENT_EQ] = ACTIONS(295), + [anon_sym_AMP_EQ] = ACTIONS(295), + [anon_sym_PIPE_EQ] = ACTIONS(295), + [anon_sym_CARET_EQ] = ACTIONS(295), + [anon_sym_LT_LT_EQ] = ACTIONS(295), + [anon_sym_GT_GT_EQ] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(297), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(707), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(747), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -18062,6 +18330,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -18069,135 +18340,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(295), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_as] = ACTIONS(286), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_as] = ACTIONS(297), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [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_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_LT_LT_EQ] = ACTIONS(284), - [anon_sym_GT_GT_EQ] = ACTIONS(284), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [anon_sym_DOT] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_EQ] = ACTIONS(297), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_QMARK] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(297), + [anon_sym_AMP] = ACTIONS(297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(295), + [anon_sym_DOT_DOT] = ACTIONS(297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(295), + [anon_sym_PIPE_PIPE] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(297), + [anon_sym_CARET] = ACTIONS(297), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT_EQ] = ACTIONS(295), + [anon_sym_LT_LT] = ACTIONS(297), + [anon_sym_GT_GT] = ACTIONS(297), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_PLUS_EQ] = ACTIONS(295), + [anon_sym_DASH_EQ] = ACTIONS(295), + [anon_sym_STAR_EQ] = ACTIONS(295), + [anon_sym_SLASH_EQ] = ACTIONS(295), + [anon_sym_PERCENT_EQ] = ACTIONS(295), + [anon_sym_AMP_EQ] = ACTIONS(295), + [anon_sym_PIPE_EQ] = ACTIONS(295), + [anon_sym_CARET_EQ] = ACTIONS(295), + [anon_sym_LT_LT_EQ] = ACTIONS(295), + [anon_sym_GT_GT_EQ] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(297), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_primitive_type] = STATE(788), - [sym_attribute_item] = STATE(46), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1781), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1380), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(808), - [sym_scoped_identifier] = STATE(791), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(46), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(338), + [sym_primitive_type] = STATE(802), + [sym_attribute_item] = STATE(49), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(2163), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1403), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(814), + [sym_scoped_identifier] = STATE(797), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(49), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(343), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -18208,6 +18479,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -18215,111 +18489,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_RBRACK] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(344), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_RBRACK] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(348), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(353), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_COMMA] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(366), - [sym_metavariable] = ACTIONS(368), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(371), + [sym_metavariable] = ACTIONS(373), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_primitive_type] = STATE(805), - [sym_attribute_item] = STATE(79), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1512), - [sym_bracketed_type] = STATE(2158), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1377), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(858), - [sym_scoped_identifier] = STATE(802), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(79), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(370), + [sym_primitive_type] = STATE(806), + [sym_attribute_item] = STATE(80), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1511), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1420), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(849), + [sym_scoped_identifier] = STATE(809), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(80), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -18330,6 +18604,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -18337,110 +18614,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_RPAREN] = ACTIONS(374), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(376), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(381), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(382), - [sym_metavariable] = ACTIONS(384), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(387), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_primitive_type] = STATE(805), - [sym_attribute_item] = STATE(79), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1512), - [sym_bracketed_type] = STATE(2158), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1377), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(858), - [sym_scoped_identifier] = STATE(802), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(79), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(370), + [sym_primitive_type] = STATE(806), + [sym_attribute_item] = STATE(80), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1511), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1420), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(849), + [sym_scoped_identifier] = STATE(809), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(80), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -18451,6 +18728,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -18458,110 +18738,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_RPAREN] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(376), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(381), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(382), - [sym_metavariable] = ACTIONS(384), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(387), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_primitive_type] = STATE(805), - [sym_attribute_item] = STATE(79), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1512), - [sym_bracketed_type] = STATE(2158), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1377), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(858), - [sym_scoped_identifier] = STATE(802), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(79), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(370), + [sym_primitive_type] = STATE(806), + [sym_attribute_item] = STATE(80), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1511), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1420), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(849), + [sym_scoped_identifier] = STATE(809), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(80), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -18572,6 +18852,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -18579,108 +18862,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(376), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(381), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(382), - [sym_metavariable] = ACTIONS(384), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(387), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_primitive_type] = STATE(788), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1051), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1380), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(762), - [sym_scoped_identifier] = STATE(791), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(338), + [sym_primitive_type] = STATE(802), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1188), + [sym_bracketed_type] = STATE(2163), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1403), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(770), + [sym_scoped_identifier] = STATE(797), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(343), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -18691,6 +18974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -18698,107 +18984,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(344), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(348), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(353), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(369), + [sym_mutable_specifier] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(366), - [sym_metavariable] = ACTIONS(368), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(371), + [sym_metavariable] = ACTIONS(373), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_primitive_type] = STATE(810), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1051), - [sym_bracketed_type] = STATE(2156), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1364), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(762), - [sym_scoped_identifier] = STATE(890), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(394), + [sym_primitive_type] = STATE(811), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1188), + [sym_bracketed_type] = STATE(2162), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1394), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(770), + [sym_scoped_identifier] = STATE(906), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(399), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -18809,6 +19095,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -18816,107 +19105,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(398), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(403), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(402), - [sym_mutable_specifier] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(407), + [sym_mutable_specifier] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(406), - [sym_metavariable] = ACTIONS(408), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(411), + [sym_metavariable] = ACTIONS(413), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_primitive_type] = STATE(805), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1051), - [sym_bracketed_type] = STATE(2158), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1377), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(762), - [sym_scoped_identifier] = STATE(802), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(370), + [sym_primitive_type] = STATE(806), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1188), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1420), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(770), + [sym_scoped_identifier] = STATE(809), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -18927,6 +19216,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -18934,107 +19226,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(376), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(381), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(380), - [sym_mutable_specifier] = ACTIONS(410), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(385), + [sym_mutable_specifier] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(382), - [sym_metavariable] = ACTIONS(384), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(387), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym_primitive_type] = STATE(810), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1099), - [sym_bracketed_type] = STATE(2156), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1364), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(761), - [sym_scoped_identifier] = STATE(890), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(394), + [sym_primitive_type] = STATE(811), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1187), + [sym_bracketed_type] = STATE(2162), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1394), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(771), + [sym_scoped_identifier] = STATE(906), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(399), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19045,6 +19337,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -19052,106 +19347,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(398), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(403), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(402), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(406), - [sym_metavariable] = ACTIONS(408), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(411), + [sym_metavariable] = ACTIONS(413), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_primitive_type] = STATE(805), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1099), - [sym_bracketed_type] = STATE(2158), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1377), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(761), - [sym_scoped_identifier] = STATE(802), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(370), + [sym_primitive_type] = STATE(806), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1187), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1420), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(771), + [sym_scoped_identifier] = STATE(809), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19162,6 +19457,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -19169,106 +19467,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(376), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(381), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(382), - [sym_metavariable] = ACTIONS(384), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(387), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_primitive_type] = STATE(810), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1609), - [sym_bracketed_type] = STATE(2156), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1364), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(919), - [sym_scoped_identifier] = STATE(890), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(816), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(816), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(394), + [sym_primitive_type] = STATE(802), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1187), + [sym_bracketed_type] = STATE(2163), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1403), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(771), + [sym_scoped_identifier] = STATE(797), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(343), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19279,6 +19577,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -19286,106 +19587,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(398), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(353), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(402), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(412), - [sym_metavariable] = ACTIONS(408), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(371), + [sym_metavariable] = ACTIONS(373), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_primitive_type] = STATE(788), - [sym_asm_item] = STATE(726), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1099), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_function] = STATE(656), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1380), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(761), - [sym_scoped_identifier] = STATE(791), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_scoped_type_identifier] = STATE(987), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(338), + [sym_primitive_type] = STATE(811), + [sym_asm_item] = STATE(675), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1697), + [sym_bracketed_type] = STATE(2162), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_function] = STATE(649), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1394), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(942), + [sym_scoped_identifier] = STATE(906), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_scoped_type_identifier] = STATE(1112), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(832), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(832), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(399), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19396,6 +19697,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -19403,93 +19707,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(344), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(346), + [anon_sym_const] = ACTIONS(351), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(348), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(403), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(358), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(363), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(366), - [sym_metavariable] = ACTIONS(368), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(417), + [sym_metavariable] = ACTIONS(413), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(46), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(808), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(46), + [sym_else_clause] = STATE(59), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_u256] = ACTIONS(421), + [anon_sym_i256] = ACTIONS(421), + [anon_sym_b256] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_contract] = ACTIONS(421), + [anon_sym_script] = ACTIONS(421), + [anon_sym_predicate] = ACTIONS(421), + [anon_sym_library] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_abi] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_configurable] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_mod] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(421), + [anon_sym_fn] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_impl] = ACTIONS(421), + [anon_sym_let] = ACTIONS(421), + [anon_sym_match] = ACTIONS(421), + [anon_sym_pub] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_storage] = ACTIONS(421), + [anon_sym_struct] = ACTIONS(421), + [anon_sym_trait] = ACTIONS(421), + [anon_sym_type] = ACTIONS(421), + [anon_sym_use] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_asm] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_else] = ACTIONS(423), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(421), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PERCENT] = ACTIONS(421), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_STAR_EQ] = ACTIONS(419), + [anon_sym_SLASH_EQ] = ACTIONS(419), + [anon_sym_PERCENT_EQ] = ACTIONS(419), + [anon_sym_AMP_EQ] = ACTIONS(419), + [anon_sym_PIPE_EQ] = ACTIONS(419), + [anon_sym_CARET_EQ] = ACTIONS(419), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_GT_GT_EQ] = ACTIONS(419), + [anon_sym_yield] = ACTIONS(421), + [anon_sym_move] = ACTIONS(421), + [anon_sym_DOT] = ACTIONS(421), + [sym_integer_literal] = ACTIONS(419), + [aux_sym_string_literal_token1] = ACTIONS(419), + [sym_char_literal] = ACTIONS(419), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(421), + [sym_metavariable] = ACTIONS(419), + [sym_raw_string_literal] = ACTIONS(419), + [sym_float_literal] = ACTIONS(419), + [sym_block_comment] = ACTIONS(3), + }, + [43] = { + [ts_builtin_sym_end] = ACTIONS(425), + [sym_identifier] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(427), + [anon_sym_i8] = ACTIONS(427), + [anon_sym_u16] = ACTIONS(427), + [anon_sym_i16] = ACTIONS(427), + [anon_sym_u32] = ACTIONS(427), + [anon_sym_i32] = ACTIONS(427), + [anon_sym_u64] = ACTIONS(427), + [anon_sym_i64] = ACTIONS(427), + [anon_sym_u128] = ACTIONS(427), + [anon_sym_i128] = ACTIONS(427), + [anon_sym_u256] = ACTIONS(427), + [anon_sym_i256] = ACTIONS(427), + [anon_sym_b256] = ACTIONS(427), + [anon_sym_isize] = ACTIONS(427), + [anon_sym_usize] = ACTIONS(427), + [anon_sym_f32] = ACTIONS(427), + [anon_sym_f64] = ACTIONS(427), + [anon_sym_bool] = ACTIONS(427), + [anon_sym_char] = ACTIONS(427), + [anon_sym_str] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_contract] = ACTIONS(427), + [anon_sym_script] = ACTIONS(427), + [anon_sym_predicate] = ACTIONS(427), + [anon_sym_library] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_abi] = ACTIONS(427), + [anon_sym_as] = ACTIONS(427), + [anon_sym_break] = ACTIONS(427), + [anon_sym_configurable] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(427), + [anon_sym_mod] = ACTIONS(427), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_fn] = ACTIONS(427), + [anon_sym_for] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_impl] = ACTIONS(427), + [anon_sym_let] = ACTIONS(427), + [anon_sym_match] = ACTIONS(427), + [anon_sym_pub] = ACTIONS(427), + [anon_sym_return] = ACTIONS(427), + [anon_sym_storage] = ACTIONS(427), + [anon_sym_struct] = ACTIONS(427), + [anon_sym_trait] = ACTIONS(427), + [anon_sym_type] = ACTIONS(427), + [anon_sym_use] = ACTIONS(427), + [anon_sym_while] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_asm] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_else] = ACTIONS(427), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_move] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(425), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_char_literal] = ACTIONS(425), + [anon_sym_true] = ACTIONS(427), + [anon_sym_false] = ACTIONS(427), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(427), + [sym_metavariable] = ACTIONS(425), + [sym_raw_string_literal] = ACTIONS(425), + [sym_float_literal] = ACTIONS(425), + [sym_block_comment] = ACTIONS(3), + }, + [44] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(49), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(814), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(49), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -19501,6 +20024,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -19509,94 +20035,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(342), + [anon_sym_RBRACK] = ACTIONS(347), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_COMMA] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [43] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(70), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(812), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(70), + [45] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(772), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(429), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19607,6 +20132,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -19615,93 +20143,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(429), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_COMMA] = ACTIONS(416), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [44] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(768), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [46] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(84), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(829), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(84), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(418), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19712,6 +20242,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -19720,200 +20253,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(418), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [45] = { - [sym_else_clause] = STATE(68), - [ts_builtin_sym_end] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_isize] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_f32] = ACTIONS(422), - [anon_sym_f64] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_char] = ACTIONS(422), - [anon_sym_str] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(420), - [anon_sym_contract] = ACTIONS(422), - [anon_sym_script] = ACTIONS(422), - [anon_sym_predicate] = ACTIONS(422), - [anon_sym_library] = ACTIONS(422), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(422), - [anon_sym_abi] = ACTIONS(422), - [anon_sym_as] = ACTIONS(422), - [anon_sym_break] = ACTIONS(422), - [anon_sym_configurable] = ACTIONS(422), - [anon_sym_const] = ACTIONS(422), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_default] = ACTIONS(422), - [anon_sym_dep] = ACTIONS(422), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_fn] = ACTIONS(422), - [anon_sym_for] = ACTIONS(422), - [anon_sym_if] = ACTIONS(422), - [anon_sym_impl] = ACTIONS(422), - [anon_sym_let] = ACTIONS(422), - [anon_sym_match] = ACTIONS(422), - [anon_sym_pub] = ACTIONS(422), - [anon_sym_return] = ACTIONS(422), - [anon_sym_storage] = ACTIONS(422), - [anon_sym_struct] = ACTIONS(422), - [anon_sym_trait] = ACTIONS(422), - [anon_sym_use] = ACTIONS(422), - [anon_sym_while] = ACTIONS(422), - [anon_sym_POUND] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_asm] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_else] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_DOT_DOT] = ACTIONS(422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(420), - [anon_sym_DASH_EQ] = ACTIONS(420), - [anon_sym_STAR_EQ] = ACTIONS(420), - [anon_sym_SLASH_EQ] = ACTIONS(420), - [anon_sym_PERCENT_EQ] = ACTIONS(420), - [anon_sym_AMP_EQ] = ACTIONS(420), - [anon_sym_PIPE_EQ] = ACTIONS(420), - [anon_sym_CARET_EQ] = ACTIONS(420), - [anon_sym_LT_LT_EQ] = ACTIONS(420), - [anon_sym_GT_GT_EQ] = ACTIONS(420), - [anon_sym_yield] = ACTIONS(422), - [anon_sym_move] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(420), - [aux_sym_string_literal_token1] = ACTIONS(420), - [sym_char_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), + [47] = { + [ts_builtin_sym_end] = ACTIONS(435), + [sym_identifier] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_u8] = ACTIONS(437), + [anon_sym_i8] = ACTIONS(437), + [anon_sym_u16] = ACTIONS(437), + [anon_sym_i16] = ACTIONS(437), + [anon_sym_u32] = ACTIONS(437), + [anon_sym_i32] = ACTIONS(437), + [anon_sym_u64] = ACTIONS(437), + [anon_sym_i64] = ACTIONS(437), + [anon_sym_u128] = ACTIONS(437), + [anon_sym_i128] = ACTIONS(437), + [anon_sym_u256] = ACTIONS(437), + [anon_sym_i256] = ACTIONS(437), + [anon_sym_b256] = ACTIONS(437), + [anon_sym_isize] = ACTIONS(437), + [anon_sym_usize] = ACTIONS(437), + [anon_sym_f32] = ACTIONS(437), + [anon_sym_f64] = ACTIONS(437), + [anon_sym_bool] = ACTIONS(437), + [anon_sym_char] = ACTIONS(437), + [anon_sym_str] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_contract] = ACTIONS(437), + [anon_sym_script] = ACTIONS(437), + [anon_sym_predicate] = ACTIONS(437), + [anon_sym_library] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_SQUOTE] = ACTIONS(437), + [anon_sym_abi] = ACTIONS(437), + [anon_sym_as] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_configurable] = ACTIONS(437), + [anon_sym_const] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_default] = ACTIONS(437), + [anon_sym_mod] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(437), + [anon_sym_fn] = ACTIONS(437), + [anon_sym_for] = ACTIONS(437), + [anon_sym_if] = ACTIONS(437), + [anon_sym_impl] = ACTIONS(437), + [anon_sym_let] = ACTIONS(437), + [anon_sym_match] = ACTIONS(437), + [anon_sym_pub] = ACTIONS(437), + [anon_sym_return] = ACTIONS(437), + [anon_sym_storage] = ACTIONS(437), + [anon_sym_struct] = ACTIONS(437), + [anon_sym_trait] = ACTIONS(437), + [anon_sym_type] = ACTIONS(437), + [anon_sym_use] = ACTIONS(437), + [anon_sym_while] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(437), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(437), + [anon_sym_else] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(437), + [anon_sym_AMP] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(437), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(435), + [anon_sym_LT_EQ] = ACTIONS(435), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_GT_GT] = ACTIONS(437), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(437), + [anon_sym_PLUS_EQ] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(435), + [anon_sym_STAR_EQ] = ACTIONS(435), + [anon_sym_SLASH_EQ] = ACTIONS(435), + [anon_sym_PERCENT_EQ] = ACTIONS(435), + [anon_sym_AMP_EQ] = ACTIONS(435), + [anon_sym_PIPE_EQ] = ACTIONS(435), + [anon_sym_CARET_EQ] = ACTIONS(435), + [anon_sym_LT_LT_EQ] = ACTIONS(435), + [anon_sym_GT_GT_EQ] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(437), + [anon_sym_move] = ACTIONS(437), + [anon_sym_DOT] = ACTIONS(437), + [sym_integer_literal] = ACTIONS(435), + [aux_sym_string_literal_token1] = ACTIONS(435), + [sym_char_literal] = ACTIONS(435), + [anon_sym_true] = ACTIONS(437), + [anon_sym_false] = ACTIONS(437), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(422), - [sym_metavariable] = ACTIONS(420), - [sym_raw_string_literal] = ACTIONS(420), - [sym_float_literal] = ACTIONS(420), + [sym_self] = ACTIONS(437), + [sym_metavariable] = ACTIONS(435), + [sym_raw_string_literal] = ACTIONS(435), + [sym_float_literal] = ACTIONS(435), [sym_block_comment] = ACTIONS(3), }, - [46] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(480), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(799), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(480), + [48] = { + [ts_builtin_sym_end] = ACTIONS(439), + [sym_identifier] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [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_u256] = ACTIONS(441), + [anon_sym_i256] = ACTIONS(441), + [anon_sym_b256] = ACTIONS(441), + [anon_sym_isize] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_f32] = ACTIONS(441), + [anon_sym_f64] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_char] = ACTIONS(441), + [anon_sym_str] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_contract] = ACTIONS(441), + [anon_sym_script] = ACTIONS(441), + [anon_sym_predicate] = ACTIONS(441), + [anon_sym_library] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_abi] = ACTIONS(441), + [anon_sym_as] = ACTIONS(441), + [anon_sym_break] = ACTIONS(441), + [anon_sym_configurable] = ACTIONS(441), + [anon_sym_const] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(441), + [anon_sym_default] = ACTIONS(441), + [anon_sym_mod] = ACTIONS(441), + [anon_sym_enum] = ACTIONS(441), + [anon_sym_fn] = ACTIONS(441), + [anon_sym_for] = ACTIONS(441), + [anon_sym_if] = ACTIONS(441), + [anon_sym_impl] = ACTIONS(441), + [anon_sym_let] = ACTIONS(441), + [anon_sym_match] = ACTIONS(441), + [anon_sym_pub] = ACTIONS(441), + [anon_sym_return] = ACTIONS(441), + [anon_sym_storage] = ACTIONS(441), + [anon_sym_struct] = ACTIONS(441), + [anon_sym_trait] = ACTIONS(441), + [anon_sym_type] = ACTIONS(441), + [anon_sym_use] = ACTIONS(441), + [anon_sym_while] = ACTIONS(441), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_EQ] = ACTIONS(441), + [anon_sym_asm] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_QMARK] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_GT] = ACTIONS(441), + [anon_sym_else] = ACTIONS(441), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(439), + [anon_sym_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), + [anon_sym_STAR_EQ] = ACTIONS(439), + [anon_sym_SLASH_EQ] = ACTIONS(439), + [anon_sym_PERCENT_EQ] = ACTIONS(439), + [anon_sym_AMP_EQ] = ACTIONS(439), + [anon_sym_PIPE_EQ] = ACTIONS(439), + [anon_sym_CARET_EQ] = ACTIONS(439), + [anon_sym_LT_LT_EQ] = ACTIONS(439), + [anon_sym_GT_GT_EQ] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(441), + [anon_sym_DOT] = ACTIONS(441), + [sym_integer_literal] = ACTIONS(439), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(439), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(441), + [sym_metavariable] = ACTIONS(439), + [sym_raw_string_literal] = ACTIONS(439), + [sym_float_literal] = ACTIONS(439), + [sym_block_comment] = ACTIONS(3), + }, + [49] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(476), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(810), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(476), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -19925,6 +20569,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -19933,200 +20580,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(426), + [anon_sym_RBRACK] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_COMMA] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(445), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [47] = { - [ts_builtin_sym_end] = ACTIONS(430), - [sym_identifier] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_u8] = ACTIONS(432), - [anon_sym_i8] = ACTIONS(432), - [anon_sym_u16] = ACTIONS(432), - [anon_sym_i16] = ACTIONS(432), - [anon_sym_u32] = ACTIONS(432), - [anon_sym_i32] = ACTIONS(432), - [anon_sym_u64] = ACTIONS(432), - [anon_sym_i64] = ACTIONS(432), - [anon_sym_u128] = ACTIONS(432), - [anon_sym_i128] = ACTIONS(432), - [anon_sym_isize] = ACTIONS(432), - [anon_sym_usize] = ACTIONS(432), - [anon_sym_f32] = ACTIONS(432), - [anon_sym_f64] = ACTIONS(432), - [anon_sym_bool] = ACTIONS(432), - [anon_sym_char] = ACTIONS(432), - [anon_sym_str] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(430), - [anon_sym_contract] = ACTIONS(432), - [anon_sym_script] = ACTIONS(432), - [anon_sym_predicate] = ACTIONS(432), - [anon_sym_library] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_abi] = ACTIONS(432), - [anon_sym_as] = ACTIONS(432), - [anon_sym_break] = ACTIONS(432), - [anon_sym_configurable] = ACTIONS(432), - [anon_sym_const] = ACTIONS(432), - [anon_sym_continue] = ACTIONS(432), - [anon_sym_default] = ACTIONS(432), - [anon_sym_dep] = ACTIONS(432), - [anon_sym_enum] = ACTIONS(432), - [anon_sym_fn] = ACTIONS(432), - [anon_sym_for] = ACTIONS(432), - [anon_sym_if] = ACTIONS(432), - [anon_sym_impl] = ACTIONS(432), - [anon_sym_let] = ACTIONS(432), - [anon_sym_match] = ACTIONS(432), - [anon_sym_pub] = ACTIONS(432), - [anon_sym_return] = ACTIONS(432), - [anon_sym_storage] = ACTIONS(432), - [anon_sym_struct] = ACTIONS(432), - [anon_sym_trait] = ACTIONS(432), - [anon_sym_use] = ACTIONS(432), - [anon_sym_while] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_asm] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_QMARK] = ACTIONS(430), - [anon_sym_LT] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(432), - [anon_sym_else] = ACTIONS(432), - [anon_sym_COLON_COLON] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(430), - [anon_sym_DOT_DOT] = ACTIONS(432), - [anon_sym_DOT_DOT_EQ] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(430), - [anon_sym_BANG_EQ] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(430), - [anon_sym_GT_EQ] = ACTIONS(430), - [anon_sym_LT_LT] = ACTIONS(432), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_PLUS_EQ] = ACTIONS(430), - [anon_sym_DASH_EQ] = ACTIONS(430), - [anon_sym_STAR_EQ] = ACTIONS(430), - [anon_sym_SLASH_EQ] = ACTIONS(430), - [anon_sym_PERCENT_EQ] = ACTIONS(430), - [anon_sym_AMP_EQ] = ACTIONS(430), - [anon_sym_PIPE_EQ] = ACTIONS(430), - [anon_sym_CARET_EQ] = ACTIONS(430), - [anon_sym_LT_LT_EQ] = ACTIONS(430), - [anon_sym_GT_GT_EQ] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(432), - [anon_sym_move] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(432), - [sym_integer_literal] = ACTIONS(430), - [aux_sym_string_literal_token1] = ACTIONS(430), - [sym_char_literal] = ACTIONS(430), - [anon_sym_true] = ACTIONS(432), - [anon_sym_false] = ACTIONS(432), + [50] = { + [ts_builtin_sym_end] = ACTIONS(447), + [sym_identifier] = ACTIONS(449), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_u8] = ACTIONS(449), + [anon_sym_i8] = ACTIONS(449), + [anon_sym_u16] = ACTIONS(449), + [anon_sym_i16] = ACTIONS(449), + [anon_sym_u32] = ACTIONS(449), + [anon_sym_i32] = ACTIONS(449), + [anon_sym_u64] = ACTIONS(449), + [anon_sym_i64] = ACTIONS(449), + [anon_sym_u128] = ACTIONS(449), + [anon_sym_i128] = ACTIONS(449), + [anon_sym_u256] = ACTIONS(449), + [anon_sym_i256] = ACTIONS(449), + [anon_sym_b256] = ACTIONS(449), + [anon_sym_isize] = ACTIONS(449), + [anon_sym_usize] = ACTIONS(449), + [anon_sym_f32] = ACTIONS(449), + [anon_sym_f64] = ACTIONS(449), + [anon_sym_bool] = ACTIONS(449), + [anon_sym_char] = ACTIONS(449), + [anon_sym_str] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_contract] = ACTIONS(449), + [anon_sym_script] = ACTIONS(449), + [anon_sym_predicate] = ACTIONS(449), + [anon_sym_library] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_SQUOTE] = ACTIONS(449), + [anon_sym_abi] = ACTIONS(449), + [anon_sym_as] = ACTIONS(449), + [anon_sym_break] = ACTIONS(449), + [anon_sym_configurable] = ACTIONS(449), + [anon_sym_const] = ACTIONS(449), + [anon_sym_continue] = ACTIONS(449), + [anon_sym_default] = ACTIONS(449), + [anon_sym_mod] = ACTIONS(449), + [anon_sym_enum] = ACTIONS(449), + [anon_sym_fn] = ACTIONS(449), + [anon_sym_for] = ACTIONS(449), + [anon_sym_if] = ACTIONS(449), + [anon_sym_impl] = ACTIONS(449), + [anon_sym_let] = ACTIONS(449), + [anon_sym_match] = ACTIONS(449), + [anon_sym_pub] = ACTIONS(449), + [anon_sym_return] = ACTIONS(449), + [anon_sym_storage] = ACTIONS(449), + [anon_sym_struct] = ACTIONS(449), + [anon_sym_trait] = ACTIONS(449), + [anon_sym_type] = ACTIONS(449), + [anon_sym_use] = ACTIONS(449), + [anon_sym_while] = ACTIONS(449), + [anon_sym_POUND] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_asm] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(447), + [anon_sym_PIPE_PIPE] = ACTIONS(447), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(447), + [anon_sym_BANG_EQ] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(447), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_PERCENT] = ACTIONS(449), + [anon_sym_PLUS_EQ] = ACTIONS(447), + [anon_sym_DASH_EQ] = ACTIONS(447), + [anon_sym_STAR_EQ] = ACTIONS(447), + [anon_sym_SLASH_EQ] = ACTIONS(447), + [anon_sym_PERCENT_EQ] = ACTIONS(447), + [anon_sym_AMP_EQ] = ACTIONS(447), + [anon_sym_PIPE_EQ] = ACTIONS(447), + [anon_sym_CARET_EQ] = ACTIONS(447), + [anon_sym_LT_LT_EQ] = ACTIONS(447), + [anon_sym_GT_GT_EQ] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(447), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(449), + [anon_sym_false] = ACTIONS(449), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(432), - [sym_metavariable] = ACTIONS(430), - [sym_raw_string_literal] = ACTIONS(430), - [sym_float_literal] = ACTIONS(430), + [sym_self] = ACTIONS(449), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(447), + [sym_float_literal] = ACTIONS(447), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1955), - [sym__let_chain] = STATE(1952), - [sym__condition] = STATE(1906), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [51] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(83), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(876), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -20137,6 +20786,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -20146,91 +20798,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(79), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(858), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(7), + [52] = { + [ts_builtin_sym_end] = ACTIONS(453), + [sym_identifier] = ACTIONS(455), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_u8] = ACTIONS(455), + [anon_sym_i8] = ACTIONS(455), + [anon_sym_u16] = ACTIONS(455), + [anon_sym_i16] = ACTIONS(455), + [anon_sym_u32] = ACTIONS(455), + [anon_sym_i32] = ACTIONS(455), + [anon_sym_u64] = ACTIONS(455), + [anon_sym_i64] = ACTIONS(455), + [anon_sym_u128] = ACTIONS(455), + [anon_sym_i128] = ACTIONS(455), + [anon_sym_u256] = ACTIONS(455), + [anon_sym_i256] = ACTIONS(455), + [anon_sym_b256] = ACTIONS(455), + [anon_sym_isize] = ACTIONS(455), + [anon_sym_usize] = ACTIONS(455), + [anon_sym_f32] = ACTIONS(455), + [anon_sym_f64] = ACTIONS(455), + [anon_sym_bool] = ACTIONS(455), + [anon_sym_char] = ACTIONS(455), + [anon_sym_str] = ACTIONS(455), + [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_contract] = ACTIONS(455), + [anon_sym_script] = ACTIONS(455), + [anon_sym_predicate] = ACTIONS(455), + [anon_sym_library] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(455), + [anon_sym_abi] = ACTIONS(455), + [anon_sym_as] = ACTIONS(460), + [anon_sym_break] = ACTIONS(455), + [anon_sym_configurable] = ACTIONS(455), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(455), + [anon_sym_default] = ACTIONS(455), + [anon_sym_mod] = ACTIONS(455), + [anon_sym_enum] = ACTIONS(455), + [anon_sym_fn] = ACTIONS(455), + [anon_sym_for] = ACTIONS(455), + [anon_sym_if] = ACTIONS(455), + [anon_sym_impl] = ACTIONS(455), + [anon_sym_let] = ACTIONS(455), + [anon_sym_match] = ACTIONS(455), + [anon_sym_pub] = ACTIONS(455), + [anon_sym_return] = ACTIONS(455), + [anon_sym_storage] = ACTIONS(455), + [anon_sym_struct] = ACTIONS(455), + [anon_sym_trait] = ACTIONS(455), + [anon_sym_type] = ACTIONS(455), + [anon_sym_use] = ACTIONS(455), + [anon_sym_while] = ACTIONS(455), + [anon_sym_POUND] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_asm] = ACTIONS(455), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(453), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(462), + [anon_sym_DASH_EQ] = ACTIONS(462), + [anon_sym_STAR_EQ] = ACTIONS(462), + [anon_sym_SLASH_EQ] = ACTIONS(462), + [anon_sym_PERCENT_EQ] = ACTIONS(462), + [anon_sym_AMP_EQ] = ACTIONS(462), + [anon_sym_PIPE_EQ] = ACTIONS(462), + [anon_sym_CARET_EQ] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(462), + [anon_sym_GT_GT_EQ] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(455), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(453), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(453), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(455), + [sym_metavariable] = ACTIONS(453), + [sym_raw_string_literal] = ACTIONS(453), + [sym_float_literal] = ACTIONS(453), + [sym_block_comment] = ACTIONS(3), + }, + [53] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1916), + [sym__let_chain] = STATE(1919), + [sym__condition] = STATE(1841), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -20241,6 +21003,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -20250,91 +21015,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [50] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(83), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(893), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(83), + [54] = { + [ts_builtin_sym_end] = ACTIONS(475), + [sym_identifier] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_u256] = ACTIONS(477), + [anon_sym_i256] = ACTIONS(477), + [anon_sym_b256] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_contract] = ACTIONS(477), + [anon_sym_script] = ACTIONS(477), + [anon_sym_predicate] = ACTIONS(477), + [anon_sym_library] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_abi] = ACTIONS(477), + [anon_sym_as] = ACTIONS(477), + [anon_sym_break] = ACTIONS(477), + [anon_sym_configurable] = ACTIONS(477), + [anon_sym_const] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(477), + [anon_sym_default] = ACTIONS(477), + [anon_sym_mod] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(477), + [anon_sym_fn] = ACTIONS(477), + [anon_sym_for] = ACTIONS(477), + [anon_sym_if] = ACTIONS(477), + [anon_sym_impl] = ACTIONS(477), + [anon_sym_let] = ACTIONS(477), + [anon_sym_match] = ACTIONS(477), + [anon_sym_pub] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_storage] = ACTIONS(477), + [anon_sym_struct] = ACTIONS(477), + [anon_sym_trait] = ACTIONS(477), + [anon_sym_type] = ACTIONS(477), + [anon_sym_use] = ACTIONS(477), + [anon_sym_while] = ACTIONS(477), + [anon_sym_POUND] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_asm] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(477), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_STAR] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(475), + [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(475), + [anon_sym_BANG_EQ] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(475), + [anon_sym_GT_EQ] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(475), + [anon_sym_DASH_EQ] = ACTIONS(475), + [anon_sym_STAR_EQ] = ACTIONS(475), + [anon_sym_SLASH_EQ] = ACTIONS(475), + [anon_sym_PERCENT_EQ] = ACTIONS(475), + [anon_sym_AMP_EQ] = ACTIONS(475), + [anon_sym_PIPE_EQ] = ACTIONS(475), + [anon_sym_CARET_EQ] = ACTIONS(475), + [anon_sym_LT_LT_EQ] = ACTIONS(475), + [anon_sym_GT_GT_EQ] = ACTIONS(475), + [anon_sym_yield] = ACTIONS(477), + [anon_sym_move] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(477), + [sym_integer_literal] = ACTIONS(475), + [aux_sym_string_literal_token1] = ACTIONS(475), + [sym_char_literal] = ACTIONS(475), + [anon_sym_true] = ACTIONS(477), + [anon_sym_false] = ACTIONS(477), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(477), + [sym_metavariable] = ACTIONS(475), + [sym_raw_string_literal] = ACTIONS(475), + [sym_float_literal] = ACTIONS(475), + [sym_block_comment] = ACTIONS(3), + }, + [55] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(939), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1862), + [sym__let_chain] = STATE(1861), + [sym__condition] = STATE(2102), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -20346,6 +21219,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -20355,198 +21231,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [51] = { - [ts_builtin_sym_end] = ACTIONS(446), - [sym_identifier] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_u8] = ACTIONS(448), - [anon_sym_i8] = ACTIONS(448), - [anon_sym_u16] = ACTIONS(448), - [anon_sym_i16] = ACTIONS(448), - [anon_sym_u32] = ACTIONS(448), - [anon_sym_i32] = ACTIONS(448), - [anon_sym_u64] = ACTIONS(448), - [anon_sym_i64] = ACTIONS(448), - [anon_sym_u128] = ACTIONS(448), - [anon_sym_i128] = ACTIONS(448), - [anon_sym_isize] = ACTIONS(448), - [anon_sym_usize] = ACTIONS(448), - [anon_sym_f32] = ACTIONS(448), - [anon_sym_f64] = ACTIONS(448), - [anon_sym_bool] = ACTIONS(448), - [anon_sym_char] = ACTIONS(448), - [anon_sym_str] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_contract] = ACTIONS(448), - [anon_sym_script] = ACTIONS(448), - [anon_sym_predicate] = ACTIONS(448), - [anon_sym_library] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_SQUOTE] = ACTIONS(448), - [anon_sym_abi] = ACTIONS(448), - [anon_sym_as] = ACTIONS(448), - [anon_sym_break] = ACTIONS(448), - [anon_sym_configurable] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(448), - [anon_sym_default] = ACTIONS(448), - [anon_sym_dep] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_fn] = ACTIONS(448), - [anon_sym_for] = ACTIONS(448), - [anon_sym_if] = ACTIONS(448), - [anon_sym_impl] = ACTIONS(448), - [anon_sym_let] = ACTIONS(448), - [anon_sym_match] = ACTIONS(448), - [anon_sym_pub] = ACTIONS(448), - [anon_sym_return] = ACTIONS(448), - [anon_sym_storage] = ACTIONS(448), - [anon_sym_struct] = ACTIONS(448), - [anon_sym_trait] = ACTIONS(448), - [anon_sym_use] = ACTIONS(448), - [anon_sym_while] = ACTIONS(448), - [anon_sym_POUND] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_EQ] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_asm] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(446), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(448), - [anon_sym_else] = ACTIONS(448), - [anon_sym_COLON_COLON] = ACTIONS(446), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(446), - [anon_sym_DOT_DOT] = ACTIONS(448), - [anon_sym_DOT_DOT_EQ] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_AMP_AMP] = ACTIONS(446), - [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(448), - [anon_sym_EQ_EQ] = ACTIONS(446), - [anon_sym_BANG_EQ] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(446), - [anon_sym_GT_EQ] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(448), - [anon_sym_GT_GT] = ACTIONS(448), - [anon_sym_PERCENT] = ACTIONS(448), - [anon_sym_PLUS_EQ] = ACTIONS(446), - [anon_sym_DASH_EQ] = ACTIONS(446), - [anon_sym_STAR_EQ] = ACTIONS(446), - [anon_sym_SLASH_EQ] = ACTIONS(446), - [anon_sym_PERCENT_EQ] = ACTIONS(446), - [anon_sym_AMP_EQ] = ACTIONS(446), - [anon_sym_PIPE_EQ] = ACTIONS(446), - [anon_sym_CARET_EQ] = ACTIONS(446), - [anon_sym_LT_LT_EQ] = ACTIONS(446), - [anon_sym_GT_GT_EQ] = ACTIONS(446), - [anon_sym_yield] = ACTIONS(448), - [anon_sym_move] = ACTIONS(448), - [anon_sym_DOT] = ACTIONS(448), - [sym_integer_literal] = ACTIONS(446), - [aux_sym_string_literal_token1] = ACTIONS(446), - [sym_char_literal] = ACTIONS(446), - [anon_sym_true] = ACTIONS(448), - [anon_sym_false] = ACTIONS(448), + [56] = { + [ts_builtin_sym_end] = ACTIONS(481), + [sym_identifier] = ACTIONS(483), + [anon_sym_SEMI] = 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_u256] = ACTIONS(483), + [anon_sym_i256] = ACTIONS(483), + [anon_sym_b256] = ACTIONS(483), + [anon_sym_isize] = ACTIONS(483), + [anon_sym_usize] = ACTIONS(483), + [anon_sym_f32] = ACTIONS(483), + [anon_sym_f64] = ACTIONS(483), + [anon_sym_bool] = ACTIONS(483), + [anon_sym_char] = ACTIONS(483), + [anon_sym_str] = ACTIONS(483), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_contract] = ACTIONS(483), + [anon_sym_script] = ACTIONS(483), + [anon_sym_predicate] = ACTIONS(483), + [anon_sym_library] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(483), + [anon_sym_abi] = ACTIONS(483), + [anon_sym_as] = ACTIONS(483), + [anon_sym_break] = ACTIONS(483), + [anon_sym_configurable] = ACTIONS(483), + [anon_sym_const] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_default] = ACTIONS(483), + [anon_sym_mod] = ACTIONS(483), + [anon_sym_enum] = ACTIONS(483), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_impl] = ACTIONS(483), + [anon_sym_let] = ACTIONS(483), + [anon_sym_match] = ACTIONS(483), + [anon_sym_pub] = ACTIONS(483), + [anon_sym_return] = ACTIONS(483), + [anon_sym_storage] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_trait] = ACTIONS(483), + [anon_sym_type] = ACTIONS(483), + [anon_sym_use] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_asm] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(483), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(481), + [anon_sym_BANG_EQ] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(483), + [anon_sym_SLASH] = ACTIONS(483), + [anon_sym_PERCENT] = ACTIONS(483), + [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_AMP_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(483), + [sym_integer_literal] = ACTIONS(481), + [aux_sym_string_literal_token1] = ACTIONS(481), + [sym_char_literal] = ACTIONS(481), + [anon_sym_true] = ACTIONS(483), + [anon_sym_false] = ACTIONS(483), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(448), - [sym_metavariable] = ACTIONS(446), - [sym_raw_string_literal] = ACTIONS(446), - [sym_float_literal] = ACTIONS(446), + [sym_self] = ACTIONS(483), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(481), + [sym_float_literal] = ACTIONS(481), [sym_block_comment] = ACTIONS(3), }, - [52] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1955), - [sym__let_chain] = STATE(1952), - [sym__condition] = STATE(1869), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [57] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1916), + [sym__let_chain] = STATE(1919), + [sym__condition] = STATE(1801), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -20557,6 +21435,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -20566,92 +21447,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [53] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1955), - [sym__let_chain] = STATE(1952), - [sym__condition] = STATE(1959), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [58] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1916), + [sym__let_chain] = STATE(1919), + [sym__condition] = STATE(1954), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -20662,6 +21543,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -20671,92 +21555,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [54] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1955), - [sym__let_chain] = STATE(1952), - [sym__condition] = STATE(1974), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [59] = { + [ts_builtin_sym_end] = ACTIONS(485), + [sym_identifier] = ACTIONS(487), + [anon_sym_SEMI] = 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_u256] = ACTIONS(487), + [anon_sym_i256] = ACTIONS(487), + [anon_sym_b256] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_contract] = ACTIONS(487), + [anon_sym_script] = ACTIONS(487), + [anon_sym_predicate] = ACTIONS(487), + [anon_sym_library] = ACTIONS(487), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_SQUOTE] = ACTIONS(487), + [anon_sym_abi] = ACTIONS(487), + [anon_sym_as] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_configurable] = ACTIONS(487), + [anon_sym_const] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(487), + [anon_sym_mod] = ACTIONS(487), + [anon_sym_enum] = ACTIONS(487), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_impl] = ACTIONS(487), + [anon_sym_let] = ACTIONS(487), + [anon_sym_match] = ACTIONS(487), + [anon_sym_pub] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_storage] = ACTIONS(487), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_trait] = ACTIONS(487), + [anon_sym_type] = ACTIONS(487), + [anon_sym_use] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [anon_sym_POUND] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_asm] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_PERCENT] = ACTIONS(487), + [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_AMP_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(485), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(487), + [sym_metavariable] = ACTIONS(485), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), + [sym_block_comment] = ACTIONS(3), + }, + [60] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1916), + [sym__let_chain] = STATE(1919), + [sym__condition] = STATE(1945), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -20767,6 +21759,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -20776,92 +21771,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1955), - [sym__let_chain] = STATE(1952), - [sym__condition] = STATE(1942), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [61] = { + [ts_builtin_sym_end] = ACTIONS(489), + [sym_identifier] = ACTIONS(491), + [anon_sym_SEMI] = 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_u256] = ACTIONS(491), + [anon_sym_i256] = ACTIONS(491), + [anon_sym_b256] = ACTIONS(491), + [anon_sym_isize] = ACTIONS(491), + [anon_sym_usize] = ACTIONS(491), + [anon_sym_f32] = ACTIONS(491), + [anon_sym_f64] = ACTIONS(491), + [anon_sym_bool] = ACTIONS(491), + [anon_sym_char] = ACTIONS(491), + [anon_sym_str] = ACTIONS(491), + [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_contract] = ACTIONS(491), + [anon_sym_script] = ACTIONS(491), + [anon_sym_predicate] = ACTIONS(491), + [anon_sym_library] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_abi] = ACTIONS(491), + [anon_sym_as] = ACTIONS(493), + [anon_sym_break] = ACTIONS(491), + [anon_sym_configurable] = ACTIONS(491), + [anon_sym_const] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_default] = ACTIONS(491), + [anon_sym_mod] = ACTIONS(491), + [anon_sym_enum] = ACTIONS(491), + [anon_sym_fn] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_impl] = ACTIONS(491), + [anon_sym_let] = ACTIONS(491), + [anon_sym_match] = ACTIONS(491), + [anon_sym_pub] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_storage] = ACTIONS(491), + [anon_sym_struct] = ACTIONS(491), + [anon_sym_trait] = ACTIONS(491), + [anon_sym_type] = ACTIONS(491), + [anon_sym_use] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_POUND] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(493), + [anon_sym_asm] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(495), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_COLON_COLON] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_CARET] = ACTIONS(493), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_BANG_EQ] = ACTIONS(495), + [anon_sym_LT_EQ] = ACTIONS(495), + [anon_sym_GT_EQ] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(495), + [anon_sym_DASH_EQ] = ACTIONS(495), + [anon_sym_STAR_EQ] = ACTIONS(495), + [anon_sym_SLASH_EQ] = ACTIONS(495), + [anon_sym_PERCENT_EQ] = ACTIONS(495), + [anon_sym_AMP_EQ] = ACTIONS(495), + [anon_sym_PIPE_EQ] = ACTIONS(495), + [anon_sym_CARET_EQ] = ACTIONS(495), + [anon_sym_LT_LT_EQ] = ACTIONS(495), + [anon_sym_GT_GT_EQ] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(491), + [anon_sym_move] = ACTIONS(491), + [anon_sym_DOT] = ACTIONS(493), + [sym_integer_literal] = ACTIONS(489), + [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_char_literal] = ACTIONS(489), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(491), + [sym_metavariable] = ACTIONS(489), + [sym_raw_string_literal] = ACTIONS(489), + [sym_float_literal] = ACTIONS(489), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(497), + [sym_identifier] = ACTIONS(499), + [anon_sym_SEMI] = 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_u256] = ACTIONS(499), + [anon_sym_i256] = ACTIONS(499), + [anon_sym_b256] = ACTIONS(499), + [anon_sym_isize] = ACTIONS(499), + [anon_sym_usize] = ACTIONS(499), + [anon_sym_f32] = ACTIONS(499), + [anon_sym_f64] = ACTIONS(499), + [anon_sym_bool] = ACTIONS(499), + [anon_sym_char] = ACTIONS(499), + [anon_sym_str] = ACTIONS(499), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_contract] = ACTIONS(499), + [anon_sym_script] = ACTIONS(499), + [anon_sym_predicate] = ACTIONS(499), + [anon_sym_library] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_SQUOTE] = ACTIONS(499), + [anon_sym_abi] = ACTIONS(499), + [anon_sym_as] = ACTIONS(499), + [anon_sym_break] = ACTIONS(499), + [anon_sym_configurable] = ACTIONS(499), + [anon_sym_const] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(499), + [anon_sym_mod] = ACTIONS(499), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_fn] = ACTIONS(499), + [anon_sym_for] = ACTIONS(499), + [anon_sym_if] = ACTIONS(499), + [anon_sym_impl] = ACTIONS(499), + [anon_sym_let] = ACTIONS(499), + [anon_sym_match] = ACTIONS(499), + [anon_sym_pub] = ACTIONS(499), + [anon_sym_return] = ACTIONS(499), + [anon_sym_storage] = ACTIONS(499), + [anon_sym_struct] = ACTIONS(499), + [anon_sym_trait] = ACTIONS(499), + [anon_sym_type] = ACTIONS(499), + [anon_sym_use] = ACTIONS(499), + [anon_sym_while] = ACTIONS(499), + [anon_sym_POUND] = ACTIONS(497), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_asm] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(499), + [anon_sym_GT_GT] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [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_AMP_EQ] = ACTIONS(497), + [anon_sym_PIPE_EQ] = ACTIONS(497), + [anon_sym_CARET_EQ] = ACTIONS(497), + [anon_sym_LT_LT_EQ] = ACTIONS(497), + [anon_sym_GT_GT_EQ] = ACTIONS(497), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(499), + [sym_integer_literal] = ACTIONS(497), + [aux_sym_string_literal_token1] = ACTIONS(497), + [sym_char_literal] = ACTIONS(497), + [anon_sym_true] = ACTIONS(499), + [anon_sym_false] = ACTIONS(499), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(499), + [sym_metavariable] = ACTIONS(497), + [sym_raw_string_literal] = ACTIONS(497), + [sym_float_literal] = ACTIONS(497), + [sym_block_comment] = ACTIONS(3), + }, + [63] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1916), + [sym__let_chain] = STATE(1919), + [sym__condition] = STATE(1860), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -20872,6 +22083,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -20881,91 +22095,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(83), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(893), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(7), + [64] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1916), + [sym__let_chain] = STATE(1919), + [sym__condition] = STATE(1943), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -20976,6 +22191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -20985,91 +22203,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(83), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(893), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(83), + [65] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(80), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(849), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(80), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -21081,6 +22298,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -21090,93 +22310,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1955), - [sym__let_chain] = STATE(1952), - [sym__condition] = STATE(1946), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [66] = { + [ts_builtin_sym_end] = ACTIONS(503), + [sym_identifier] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_u8] = ACTIONS(505), + [anon_sym_i8] = ACTIONS(505), + [anon_sym_u16] = ACTIONS(505), + [anon_sym_i16] = ACTIONS(505), + [anon_sym_u32] = ACTIONS(505), + [anon_sym_i32] = ACTIONS(505), + [anon_sym_u64] = ACTIONS(505), + [anon_sym_i64] = ACTIONS(505), + [anon_sym_u128] = ACTIONS(505), + [anon_sym_i128] = ACTIONS(505), + [anon_sym_u256] = ACTIONS(505), + [anon_sym_i256] = ACTIONS(505), + [anon_sym_b256] = ACTIONS(505), + [anon_sym_isize] = ACTIONS(505), + [anon_sym_usize] = ACTIONS(505), + [anon_sym_f32] = ACTIONS(505), + [anon_sym_f64] = ACTIONS(505), + [anon_sym_bool] = ACTIONS(505), + [anon_sym_char] = ACTIONS(505), + [anon_sym_str] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(503), + [anon_sym_contract] = ACTIONS(505), + [anon_sym_script] = ACTIONS(505), + [anon_sym_predicate] = ACTIONS(505), + [anon_sym_library] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_RBRACE] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_abi] = ACTIONS(505), + [anon_sym_as] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [anon_sym_configurable] = ACTIONS(505), + [anon_sym_const] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(505), + [anon_sym_mod] = ACTIONS(505), + [anon_sym_enum] = ACTIONS(505), + [anon_sym_fn] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_if] = ACTIONS(505), + [anon_sym_impl] = ACTIONS(505), + [anon_sym_let] = ACTIONS(505), + [anon_sym_match] = ACTIONS(505), + [anon_sym_pub] = ACTIONS(505), + [anon_sym_return] = ACTIONS(505), + [anon_sym_storage] = ACTIONS(505), + [anon_sym_struct] = ACTIONS(505), + [anon_sym_trait] = ACTIONS(505), + [anon_sym_type] = ACTIONS(505), + [anon_sym_use] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_asm] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_COLON_COLON] = ACTIONS(503), + [anon_sym_STAR] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [anon_sym_DOT_DOT] = ACTIONS(505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(503), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_EQ_EQ] = ACTIONS(503), + [anon_sym_BANG_EQ] = ACTIONS(503), + [anon_sym_LT_EQ] = ACTIONS(503), + [anon_sym_GT_EQ] = ACTIONS(503), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_PLUS_EQ] = ACTIONS(503), + [anon_sym_DASH_EQ] = ACTIONS(503), + [anon_sym_STAR_EQ] = ACTIONS(503), + [anon_sym_SLASH_EQ] = ACTIONS(503), + [anon_sym_PERCENT_EQ] = ACTIONS(503), + [anon_sym_AMP_EQ] = ACTIONS(503), + [anon_sym_PIPE_EQ] = ACTIONS(503), + [anon_sym_CARET_EQ] = ACTIONS(503), + [anon_sym_LT_LT_EQ] = ACTIONS(503), + [anon_sym_GT_GT_EQ] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [sym_integer_literal] = ACTIONS(503), + [aux_sym_string_literal_token1] = ACTIONS(503), + [sym_char_literal] = ACTIONS(503), + [anon_sym_true] = ACTIONS(505), + [anon_sym_false] = ACTIONS(505), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(505), + [sym_metavariable] = ACTIONS(503), + [sym_raw_string_literal] = ACTIONS(503), + [sym_float_literal] = ACTIONS(503), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(507), + [sym_identifier] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_u8] = ACTIONS(509), + [anon_sym_i8] = ACTIONS(509), + [anon_sym_u16] = ACTIONS(509), + [anon_sym_i16] = ACTIONS(509), + [anon_sym_u32] = ACTIONS(509), + [anon_sym_i32] = ACTIONS(509), + [anon_sym_u64] = ACTIONS(509), + [anon_sym_i64] = ACTIONS(509), + [anon_sym_u128] = ACTIONS(509), + [anon_sym_i128] = ACTIONS(509), + [anon_sym_u256] = ACTIONS(509), + [anon_sym_i256] = ACTIONS(509), + [anon_sym_b256] = ACTIONS(509), + [anon_sym_isize] = ACTIONS(509), + [anon_sym_usize] = ACTIONS(509), + [anon_sym_f32] = ACTIONS(509), + [anon_sym_f64] = ACTIONS(509), + [anon_sym_bool] = ACTIONS(509), + [anon_sym_char] = ACTIONS(509), + [anon_sym_str] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_contract] = ACTIONS(509), + [anon_sym_script] = ACTIONS(509), + [anon_sym_predicate] = ACTIONS(509), + [anon_sym_library] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_abi] = ACTIONS(509), + [anon_sym_as] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_configurable] = ACTIONS(509), + [anon_sym_const] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_default] = ACTIONS(509), + [anon_sym_mod] = ACTIONS(509), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_fn] = ACTIONS(509), + [anon_sym_for] = ACTIONS(509), + [anon_sym_if] = ACTIONS(509), + [anon_sym_impl] = ACTIONS(509), + [anon_sym_let] = ACTIONS(509), + [anon_sym_match] = ACTIONS(509), + [anon_sym_pub] = ACTIONS(509), + [anon_sym_return] = ACTIONS(509), + [anon_sym_storage] = ACTIONS(509), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_trait] = ACTIONS(509), + [anon_sym_type] = ACTIONS(509), + [anon_sym_use] = ACTIONS(509), + [anon_sym_while] = ACTIONS(509), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(509), + [anon_sym_asm] = ACTIONS(509), + [anon_sym_PLUS] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(507), + [anon_sym_DOT_DOT] = ACTIONS(509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(507), + [anon_sym_GT_EQ] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(509), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(507), + [anon_sym_DASH_EQ] = ACTIONS(507), + [anon_sym_STAR_EQ] = ACTIONS(507), + [anon_sym_SLASH_EQ] = ACTIONS(507), + [anon_sym_PERCENT_EQ] = ACTIONS(507), + [anon_sym_AMP_EQ] = ACTIONS(507), + [anon_sym_PIPE_EQ] = ACTIONS(507), + [anon_sym_CARET_EQ] = ACTIONS(507), + [anon_sym_LT_LT_EQ] = ACTIONS(507), + [anon_sym_GT_GT_EQ] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(509), + [sym_integer_literal] = ACTIONS(507), + [aux_sym_string_literal_token1] = ACTIONS(507), + [sym_char_literal] = ACTIONS(507), + [anon_sym_true] = ACTIONS(509), + [anon_sym_false] = ACTIONS(509), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(509), + [sym_metavariable] = ACTIONS(507), + [sym_raw_string_literal] = ACTIONS(507), + [sym_float_literal] = ACTIONS(507), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1916), + [sym__let_chain] = STATE(1919), + [sym__condition] = STATE(1933), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -21187,6 +22623,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -21196,197 +22635,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_u8] = ACTIONS(456), - [anon_sym_i8] = ACTIONS(456), - [anon_sym_u16] = ACTIONS(456), - [anon_sym_i16] = ACTIONS(456), - [anon_sym_u32] = ACTIONS(456), - [anon_sym_i32] = ACTIONS(456), - [anon_sym_u64] = ACTIONS(456), - [anon_sym_i64] = ACTIONS(456), - [anon_sym_u128] = ACTIONS(456), - [anon_sym_i128] = ACTIONS(456), - [anon_sym_isize] = ACTIONS(456), - [anon_sym_usize] = ACTIONS(456), - [anon_sym_f32] = ACTIONS(456), - [anon_sym_f64] = ACTIONS(456), - [anon_sym_bool] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_str] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_contract] = ACTIONS(456), - [anon_sym_script] = ACTIONS(456), - [anon_sym_predicate] = ACTIONS(456), - [anon_sym_library] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_SQUOTE] = ACTIONS(456), - [anon_sym_abi] = ACTIONS(456), - [anon_sym_as] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_configurable] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_dep] = ACTIONS(456), - [anon_sym_enum] = ACTIONS(456), - [anon_sym_fn] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_impl] = ACTIONS(456), - [anon_sym_let] = ACTIONS(456), - [anon_sym_match] = ACTIONS(456), - [anon_sym_pub] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_storage] = ACTIONS(456), - [anon_sym_struct] = ACTIONS(456), - [anon_sym_trait] = ACTIONS(456), - [anon_sym_use] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_POUND] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_asm] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_COLON_COLON] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(454), - [anon_sym_DOT_DOT] = ACTIONS(456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(456), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_move] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(456), - [sym_integer_literal] = ACTIONS(454), - [aux_sym_string_literal_token1] = ACTIONS(454), - [sym_char_literal] = ACTIONS(454), - [anon_sym_true] = ACTIONS(456), - [anon_sym_false] = ACTIONS(456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(456), - [sym_metavariable] = ACTIONS(454), - [sym_raw_string_literal] = ACTIONS(454), - [sym_float_literal] = ACTIONS(454), - [sym_block_comment] = ACTIONS(3), - }, - [60] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1955), - [sym__let_chain] = STATE(1952), - [sym__condition] = STATE(1843), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [69] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1916), + [sym__let_chain] = STATE(1919), + [sym__condition] = STATE(1852), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -21397,6 +22731,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -21406,92 +22743,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1955), - [sym__let_chain] = STATE(1952), - [sym__condition] = STATE(1943), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [70] = { + [ts_builtin_sym_end] = ACTIONS(511), + [sym_identifier] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(511), + [anon_sym_u8] = ACTIONS(513), + [anon_sym_i8] = ACTIONS(513), + [anon_sym_u16] = ACTIONS(513), + [anon_sym_i16] = ACTIONS(513), + [anon_sym_u32] = ACTIONS(513), + [anon_sym_i32] = ACTIONS(513), + [anon_sym_u64] = ACTIONS(513), + [anon_sym_i64] = ACTIONS(513), + [anon_sym_u128] = ACTIONS(513), + [anon_sym_i128] = ACTIONS(513), + [anon_sym_u256] = ACTIONS(513), + [anon_sym_i256] = ACTIONS(513), + [anon_sym_b256] = ACTIONS(513), + [anon_sym_isize] = ACTIONS(513), + [anon_sym_usize] = ACTIONS(513), + [anon_sym_f32] = ACTIONS(513), + [anon_sym_f64] = ACTIONS(513), + [anon_sym_bool] = ACTIONS(513), + [anon_sym_char] = ACTIONS(513), + [anon_sym_str] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_contract] = ACTIONS(513), + [anon_sym_script] = ACTIONS(513), + [anon_sym_predicate] = ACTIONS(513), + [anon_sym_library] = ACTIONS(513), + [anon_sym_LPAREN] = ACTIONS(511), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(511), + [anon_sym_SQUOTE] = ACTIONS(513), + [anon_sym_abi] = ACTIONS(513), + [anon_sym_as] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [anon_sym_configurable] = ACTIONS(513), + [anon_sym_const] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_default] = ACTIONS(513), + [anon_sym_mod] = ACTIONS(513), + [anon_sym_enum] = ACTIONS(513), + [anon_sym_fn] = ACTIONS(513), + [anon_sym_for] = ACTIONS(513), + [anon_sym_if] = ACTIONS(513), + [anon_sym_impl] = ACTIONS(513), + [anon_sym_let] = ACTIONS(513), + [anon_sym_match] = ACTIONS(513), + [anon_sym_pub] = ACTIONS(513), + [anon_sym_return] = ACTIONS(513), + [anon_sym_storage] = ACTIONS(513), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_trait] = ACTIONS(513), + [anon_sym_type] = ACTIONS(513), + [anon_sym_use] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_POUND] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(513), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_asm] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_STAR] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(511), + [anon_sym_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(511), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(511), + [anon_sym_PIPE_PIPE] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(511), + [anon_sym_BANG_EQ] = ACTIONS(511), + [anon_sym_LT_EQ] = ACTIONS(511), + [anon_sym_GT_EQ] = ACTIONS(511), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_SLASH] = ACTIONS(513), + [anon_sym_PERCENT] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(511), + [anon_sym_DASH_EQ] = ACTIONS(511), + [anon_sym_STAR_EQ] = ACTIONS(511), + [anon_sym_SLASH_EQ] = ACTIONS(511), + [anon_sym_PERCENT_EQ] = ACTIONS(511), + [anon_sym_AMP_EQ] = ACTIONS(511), + [anon_sym_PIPE_EQ] = ACTIONS(511), + [anon_sym_CARET_EQ] = ACTIONS(511), + [anon_sym_LT_LT_EQ] = ACTIONS(511), + [anon_sym_GT_GT_EQ] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(513), + [sym_integer_literal] = ACTIONS(511), + [aux_sym_string_literal_token1] = ACTIONS(511), + [sym_char_literal] = ACTIONS(511), + [anon_sym_true] = ACTIONS(513), + [anon_sym_false] = ACTIONS(513), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(513), + [sym_metavariable] = ACTIONS(511), + [sym_raw_string_literal] = ACTIONS(511), + [sym_float_literal] = ACTIONS(511), + [sym_block_comment] = ACTIONS(3), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(515), + [sym_identifier] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_u8] = ACTIONS(517), + [anon_sym_i8] = ACTIONS(517), + [anon_sym_u16] = ACTIONS(517), + [anon_sym_i16] = ACTIONS(517), + [anon_sym_u32] = ACTIONS(517), + [anon_sym_i32] = ACTIONS(517), + [anon_sym_u64] = ACTIONS(517), + [anon_sym_i64] = ACTIONS(517), + [anon_sym_u128] = ACTIONS(517), + [anon_sym_i128] = ACTIONS(517), + [anon_sym_u256] = ACTIONS(517), + [anon_sym_i256] = ACTIONS(517), + [anon_sym_b256] = ACTIONS(517), + [anon_sym_isize] = ACTIONS(517), + [anon_sym_usize] = ACTIONS(517), + [anon_sym_f32] = ACTIONS(517), + [anon_sym_f64] = ACTIONS(517), + [anon_sym_bool] = ACTIONS(517), + [anon_sym_char] = ACTIONS(517), + [anon_sym_str] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(515), + [anon_sym_contract] = ACTIONS(517), + [anon_sym_script] = ACTIONS(517), + [anon_sym_predicate] = ACTIONS(517), + [anon_sym_library] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_abi] = ACTIONS(517), + [anon_sym_as] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_configurable] = ACTIONS(517), + [anon_sym_const] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_default] = ACTIONS(517), + [anon_sym_mod] = ACTIONS(517), + [anon_sym_enum] = ACTIONS(517), + [anon_sym_fn] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_impl] = ACTIONS(517), + [anon_sym_let] = ACTIONS(517), + [anon_sym_match] = ACTIONS(517), + [anon_sym_pub] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_storage] = ACTIONS(517), + [anon_sym_struct] = ACTIONS(517), + [anon_sym_trait] = ACTIONS(517), + [anon_sym_type] = ACTIONS(517), + [anon_sym_use] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_asm] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_GT] = ACTIONS(517), + [anon_sym_COLON_COLON] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_AMP] = ACTIONS(517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(515), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_AMP_AMP] = ACTIONS(515), + [anon_sym_PIPE_PIPE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(517), + [anon_sym_EQ_EQ] = ACTIONS(515), + [anon_sym_BANG_EQ] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(517), + [anon_sym_GT_GT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(517), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_PLUS_EQ] = ACTIONS(515), + [anon_sym_DASH_EQ] = ACTIONS(515), + [anon_sym_STAR_EQ] = ACTIONS(515), + [anon_sym_SLASH_EQ] = ACTIONS(515), + [anon_sym_PERCENT_EQ] = ACTIONS(515), + [anon_sym_AMP_EQ] = ACTIONS(515), + [anon_sym_PIPE_EQ] = ACTIONS(515), + [anon_sym_CARET_EQ] = ACTIONS(515), + [anon_sym_LT_LT_EQ] = ACTIONS(515), + [anon_sym_GT_GT_EQ] = ACTIONS(515), + [anon_sym_yield] = ACTIONS(517), + [anon_sym_move] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(517), + [sym_integer_literal] = ACTIONS(515), + [aux_sym_string_literal_token1] = ACTIONS(515), + [sym_char_literal] = ACTIONS(515), + [anon_sym_true] = ACTIONS(517), + [anon_sym_false] = ACTIONS(517), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(517), + [sym_metavariable] = ACTIONS(515), + [sym_raw_string_literal] = ACTIONS(515), + [sym_float_literal] = ACTIONS(515), + [sym_block_comment] = ACTIONS(3), + }, + [72] = { + [ts_builtin_sym_end] = ACTIONS(519), + [sym_identifier] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_u8] = ACTIONS(521), + [anon_sym_i8] = ACTIONS(521), + [anon_sym_u16] = ACTIONS(521), + [anon_sym_i16] = ACTIONS(521), + [anon_sym_u32] = ACTIONS(521), + [anon_sym_i32] = ACTIONS(521), + [anon_sym_u64] = ACTIONS(521), + [anon_sym_i64] = ACTIONS(521), + [anon_sym_u128] = ACTIONS(521), + [anon_sym_i128] = ACTIONS(521), + [anon_sym_u256] = ACTIONS(521), + [anon_sym_i256] = ACTIONS(521), + [anon_sym_b256] = ACTIONS(521), + [anon_sym_isize] = ACTIONS(521), + [anon_sym_usize] = ACTIONS(521), + [anon_sym_f32] = ACTIONS(521), + [anon_sym_f64] = ACTIONS(521), + [anon_sym_bool] = ACTIONS(521), + [anon_sym_char] = ACTIONS(521), + [anon_sym_str] = ACTIONS(521), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_contract] = ACTIONS(521), + [anon_sym_script] = ACTIONS(521), + [anon_sym_predicate] = ACTIONS(521), + [anon_sym_library] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_RBRACE] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [anon_sym_abi] = ACTIONS(521), + [anon_sym_as] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_configurable] = ACTIONS(521), + [anon_sym_const] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_default] = ACTIONS(521), + [anon_sym_mod] = ACTIONS(521), + [anon_sym_enum] = ACTIONS(521), + [anon_sym_fn] = ACTIONS(521), + [anon_sym_for] = ACTIONS(521), + [anon_sym_if] = ACTIONS(521), + [anon_sym_impl] = ACTIONS(521), + [anon_sym_let] = ACTIONS(521), + [anon_sym_match] = ACTIONS(521), + [anon_sym_pub] = ACTIONS(521), + [anon_sym_return] = ACTIONS(521), + [anon_sym_storage] = ACTIONS(521), + [anon_sym_struct] = ACTIONS(521), + [anon_sym_trait] = ACTIONS(521), + [anon_sym_type] = ACTIONS(521), + [anon_sym_use] = ACTIONS(521), + [anon_sym_while] = ACTIONS(521), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(521), + [anon_sym_asm] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(519), + [anon_sym_LT] = ACTIONS(521), + [anon_sym_GT] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(519), + [anon_sym_STAR] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(519), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_AMP_AMP] = ACTIONS(519), + [anon_sym_PIPE_PIPE] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(521), + [anon_sym_CARET] = ACTIONS(521), + [anon_sym_EQ_EQ] = ACTIONS(519), + [anon_sym_BANG_EQ] = ACTIONS(519), + [anon_sym_LT_EQ] = ACTIONS(519), + [anon_sym_GT_EQ] = ACTIONS(519), + [anon_sym_LT_LT] = ACTIONS(521), + [anon_sym_GT_GT] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_PERCENT] = ACTIONS(521), + [anon_sym_PLUS_EQ] = ACTIONS(519), + [anon_sym_DASH_EQ] = ACTIONS(519), + [anon_sym_STAR_EQ] = ACTIONS(519), + [anon_sym_SLASH_EQ] = ACTIONS(519), + [anon_sym_PERCENT_EQ] = ACTIONS(519), + [anon_sym_AMP_EQ] = ACTIONS(519), + [anon_sym_PIPE_EQ] = ACTIONS(519), + [anon_sym_CARET_EQ] = ACTIONS(519), + [anon_sym_LT_LT_EQ] = ACTIONS(519), + [anon_sym_GT_GT_EQ] = ACTIONS(519), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(521), + [anon_sym_DOT] = ACTIONS(521), + [sym_integer_literal] = ACTIONS(519), + [aux_sym_string_literal_token1] = ACTIONS(519), + [sym_char_literal] = ACTIONS(519), + [anon_sym_true] = ACTIONS(521), + [anon_sym_false] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(521), + [sym_metavariable] = ACTIONS(519), + [sym_raw_string_literal] = ACTIONS(519), + [sym_float_literal] = ACTIONS(519), + [sym_block_comment] = ACTIONS(3), + }, + [73] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(83), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(876), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -21502,6 +23162,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -21511,92 +23174,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1955), - [sym__let_chain] = STATE(1952), - [sym__condition] = STATE(1882), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [74] = { + [ts_builtin_sym_end] = ACTIONS(525), + [sym_identifier] = ACTIONS(527), + [anon_sym_SEMI] = 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_u256] = ACTIONS(527), + [anon_sym_i256] = ACTIONS(527), + [anon_sym_b256] = ACTIONS(527), + [anon_sym_isize] = ACTIONS(527), + [anon_sym_usize] = ACTIONS(527), + [anon_sym_f32] = ACTIONS(527), + [anon_sym_f64] = ACTIONS(527), + [anon_sym_bool] = ACTIONS(527), + [anon_sym_char] = ACTIONS(527), + [anon_sym_str] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_contract] = ACTIONS(527), + [anon_sym_script] = ACTIONS(527), + [anon_sym_predicate] = ACTIONS(527), + [anon_sym_library] = ACTIONS(527), + [anon_sym_LPAREN] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_SQUOTE] = ACTIONS(527), + [anon_sym_abi] = ACTIONS(527), + [anon_sym_as] = ACTIONS(527), + [anon_sym_break] = ACTIONS(527), + [anon_sym_configurable] = ACTIONS(527), + [anon_sym_const] = ACTIONS(527), + [anon_sym_continue] = ACTIONS(527), + [anon_sym_default] = ACTIONS(527), + [anon_sym_mod] = ACTIONS(527), + [anon_sym_enum] = ACTIONS(527), + [anon_sym_fn] = ACTIONS(527), + [anon_sym_for] = ACTIONS(527), + [anon_sym_if] = ACTIONS(527), + [anon_sym_impl] = ACTIONS(527), + [anon_sym_let] = ACTIONS(527), + [anon_sym_match] = ACTIONS(527), + [anon_sym_pub] = ACTIONS(527), + [anon_sym_return] = ACTIONS(527), + [anon_sym_storage] = ACTIONS(527), + [anon_sym_struct] = ACTIONS(527), + [anon_sym_trait] = ACTIONS(527), + [anon_sym_type] = ACTIONS(527), + [anon_sym_use] = ACTIONS(527), + [anon_sym_while] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(525), + [anon_sym_BANG] = ACTIONS(527), + [anon_sym_EQ] = ACTIONS(527), + [anon_sym_asm] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(527), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT] = ACTIONS(527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_PIPE] = ACTIONS(527), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), + [anon_sym_LT_EQ] = ACTIONS(525), + [anon_sym_GT_EQ] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(527), + [anon_sym_GT_GT] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(527), + [anon_sym_PERCENT] = ACTIONS(527), + [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_AMP_EQ] = ACTIONS(525), + [anon_sym_PIPE_EQ] = ACTIONS(525), + [anon_sym_CARET_EQ] = ACTIONS(525), + [anon_sym_LT_LT_EQ] = ACTIONS(525), + [anon_sym_GT_GT_EQ] = ACTIONS(525), + [anon_sym_yield] = ACTIONS(527), + [anon_sym_move] = ACTIONS(527), + [anon_sym_DOT] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(525), + [aux_sym_string_literal_token1] = ACTIONS(525), + [sym_char_literal] = ACTIONS(525), + [anon_sym_true] = ACTIONS(527), + [anon_sym_false] = ACTIONS(527), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(527), + [sym_metavariable] = ACTIONS(525), + [sym_raw_string_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(525), + [sym_block_comment] = ACTIONS(3), + }, + [75] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1916), + [sym__let_chain] = STATE(1919), + [sym__condition] = STATE(1966), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -21607,6 +23379,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -21616,91 +23391,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(906), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1885), - [sym__let_chain] = STATE(1884), - [sym__condition] = STATE(2031), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [76] = { + [ts_builtin_sym_end] = ACTIONS(529), + [sym_identifier] = ACTIONS(531), + [anon_sym_SEMI] = 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_u256] = ACTIONS(531), + [anon_sym_i256] = ACTIONS(531), + [anon_sym_b256] = ACTIONS(531), + [anon_sym_isize] = ACTIONS(531), + [anon_sym_usize] = ACTIONS(531), + [anon_sym_f32] = ACTIONS(531), + [anon_sym_f64] = ACTIONS(531), + [anon_sym_bool] = ACTIONS(531), + [anon_sym_char] = ACTIONS(531), + [anon_sym_str] = ACTIONS(531), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_contract] = ACTIONS(531), + [anon_sym_script] = ACTIONS(531), + [anon_sym_predicate] = ACTIONS(531), + [anon_sym_library] = ACTIONS(531), + [anon_sym_LPAREN] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(529), + [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_SQUOTE] = ACTIONS(531), + [anon_sym_abi] = ACTIONS(531), + [anon_sym_as] = ACTIONS(531), + [anon_sym_break] = ACTIONS(531), + [anon_sym_configurable] = ACTIONS(531), + [anon_sym_const] = ACTIONS(531), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_default] = ACTIONS(531), + [anon_sym_mod] = ACTIONS(531), + [anon_sym_enum] = ACTIONS(531), + [anon_sym_fn] = ACTIONS(531), + [anon_sym_for] = ACTIONS(531), + [anon_sym_if] = ACTIONS(531), + [anon_sym_impl] = ACTIONS(531), + [anon_sym_let] = ACTIONS(531), + [anon_sym_match] = ACTIONS(531), + [anon_sym_pub] = ACTIONS(531), + [anon_sym_return] = ACTIONS(531), + [anon_sym_storage] = ACTIONS(531), + [anon_sym_struct] = ACTIONS(531), + [anon_sym_trait] = ACTIONS(531), + [anon_sym_type] = ACTIONS(531), + [anon_sym_use] = ACTIONS(531), + [anon_sym_while] = ACTIONS(531), + [anon_sym_POUND] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_EQ] = ACTIONS(531), + [anon_sym_asm] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_QMARK] = ACTIONS(529), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_GT] = ACTIONS(531), + [anon_sym_COLON_COLON] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_AMP] = ACTIONS(531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_AMP_AMP] = ACTIONS(529), + [anon_sym_PIPE_PIPE] = ACTIONS(529), + [anon_sym_PIPE] = ACTIONS(531), + [anon_sym_CARET] = ACTIONS(531), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_BANG_EQ] = ACTIONS(529), + [anon_sym_LT_EQ] = ACTIONS(529), + [anon_sym_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_GT_GT] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(531), + [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_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(531), + [anon_sym_move] = ACTIONS(531), + [anon_sym_DOT] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(529), + [aux_sym_string_literal_token1] = ACTIONS(529), + [sym_char_literal] = ACTIONS(529), + [anon_sym_true] = ACTIONS(531), + [anon_sym_false] = ACTIONS(531), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(531), + [sym_metavariable] = ACTIONS(529), + [sym_raw_string_literal] = ACTIONS(529), + [sym_float_literal] = ACTIONS(529), + [sym_block_comment] = ACTIONS(3), + }, + [77] = { + [ts_builtin_sym_end] = ACTIONS(533), + [sym_identifier] = ACTIONS(535), + [anon_sym_SEMI] = 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_u256] = ACTIONS(535), + [anon_sym_i256] = ACTIONS(535), + [anon_sym_b256] = ACTIONS(535), + [anon_sym_isize] = ACTIONS(535), + [anon_sym_usize] = ACTIONS(535), + [anon_sym_f32] = ACTIONS(535), + [anon_sym_f64] = ACTIONS(535), + [anon_sym_bool] = ACTIONS(535), + [anon_sym_char] = ACTIONS(535), + [anon_sym_str] = ACTIONS(535), + [anon_sym_LBRACK] = ACTIONS(533), + [anon_sym_contract] = ACTIONS(535), + [anon_sym_script] = ACTIONS(535), + [anon_sym_predicate] = ACTIONS(535), + [anon_sym_library] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_SQUOTE] = ACTIONS(535), + [anon_sym_abi] = ACTIONS(535), + [anon_sym_as] = ACTIONS(535), + [anon_sym_break] = ACTIONS(535), + [anon_sym_configurable] = ACTIONS(535), + [anon_sym_const] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_default] = ACTIONS(535), + [anon_sym_mod] = ACTIONS(535), + [anon_sym_enum] = ACTIONS(535), + [anon_sym_fn] = ACTIONS(535), + [anon_sym_for] = ACTIONS(535), + [anon_sym_if] = ACTIONS(535), + [anon_sym_impl] = ACTIONS(535), + [anon_sym_let] = ACTIONS(535), + [anon_sym_match] = ACTIONS(535), + [anon_sym_pub] = ACTIONS(535), + [anon_sym_return] = ACTIONS(535), + [anon_sym_storage] = ACTIONS(535), + [anon_sym_struct] = ACTIONS(535), + [anon_sym_trait] = ACTIONS(535), + [anon_sym_type] = ACTIONS(535), + [anon_sym_use] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_EQ] = ACTIONS(535), + [anon_sym_asm] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_LT] = ACTIONS(535), + [anon_sym_GT] = ACTIONS(535), + [anon_sym_COLON_COLON] = ACTIONS(533), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [anon_sym_DOT_DOT] = ACTIONS(535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(533), + [anon_sym_PIPE_PIPE] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), + [anon_sym_LT_EQ] = ACTIONS(533), + [anon_sym_GT_EQ] = ACTIONS(533), + [anon_sym_LT_LT] = ACTIONS(535), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_SLASH] = ACTIONS(535), + [anon_sym_PERCENT] = ACTIONS(535), + [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_AMP_EQ] = ACTIONS(533), + [anon_sym_PIPE_EQ] = ACTIONS(533), + [anon_sym_CARET_EQ] = ACTIONS(533), + [anon_sym_LT_LT_EQ] = ACTIONS(533), + [anon_sym_GT_GT_EQ] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(535), + [anon_sym_DOT] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(533), + [aux_sym_string_literal_token1] = ACTIONS(533), + [sym_char_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(535), + [sym_metavariable] = ACTIONS(533), + [sym_raw_string_literal] = ACTIONS(533), + [sym_float_literal] = ACTIONS(533), + [sym_block_comment] = ACTIONS(3), + }, + [78] = { + [ts_builtin_sym_end] = ACTIONS(537), + [sym_identifier] = ACTIONS(539), + [anon_sym_SEMI] = 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_u256] = ACTIONS(539), + [anon_sym_i256] = ACTIONS(539), + [anon_sym_b256] = ACTIONS(539), + [anon_sym_isize] = ACTIONS(539), + [anon_sym_usize] = ACTIONS(539), + [anon_sym_f32] = ACTIONS(539), + [anon_sym_f64] = ACTIONS(539), + [anon_sym_bool] = ACTIONS(539), + [anon_sym_char] = ACTIONS(539), + [anon_sym_str] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(537), + [anon_sym_contract] = ACTIONS(539), + [anon_sym_script] = ACTIONS(539), + [anon_sym_predicate] = ACTIONS(539), + [anon_sym_library] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_abi] = ACTIONS(539), + [anon_sym_as] = ACTIONS(539), + [anon_sym_break] = ACTIONS(539), + [anon_sym_configurable] = ACTIONS(539), + [anon_sym_const] = ACTIONS(539), + [anon_sym_continue] = ACTIONS(539), + [anon_sym_default] = ACTIONS(539), + [anon_sym_mod] = ACTIONS(539), + [anon_sym_enum] = ACTIONS(539), + [anon_sym_fn] = ACTIONS(539), + [anon_sym_for] = ACTIONS(539), + [anon_sym_if] = ACTIONS(539), + [anon_sym_impl] = ACTIONS(539), + [anon_sym_let] = ACTIONS(539), + [anon_sym_match] = ACTIONS(539), + [anon_sym_pub] = ACTIONS(539), + [anon_sym_return] = ACTIONS(539), + [anon_sym_storage] = ACTIONS(539), + [anon_sym_struct] = ACTIONS(539), + [anon_sym_trait] = ACTIONS(539), + [anon_sym_type] = ACTIONS(539), + [anon_sym_use] = ACTIONS(539), + [anon_sym_while] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_asm] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_QMARK] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_COLON_COLON] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), + [anon_sym_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(539), + [anon_sym_CARET] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_LT_LT] = ACTIONS(539), + [anon_sym_GT_GT] = ACTIONS(539), + [anon_sym_SLASH] = ACTIONS(539), + [anon_sym_PERCENT] = ACTIONS(539), + [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_AMP_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_yield] = ACTIONS(539), + [anon_sym_move] = ACTIONS(539), + [anon_sym_DOT] = ACTIONS(539), + [sym_integer_literal] = ACTIONS(537), + [aux_sym_string_literal_token1] = ACTIONS(537), + [sym_char_literal] = ACTIONS(537), + [anon_sym_true] = ACTIONS(539), + [anon_sym_false] = ACTIONS(539), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(539), + [sym_metavariable] = ACTIONS(537), + [sym_raw_string_literal] = ACTIONS(537), + [sym_float_literal] = ACTIONS(537), + [sym_block_comment] = ACTIONS(3), + }, + [79] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(83), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(876), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(83), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -21712,6 +23810,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -21721,714 +23822,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(458), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_identifier] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(460), - [anon_sym_u8] = ACTIONS(462), - [anon_sym_i8] = ACTIONS(462), - [anon_sym_u16] = ACTIONS(462), - [anon_sym_i16] = ACTIONS(462), - [anon_sym_u32] = ACTIONS(462), - [anon_sym_i32] = ACTIONS(462), - [anon_sym_u64] = ACTIONS(462), - [anon_sym_i64] = ACTIONS(462), - [anon_sym_u128] = ACTIONS(462), - [anon_sym_i128] = ACTIONS(462), - [anon_sym_isize] = ACTIONS(462), - [anon_sym_usize] = ACTIONS(462), - [anon_sym_f32] = ACTIONS(462), - [anon_sym_f64] = ACTIONS(462), - [anon_sym_bool] = ACTIONS(462), - [anon_sym_char] = ACTIONS(462), - [anon_sym_str] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(460), - [anon_sym_contract] = ACTIONS(462), - [anon_sym_script] = ACTIONS(462), - [anon_sym_predicate] = ACTIONS(462), - [anon_sym_library] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_SQUOTE] = ACTIONS(462), - [anon_sym_abi] = ACTIONS(462), - [anon_sym_as] = ACTIONS(462), - [anon_sym_break] = ACTIONS(462), - [anon_sym_configurable] = ACTIONS(462), - [anon_sym_const] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(462), - [anon_sym_default] = ACTIONS(462), - [anon_sym_dep] = ACTIONS(462), - [anon_sym_enum] = ACTIONS(462), - [anon_sym_fn] = ACTIONS(462), - [anon_sym_for] = ACTIONS(462), - [anon_sym_if] = ACTIONS(462), - [anon_sym_impl] = ACTIONS(462), - [anon_sym_let] = ACTIONS(462), - [anon_sym_match] = ACTIONS(462), - [anon_sym_pub] = ACTIONS(462), - [anon_sym_return] = ACTIONS(462), - [anon_sym_storage] = ACTIONS(462), - [anon_sym_struct] = ACTIONS(462), - [anon_sym_trait] = ACTIONS(462), - [anon_sym_use] = ACTIONS(462), - [anon_sym_while] = ACTIONS(462), - [anon_sym_POUND] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(462), - [anon_sym_EQ] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(462), - [anon_sym_asm] = ACTIONS(462), - [anon_sym_PLUS] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(462), - [anon_sym_GT] = ACTIONS(462), - [anon_sym_COLON_COLON] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(462), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_DOT_DOT] = ACTIONS(462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(462), - [anon_sym_CARET] = ACTIONS(462), - [anon_sym_EQ_EQ] = ACTIONS(460), - [anon_sym_BANG_EQ] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(460), - [anon_sym_GT_EQ] = ACTIONS(460), - [anon_sym_LT_LT] = ACTIONS(462), - [anon_sym_GT_GT] = ACTIONS(462), - [anon_sym_PERCENT] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(460), - [anon_sym_DASH_EQ] = ACTIONS(460), - [anon_sym_STAR_EQ] = ACTIONS(460), - [anon_sym_SLASH_EQ] = ACTIONS(460), - [anon_sym_PERCENT_EQ] = ACTIONS(460), - [anon_sym_AMP_EQ] = ACTIONS(460), - [anon_sym_PIPE_EQ] = ACTIONS(460), - [anon_sym_CARET_EQ] = ACTIONS(460), - [anon_sym_LT_LT_EQ] = ACTIONS(460), - [anon_sym_GT_GT_EQ] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_move] = ACTIONS(462), - [anon_sym_DOT] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(460), - [aux_sym_string_literal_token1] = ACTIONS(460), - [sym_char_literal] = ACTIONS(460), - [anon_sym_true] = ACTIONS(462), - [anon_sym_false] = ACTIONS(462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(462), - [sym_metavariable] = ACTIONS(460), - [sym_raw_string_literal] = ACTIONS(460), - [sym_float_literal] = ACTIONS(460), - [sym_block_comment] = ACTIONS(3), - }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(464), - [sym_identifier] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_contract] = ACTIONS(466), - [anon_sym_script] = ACTIONS(466), - [anon_sym_predicate] = ACTIONS(466), - [anon_sym_library] = ACTIONS(466), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_LBRACE] = ACTIONS(464), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(466), - [anon_sym_abi] = ACTIONS(466), - [anon_sym_as] = ACTIONS(468), - [anon_sym_break] = ACTIONS(466), - [anon_sym_configurable] = ACTIONS(466), - [anon_sym_const] = ACTIONS(466), - [anon_sym_continue] = ACTIONS(466), - [anon_sym_default] = ACTIONS(466), - [anon_sym_dep] = ACTIONS(466), - [anon_sym_enum] = ACTIONS(466), - [anon_sym_fn] = ACTIONS(466), - [anon_sym_for] = ACTIONS(466), - [anon_sym_if] = ACTIONS(466), - [anon_sym_impl] = ACTIONS(466), - [anon_sym_let] = ACTIONS(466), - [anon_sym_match] = ACTIONS(466), - [anon_sym_pub] = ACTIONS(466), - [anon_sym_return] = ACTIONS(466), - [anon_sym_storage] = ACTIONS(466), - [anon_sym_struct] = ACTIONS(466), - [anon_sym_trait] = ACTIONS(466), - [anon_sym_use] = ACTIONS(466), - [anon_sym_while] = ACTIONS(466), - [anon_sym_POUND] = ACTIONS(464), - [anon_sym_BANG] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(468), - [anon_sym_asm] = ACTIONS(466), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_COLON_COLON] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [anon_sym_DOT_DOT] = ACTIONS(466), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(466), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [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_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_yield] = ACTIONS(466), - [anon_sym_move] = ACTIONS(466), - [anon_sym_DOT] = ACTIONS(468), - [sym_integer_literal] = ACTIONS(464), - [aux_sym_string_literal_token1] = ACTIONS(464), - [sym_char_literal] = ACTIONS(464), - [anon_sym_true] = ACTIONS(466), - [anon_sym_false] = ACTIONS(466), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(466), - [sym_metavariable] = ACTIONS(464), - [sym_raw_string_literal] = ACTIONS(464), - [sym_float_literal] = ACTIONS(464), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(472), - [sym_identifier] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_u8] = ACTIONS(474), - [anon_sym_i8] = ACTIONS(474), - [anon_sym_u16] = ACTIONS(474), - [anon_sym_i16] = ACTIONS(474), - [anon_sym_u32] = ACTIONS(474), - [anon_sym_i32] = ACTIONS(474), - [anon_sym_u64] = ACTIONS(474), - [anon_sym_i64] = ACTIONS(474), - [anon_sym_u128] = ACTIONS(474), - [anon_sym_i128] = ACTIONS(474), - [anon_sym_isize] = ACTIONS(474), - [anon_sym_usize] = ACTIONS(474), - [anon_sym_f32] = ACTIONS(474), - [anon_sym_f64] = ACTIONS(474), - [anon_sym_bool] = ACTIONS(474), - [anon_sym_char] = ACTIONS(474), - [anon_sym_str] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_contract] = ACTIONS(474), - [anon_sym_script] = ACTIONS(474), - [anon_sym_predicate] = ACTIONS(474), - [anon_sym_library] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(474), - [anon_sym_abi] = ACTIONS(474), - [anon_sym_as] = ACTIONS(479), - [anon_sym_break] = ACTIONS(474), - [anon_sym_configurable] = ACTIONS(474), - [anon_sym_const] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_dep] = ACTIONS(474), - [anon_sym_enum] = ACTIONS(474), - [anon_sym_fn] = ACTIONS(474), - [anon_sym_for] = ACTIONS(474), - [anon_sym_if] = ACTIONS(474), - [anon_sym_impl] = ACTIONS(474), - [anon_sym_let] = ACTIONS(474), - [anon_sym_match] = ACTIONS(474), - [anon_sym_pub] = ACTIONS(474), - [anon_sym_return] = ACTIONS(474), - [anon_sym_storage] = ACTIONS(474), - [anon_sym_struct] = ACTIONS(474), - [anon_sym_trait] = ACTIONS(474), - [anon_sym_use] = ACTIONS(474), - [anon_sym_while] = ACTIONS(474), - [anon_sym_POUND] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(479), - [anon_sym_asm] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_COLON_COLON] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_LT_LT] = ACTIONS(479), - [anon_sym_GT_GT] = ACTIONS(479), - [anon_sym_PERCENT] = ACTIONS(479), - [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_AMP_EQ] = ACTIONS(481), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_CARET_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(474), - [anon_sym_move] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(479), - [sym_integer_literal] = ACTIONS(472), - [aux_sym_string_literal_token1] = ACTIONS(472), - [sym_char_literal] = ACTIONS(472), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(474), - [sym_metavariable] = ACTIONS(472), - [sym_raw_string_literal] = ACTIONS(472), - [sym_float_literal] = ACTIONS(472), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(488), - [anon_sym_SEMI] = 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_isize] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_f32] = ACTIONS(488), - [anon_sym_f64] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_char] = ACTIONS(488), - [anon_sym_str] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_contract] = ACTIONS(488), - [anon_sym_script] = ACTIONS(488), - [anon_sym_predicate] = ACTIONS(488), - [anon_sym_library] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(488), - [anon_sym_abi] = ACTIONS(488), - [anon_sym_as] = ACTIONS(488), - [anon_sym_break] = ACTIONS(488), - [anon_sym_configurable] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_dep] = ACTIONS(488), - [anon_sym_enum] = ACTIONS(488), - [anon_sym_fn] = ACTIONS(488), - [anon_sym_for] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_impl] = ACTIONS(488), - [anon_sym_let] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_pub] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_storage] = ACTIONS(488), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_trait] = ACTIONS(488), - [anon_sym_use] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_asm] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(486), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [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_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_CARET_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_yield] = ACTIONS(488), - [anon_sym_move] = ACTIONS(488), - [anon_sym_DOT] = ACTIONS(488), - [sym_integer_literal] = ACTIONS(486), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_char_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(488), - [sym_metavariable] = ACTIONS(486), - [sym_raw_string_literal] = ACTIONS(486), - [sym_float_literal] = ACTIONS(486), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(490), - [sym_identifier] = ACTIONS(492), - [anon_sym_SEMI] = 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_isize] = ACTIONS(492), - [anon_sym_usize] = ACTIONS(492), - [anon_sym_f32] = ACTIONS(492), - [anon_sym_f64] = ACTIONS(492), - [anon_sym_bool] = ACTIONS(492), - [anon_sym_char] = ACTIONS(492), - [anon_sym_str] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(490), - [anon_sym_contract] = ACTIONS(492), - [anon_sym_script] = ACTIONS(492), - [anon_sym_predicate] = ACTIONS(492), - [anon_sym_library] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_SQUOTE] = ACTIONS(492), - [anon_sym_abi] = ACTIONS(492), - [anon_sym_as] = ACTIONS(492), - [anon_sym_break] = ACTIONS(492), - [anon_sym_configurable] = ACTIONS(492), - [anon_sym_const] = ACTIONS(492), - [anon_sym_continue] = ACTIONS(492), - [anon_sym_default] = ACTIONS(492), - [anon_sym_dep] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(492), - [anon_sym_fn] = ACTIONS(492), - [anon_sym_for] = ACTIONS(492), - [anon_sym_if] = ACTIONS(492), - [anon_sym_impl] = ACTIONS(492), - [anon_sym_let] = ACTIONS(492), - [anon_sym_match] = ACTIONS(492), - [anon_sym_pub] = ACTIONS(492), - [anon_sym_return] = ACTIONS(492), - [anon_sym_storage] = ACTIONS(492), - [anon_sym_struct] = ACTIONS(492), - [anon_sym_trait] = ACTIONS(492), - [anon_sym_use] = ACTIONS(492), - [anon_sym_while] = ACTIONS(492), - [anon_sym_POUND] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_asm] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_COLON_COLON] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_DOT_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT] = ACTIONS(492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(490), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_EQ_EQ] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_GT_GT] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [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_AMP_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_yield] = ACTIONS(492), - [anon_sym_move] = ACTIONS(492), - [anon_sym_DOT] = ACTIONS(492), - [sym_integer_literal] = ACTIONS(490), - [aux_sym_string_literal_token1] = ACTIONS(490), - [sym_char_literal] = ACTIONS(490), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), + [80] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(476), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(935), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(492), - [sym_metavariable] = ACTIONS(490), - [sym_raw_string_literal] = ACTIONS(490), - [sym_float_literal] = ACTIONS(490), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(494), - [sym_identifier] = ACTIONS(496), - [anon_sym_SEMI] = 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_isize] = ACTIONS(496), - [anon_sym_usize] = ACTIONS(496), - [anon_sym_f32] = ACTIONS(496), - [anon_sym_f64] = ACTIONS(496), - [anon_sym_bool] = ACTIONS(496), - [anon_sym_char] = ACTIONS(496), - [anon_sym_str] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(494), - [anon_sym_contract] = ACTIONS(496), - [anon_sym_script] = ACTIONS(496), - [anon_sym_predicate] = ACTIONS(496), - [anon_sym_library] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_SQUOTE] = ACTIONS(496), - [anon_sym_abi] = ACTIONS(496), - [anon_sym_as] = ACTIONS(496), - [anon_sym_break] = ACTIONS(496), - [anon_sym_configurable] = ACTIONS(496), - [anon_sym_const] = ACTIONS(496), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(496), - [anon_sym_dep] = ACTIONS(496), - [anon_sym_enum] = ACTIONS(496), - [anon_sym_fn] = ACTIONS(496), - [anon_sym_for] = ACTIONS(496), - [anon_sym_if] = ACTIONS(496), - [anon_sym_impl] = ACTIONS(496), - [anon_sym_let] = ACTIONS(496), - [anon_sym_match] = ACTIONS(496), - [anon_sym_pub] = ACTIONS(496), - [anon_sym_return] = ACTIONS(496), - [anon_sym_storage] = ACTIONS(496), - [anon_sym_struct] = ACTIONS(496), - [anon_sym_trait] = ACTIONS(496), - [anon_sym_use] = ACTIONS(496), - [anon_sym_while] = ACTIONS(496), - [anon_sym_POUND] = ACTIONS(494), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_asm] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_QMARK] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_GT] = ACTIONS(496), - [anon_sym_COLON_COLON] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_AMP] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT_DOT] = ACTIONS(496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_AMP_AMP] = ACTIONS(494), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(496), - [anon_sym_CARET] = ACTIONS(496), - [anon_sym_EQ_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_LT_LT] = ACTIONS(496), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [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_AMP_EQ] = ACTIONS(494), - [anon_sym_PIPE_EQ] = ACTIONS(494), - [anon_sym_CARET_EQ] = ACTIONS(494), - [anon_sym_LT_LT_EQ] = ACTIONS(494), - [anon_sym_GT_GT_EQ] = ACTIONS(494), - [anon_sym_yield] = ACTIONS(496), - [anon_sym_move] = ACTIONS(496), - [anon_sym_DOT] = ACTIONS(496), - [sym_integer_literal] = ACTIONS(494), - [aux_sym_string_literal_token1] = ACTIONS(494), - [sym_char_literal] = ACTIONS(494), - [anon_sym_true] = ACTIONS(496), - [anon_sym_false] = ACTIONS(496), + [81] = { + [sym_identifier] = ACTIONS(455), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_u8] = ACTIONS(455), + [anon_sym_i8] = ACTIONS(455), + [anon_sym_u16] = ACTIONS(455), + [anon_sym_i16] = ACTIONS(455), + [anon_sym_u32] = ACTIONS(455), + [anon_sym_i32] = ACTIONS(455), + [anon_sym_u64] = ACTIONS(455), + [anon_sym_i64] = ACTIONS(455), + [anon_sym_u128] = ACTIONS(455), + [anon_sym_i128] = ACTIONS(455), + [anon_sym_u256] = ACTIONS(455), + [anon_sym_i256] = ACTIONS(455), + [anon_sym_b256] = ACTIONS(455), + [anon_sym_isize] = ACTIONS(455), + [anon_sym_usize] = ACTIONS(455), + [anon_sym_f32] = ACTIONS(455), + [anon_sym_f64] = ACTIONS(455), + [anon_sym_bool] = ACTIONS(455), + [anon_sym_char] = ACTIONS(455), + [anon_sym_str] = ACTIONS(455), + [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_contract] = ACTIONS(455), + [anon_sym_script] = ACTIONS(455), + [anon_sym_predicate] = ACTIONS(455), + [anon_sym_library] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(455), + [anon_sym_abi] = ACTIONS(455), + [anon_sym_as] = ACTIONS(460), + [anon_sym_break] = ACTIONS(455), + [anon_sym_configurable] = ACTIONS(455), + [anon_sym_const] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(455), + [anon_sym_default] = ACTIONS(455), + [anon_sym_mod] = ACTIONS(455), + [anon_sym_enum] = ACTIONS(455), + [anon_sym_fn] = ACTIONS(455), + [anon_sym_for] = ACTIONS(455), + [anon_sym_if] = ACTIONS(455), + [anon_sym_impl] = ACTIONS(455), + [anon_sym_let] = ACTIONS(455), + [anon_sym_match] = ACTIONS(455), + [anon_sym_pub] = ACTIONS(455), + [anon_sym_return] = ACTIONS(455), + [anon_sym_storage] = ACTIONS(455), + [anon_sym_struct] = ACTIONS(455), + [anon_sym_trait] = ACTIONS(455), + [anon_sym_type] = ACTIONS(455), + [anon_sym_use] = ACTIONS(455), + [anon_sym_while] = ACTIONS(455), + [anon_sym_POUND] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_asm] = ACTIONS(455), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(453), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(462), + [anon_sym_DASH_EQ] = ACTIONS(462), + [anon_sym_STAR_EQ] = ACTIONS(462), + [anon_sym_SLASH_EQ] = ACTIONS(462), + [anon_sym_PERCENT_EQ] = ACTIONS(462), + [anon_sym_AMP_EQ] = ACTIONS(462), + [anon_sym_PIPE_EQ] = ACTIONS(462), + [anon_sym_CARET_EQ] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(462), + [anon_sym_GT_GT_EQ] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(455), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(453), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(453), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(496), - [sym_metavariable] = ACTIONS(494), - [sym_raw_string_literal] = ACTIONS(494), - [sym_float_literal] = ACTIONS(494), + [sym_self] = ACTIONS(455), + [sym_metavariable] = ACTIONS(453), + [sym_raw_string_literal] = ACTIONS(453), + [sym_float_literal] = ACTIONS(453), [sym_block_comment] = ACTIONS(3), }, - [70] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(480), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(827), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(480), + [82] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(83), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(876), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(83), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -22440,6 +24132,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -22449,922 +24144,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(498), - [sym_identifier] = ACTIONS(500), - [anon_sym_SEMI] = 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_isize] = ACTIONS(500), - [anon_sym_usize] = ACTIONS(500), - [anon_sym_f32] = ACTIONS(500), - [anon_sym_f64] = ACTIONS(500), - [anon_sym_bool] = ACTIONS(500), - [anon_sym_char] = ACTIONS(500), - [anon_sym_str] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_contract] = ACTIONS(500), - [anon_sym_script] = ACTIONS(500), - [anon_sym_predicate] = ACTIONS(500), - [anon_sym_library] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym_LBRACE] = ACTIONS(498), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_SQUOTE] = ACTIONS(500), - [anon_sym_abi] = ACTIONS(500), - [anon_sym_as] = ACTIONS(500), - [anon_sym_break] = ACTIONS(500), - [anon_sym_configurable] = ACTIONS(500), - [anon_sym_const] = ACTIONS(500), - [anon_sym_continue] = ACTIONS(500), - [anon_sym_default] = ACTIONS(500), - [anon_sym_dep] = ACTIONS(500), - [anon_sym_enum] = ACTIONS(500), - [anon_sym_fn] = ACTIONS(500), - [anon_sym_for] = ACTIONS(500), - [anon_sym_if] = ACTIONS(500), - [anon_sym_impl] = ACTIONS(500), - [anon_sym_let] = ACTIONS(500), - [anon_sym_match] = ACTIONS(500), - [anon_sym_pub] = ACTIONS(500), - [anon_sym_return] = ACTIONS(500), - [anon_sym_storage] = ACTIONS(500), - [anon_sym_struct] = ACTIONS(500), - [anon_sym_trait] = ACTIONS(500), - [anon_sym_use] = ACTIONS(500), - [anon_sym_while] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_asm] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_COLON_COLON] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_AMP] = ACTIONS(500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - [anon_sym_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT_EQ] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_LT_LT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [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_AMP_EQ] = ACTIONS(498), - [anon_sym_PIPE_EQ] = ACTIONS(498), - [anon_sym_CARET_EQ] = ACTIONS(498), - [anon_sym_LT_LT_EQ] = ACTIONS(498), - [anon_sym_GT_GT_EQ] = ACTIONS(498), - [anon_sym_yield] = ACTIONS(500), - [anon_sym_move] = ACTIONS(500), - [anon_sym_DOT] = ACTIONS(500), - [sym_integer_literal] = ACTIONS(498), - [aux_sym_string_literal_token1] = ACTIONS(498), - [sym_char_literal] = ACTIONS(498), - [anon_sym_true] = ACTIONS(500), - [anon_sym_false] = ACTIONS(500), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(500), - [sym_metavariable] = ACTIONS(498), - [sym_raw_string_literal] = ACTIONS(498), - [sym_float_literal] = ACTIONS(498), - [sym_block_comment] = ACTIONS(3), - }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(502), - [sym_identifier] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_u8] = ACTIONS(504), - [anon_sym_i8] = ACTIONS(504), - [anon_sym_u16] = ACTIONS(504), - [anon_sym_i16] = ACTIONS(504), - [anon_sym_u32] = ACTIONS(504), - [anon_sym_i32] = ACTIONS(504), - [anon_sym_u64] = ACTIONS(504), - [anon_sym_i64] = ACTIONS(504), - [anon_sym_u128] = ACTIONS(504), - [anon_sym_i128] = ACTIONS(504), - [anon_sym_isize] = ACTIONS(504), - [anon_sym_usize] = ACTIONS(504), - [anon_sym_f32] = ACTIONS(504), - [anon_sym_f64] = ACTIONS(504), - [anon_sym_bool] = ACTIONS(504), - [anon_sym_char] = ACTIONS(504), - [anon_sym_str] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_contract] = ACTIONS(504), - [anon_sym_script] = ACTIONS(504), - [anon_sym_predicate] = ACTIONS(504), - [anon_sym_library] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(504), - [anon_sym_abi] = ACTIONS(504), - [anon_sym_as] = ACTIONS(504), - [anon_sym_break] = ACTIONS(504), - [anon_sym_configurable] = ACTIONS(504), - [anon_sym_const] = ACTIONS(504), - [anon_sym_continue] = ACTIONS(504), - [anon_sym_default] = ACTIONS(504), - [anon_sym_dep] = ACTIONS(504), - [anon_sym_enum] = ACTIONS(504), - [anon_sym_fn] = ACTIONS(504), - [anon_sym_for] = ACTIONS(504), - [anon_sym_if] = ACTIONS(504), - [anon_sym_impl] = ACTIONS(504), - [anon_sym_let] = ACTIONS(504), - [anon_sym_match] = ACTIONS(504), - [anon_sym_pub] = ACTIONS(504), - [anon_sym_return] = ACTIONS(504), - [anon_sym_storage] = ACTIONS(504), - [anon_sym_struct] = ACTIONS(504), - [anon_sym_trait] = ACTIONS(504), - [anon_sym_use] = ACTIONS(504), - [anon_sym_while] = ACTIONS(504), - [anon_sym_POUND] = ACTIONS(502), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_EQ] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_asm] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_QMARK] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_COLON_COLON] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_AMP] = ACTIONS(504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT] = ACTIONS(504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_AMP_AMP] = ACTIONS(502), - [anon_sym_PIPE_PIPE] = ACTIONS(502), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(504), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT_EQ] = ACTIONS(502), - [anon_sym_GT_EQ] = ACTIONS(502), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_GT_GT] = ACTIONS(504), - [anon_sym_PERCENT] = ACTIONS(504), - [anon_sym_PLUS_EQ] = ACTIONS(502), - [anon_sym_DASH_EQ] = ACTIONS(502), - [anon_sym_STAR_EQ] = ACTIONS(502), - [anon_sym_SLASH_EQ] = ACTIONS(502), - [anon_sym_PERCENT_EQ] = ACTIONS(502), - [anon_sym_AMP_EQ] = ACTIONS(502), - [anon_sym_PIPE_EQ] = ACTIONS(502), - [anon_sym_CARET_EQ] = ACTIONS(502), - [anon_sym_LT_LT_EQ] = ACTIONS(502), - [anon_sym_GT_GT_EQ] = ACTIONS(502), - [anon_sym_yield] = ACTIONS(504), - [anon_sym_move] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(504), - [sym_integer_literal] = ACTIONS(502), - [aux_sym_string_literal_token1] = ACTIONS(502), - [sym_char_literal] = ACTIONS(502), - [anon_sym_true] = ACTIONS(504), - [anon_sym_false] = ACTIONS(504), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(504), - [sym_metavariable] = ACTIONS(502), - [sym_raw_string_literal] = ACTIONS(502), - [sym_float_literal] = ACTIONS(502), - [sym_block_comment] = ACTIONS(3), - }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_u8] = ACTIONS(508), - [anon_sym_i8] = ACTIONS(508), - [anon_sym_u16] = ACTIONS(508), - [anon_sym_i16] = ACTIONS(508), - [anon_sym_u32] = ACTIONS(508), - [anon_sym_i32] = ACTIONS(508), - [anon_sym_u64] = ACTIONS(508), - [anon_sym_i64] = ACTIONS(508), - [anon_sym_u128] = ACTIONS(508), - [anon_sym_i128] = ACTIONS(508), - [anon_sym_isize] = ACTIONS(508), - [anon_sym_usize] = ACTIONS(508), - [anon_sym_f32] = ACTIONS(508), - [anon_sym_f64] = ACTIONS(508), - [anon_sym_bool] = ACTIONS(508), - [anon_sym_char] = ACTIONS(508), - [anon_sym_str] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_contract] = ACTIONS(508), - [anon_sym_script] = ACTIONS(508), - [anon_sym_predicate] = ACTIONS(508), - [anon_sym_library] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(508), - [anon_sym_abi] = ACTIONS(508), - [anon_sym_as] = ACTIONS(508), - [anon_sym_break] = ACTIONS(508), - [anon_sym_configurable] = ACTIONS(508), - [anon_sym_const] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_default] = ACTIONS(508), - [anon_sym_dep] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_fn] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_impl] = ACTIONS(508), - [anon_sym_let] = ACTIONS(508), - [anon_sym_match] = ACTIONS(508), - [anon_sym_pub] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_storage] = ACTIONS(508), - [anon_sym_struct] = ACTIONS(508), - [anon_sym_trait] = ACTIONS(508), - [anon_sym_use] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_asm] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_QMARK] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_COLON_COLON] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PERCENT] = ACTIONS(508), - [anon_sym_PLUS_EQ] = ACTIONS(506), - [anon_sym_DASH_EQ] = ACTIONS(506), - [anon_sym_STAR_EQ] = ACTIONS(506), - [anon_sym_SLASH_EQ] = ACTIONS(506), - [anon_sym_PERCENT_EQ] = ACTIONS(506), - [anon_sym_AMP_EQ] = ACTIONS(506), - [anon_sym_PIPE_EQ] = ACTIONS(506), - [anon_sym_CARET_EQ] = ACTIONS(506), - [anon_sym_LT_LT_EQ] = ACTIONS(506), - [anon_sym_GT_GT_EQ] = ACTIONS(506), - [anon_sym_yield] = ACTIONS(508), - [anon_sym_move] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [sym_integer_literal] = ACTIONS(506), - [aux_sym_string_literal_token1] = ACTIONS(506), - [sym_char_literal] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(508), - [sym_metavariable] = ACTIONS(506), - [sym_raw_string_literal] = ACTIONS(506), - [sym_float_literal] = ACTIONS(506), - [sym_block_comment] = ACTIONS(3), - }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(510), - [sym_identifier] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(510), - [anon_sym_u8] = ACTIONS(512), - [anon_sym_i8] = ACTIONS(512), - [anon_sym_u16] = ACTIONS(512), - [anon_sym_i16] = ACTIONS(512), - [anon_sym_u32] = ACTIONS(512), - [anon_sym_i32] = ACTIONS(512), - [anon_sym_u64] = ACTIONS(512), - [anon_sym_i64] = ACTIONS(512), - [anon_sym_u128] = ACTIONS(512), - [anon_sym_i128] = ACTIONS(512), - [anon_sym_isize] = ACTIONS(512), - [anon_sym_usize] = ACTIONS(512), - [anon_sym_f32] = ACTIONS(512), - [anon_sym_f64] = ACTIONS(512), - [anon_sym_bool] = ACTIONS(512), - [anon_sym_char] = ACTIONS(512), - [anon_sym_str] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_contract] = ACTIONS(512), - [anon_sym_script] = ACTIONS(512), - [anon_sym_predicate] = ACTIONS(512), - [anon_sym_library] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LBRACE] = ACTIONS(510), - [anon_sym_RBRACE] = ACTIONS(510), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_abi] = ACTIONS(512), - [anon_sym_as] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [anon_sym_configurable] = ACTIONS(512), - [anon_sym_const] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [anon_sym_default] = ACTIONS(512), - [anon_sym_dep] = ACTIONS(512), - [anon_sym_enum] = ACTIONS(512), - [anon_sym_fn] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [anon_sym_impl] = ACTIONS(512), - [anon_sym_let] = ACTIONS(512), - [anon_sym_match] = ACTIONS(512), - [anon_sym_pub] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_storage] = ACTIONS(512), - [anon_sym_struct] = ACTIONS(512), - [anon_sym_trait] = ACTIONS(512), - [anon_sym_use] = ACTIONS(512), - [anon_sym_while] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_asm] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_COLON_COLON] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_EQ] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(510), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym_EQ_EQ] = ACTIONS(510), - [anon_sym_BANG_EQ] = ACTIONS(510), - [anon_sym_LT_EQ] = ACTIONS(510), - [anon_sym_GT_EQ] = ACTIONS(510), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_GT_GT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_PLUS_EQ] = ACTIONS(510), - [anon_sym_DASH_EQ] = ACTIONS(510), - [anon_sym_STAR_EQ] = ACTIONS(510), - [anon_sym_SLASH_EQ] = ACTIONS(510), - [anon_sym_PERCENT_EQ] = ACTIONS(510), - [anon_sym_AMP_EQ] = ACTIONS(510), - [anon_sym_PIPE_EQ] = ACTIONS(510), - [anon_sym_CARET_EQ] = ACTIONS(510), - [anon_sym_LT_LT_EQ] = ACTIONS(510), - [anon_sym_GT_GT_EQ] = ACTIONS(510), - [anon_sym_yield] = ACTIONS(512), - [anon_sym_move] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [sym_integer_literal] = ACTIONS(510), - [aux_sym_string_literal_token1] = ACTIONS(510), - [sym_char_literal] = ACTIONS(510), - [anon_sym_true] = ACTIONS(512), - [anon_sym_false] = ACTIONS(512), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(512), - [sym_metavariable] = ACTIONS(510), - [sym_raw_string_literal] = ACTIONS(510), - [sym_float_literal] = ACTIONS(510), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [ts_builtin_sym_end] = ACTIONS(514), - [sym_identifier] = ACTIONS(516), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_u8] = ACTIONS(516), - [anon_sym_i8] = ACTIONS(516), - [anon_sym_u16] = ACTIONS(516), - [anon_sym_i16] = ACTIONS(516), - [anon_sym_u32] = ACTIONS(516), - [anon_sym_i32] = ACTIONS(516), - [anon_sym_u64] = ACTIONS(516), - [anon_sym_i64] = ACTIONS(516), - [anon_sym_u128] = ACTIONS(516), - [anon_sym_i128] = ACTIONS(516), - [anon_sym_isize] = ACTIONS(516), - [anon_sym_usize] = ACTIONS(516), - [anon_sym_f32] = ACTIONS(516), - [anon_sym_f64] = ACTIONS(516), - [anon_sym_bool] = ACTIONS(516), - [anon_sym_char] = ACTIONS(516), - [anon_sym_str] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(514), - [anon_sym_contract] = ACTIONS(516), - [anon_sym_script] = ACTIONS(516), - [anon_sym_predicate] = ACTIONS(516), - [anon_sym_library] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(514), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(516), - [anon_sym_abi] = ACTIONS(516), - [anon_sym_as] = ACTIONS(516), - [anon_sym_break] = ACTIONS(516), - [anon_sym_configurable] = ACTIONS(516), - [anon_sym_const] = ACTIONS(516), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(516), - [anon_sym_dep] = ACTIONS(516), - [anon_sym_enum] = ACTIONS(516), - [anon_sym_fn] = ACTIONS(516), - [anon_sym_for] = ACTIONS(516), - [anon_sym_if] = ACTIONS(516), - [anon_sym_impl] = ACTIONS(516), - [anon_sym_let] = ACTIONS(516), - [anon_sym_match] = ACTIONS(516), - [anon_sym_pub] = ACTIONS(516), - [anon_sym_return] = ACTIONS(516), - [anon_sym_storage] = ACTIONS(516), - [anon_sym_struct] = ACTIONS(516), - [anon_sym_trait] = ACTIONS(516), - [anon_sym_use] = ACTIONS(516), - [anon_sym_while] = ACTIONS(516), - [anon_sym_POUND] = ACTIONS(514), - [anon_sym_BANG] = ACTIONS(516), - [anon_sym_EQ] = ACTIONS(516), - [anon_sym_SLASH] = ACTIONS(516), - [anon_sym_asm] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(516), - [anon_sym_QMARK] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(516), - [anon_sym_GT] = ACTIONS(516), - [anon_sym_COLON_COLON] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_DOT_DOT_DOT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(516), - [anon_sym_AMP_AMP] = ACTIONS(514), - [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(516), - [anon_sym_CARET] = ACTIONS(516), - [anon_sym_EQ_EQ] = ACTIONS(514), - [anon_sym_BANG_EQ] = ACTIONS(514), - [anon_sym_LT_EQ] = ACTIONS(514), - [anon_sym_GT_EQ] = ACTIONS(514), - [anon_sym_LT_LT] = ACTIONS(516), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_PERCENT] = ACTIONS(516), - [anon_sym_PLUS_EQ] = ACTIONS(514), - [anon_sym_DASH_EQ] = ACTIONS(514), - [anon_sym_STAR_EQ] = ACTIONS(514), - [anon_sym_SLASH_EQ] = ACTIONS(514), - [anon_sym_PERCENT_EQ] = ACTIONS(514), - [anon_sym_AMP_EQ] = ACTIONS(514), - [anon_sym_PIPE_EQ] = ACTIONS(514), - [anon_sym_CARET_EQ] = ACTIONS(514), - [anon_sym_LT_LT_EQ] = ACTIONS(514), - [anon_sym_GT_GT_EQ] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [anon_sym_move] = ACTIONS(516), - [anon_sym_DOT] = ACTIONS(516), - [sym_integer_literal] = ACTIONS(514), - [aux_sym_string_literal_token1] = ACTIONS(514), - [sym_char_literal] = ACTIONS(514), - [anon_sym_true] = ACTIONS(516), - [anon_sym_false] = ACTIONS(516), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(516), - [sym_metavariable] = ACTIONS(514), - [sym_raw_string_literal] = ACTIONS(514), - [sym_float_literal] = ACTIONS(514), - [sym_block_comment] = ACTIONS(3), - }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(518), - [sym_identifier] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(518), - [anon_sym_u8] = ACTIONS(520), - [anon_sym_i8] = ACTIONS(520), - [anon_sym_u16] = ACTIONS(520), - [anon_sym_i16] = ACTIONS(520), - [anon_sym_u32] = ACTIONS(520), - [anon_sym_i32] = ACTIONS(520), - [anon_sym_u64] = ACTIONS(520), - [anon_sym_i64] = ACTIONS(520), - [anon_sym_u128] = ACTIONS(520), - [anon_sym_i128] = ACTIONS(520), - [anon_sym_isize] = ACTIONS(520), - [anon_sym_usize] = ACTIONS(520), - [anon_sym_f32] = ACTIONS(520), - [anon_sym_f64] = ACTIONS(520), - [anon_sym_bool] = ACTIONS(520), - [anon_sym_char] = ACTIONS(520), - [anon_sym_str] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_contract] = ACTIONS(520), - [anon_sym_script] = ACTIONS(520), - [anon_sym_predicate] = ACTIONS(520), - [anon_sym_library] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_LBRACE] = ACTIONS(518), - [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_abi] = ACTIONS(520), - [anon_sym_as] = ACTIONS(520), - [anon_sym_break] = ACTIONS(520), - [anon_sym_configurable] = ACTIONS(520), - [anon_sym_const] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_default] = ACTIONS(520), - [anon_sym_dep] = ACTIONS(520), - [anon_sym_enum] = ACTIONS(520), - [anon_sym_fn] = ACTIONS(520), - [anon_sym_for] = ACTIONS(520), - [anon_sym_if] = ACTIONS(520), - [anon_sym_impl] = ACTIONS(520), - [anon_sym_let] = ACTIONS(520), - [anon_sym_match] = ACTIONS(520), - [anon_sym_pub] = ACTIONS(520), - [anon_sym_return] = ACTIONS(520), - [anon_sym_storage] = ACTIONS(520), - [anon_sym_struct] = ACTIONS(520), - [anon_sym_trait] = ACTIONS(520), - [anon_sym_use] = ACTIONS(520), - [anon_sym_while] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_EQ] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_asm] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_COLON_COLON] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_DOT_DOT_DOT] = ACTIONS(518), - [anon_sym_DOT_DOT] = ACTIONS(520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym_EQ_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_LT_LT] = ACTIONS(520), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_PLUS_EQ] = ACTIONS(518), - [anon_sym_DASH_EQ] = ACTIONS(518), - [anon_sym_STAR_EQ] = ACTIONS(518), - [anon_sym_SLASH_EQ] = ACTIONS(518), - [anon_sym_PERCENT_EQ] = ACTIONS(518), - [anon_sym_AMP_EQ] = ACTIONS(518), - [anon_sym_PIPE_EQ] = ACTIONS(518), - [anon_sym_CARET_EQ] = ACTIONS(518), - [anon_sym_LT_LT_EQ] = ACTIONS(518), - [anon_sym_GT_GT_EQ] = ACTIONS(518), - [anon_sym_yield] = ACTIONS(520), - [anon_sym_move] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [sym_integer_literal] = ACTIONS(518), - [aux_sym_string_literal_token1] = ACTIONS(518), - [sym_char_literal] = ACTIONS(518), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(520), - [sym_metavariable] = ACTIONS(518), - [sym_raw_string_literal] = ACTIONS(518), - [sym_float_literal] = ACTIONS(518), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(83), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(893), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [78] = { - [ts_builtin_sym_end] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_u8] = ACTIONS(524), - [anon_sym_i8] = ACTIONS(524), - [anon_sym_u16] = ACTIONS(524), - [anon_sym_i16] = ACTIONS(524), - [anon_sym_u32] = ACTIONS(524), - [anon_sym_i32] = ACTIONS(524), - [anon_sym_u64] = ACTIONS(524), - [anon_sym_i64] = ACTIONS(524), - [anon_sym_u128] = ACTIONS(524), - [anon_sym_i128] = ACTIONS(524), - [anon_sym_isize] = ACTIONS(524), - [anon_sym_usize] = ACTIONS(524), - [anon_sym_f32] = ACTIONS(524), - [anon_sym_f64] = ACTIONS(524), - [anon_sym_bool] = ACTIONS(524), - [anon_sym_char] = ACTIONS(524), - [anon_sym_str] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(522), - [anon_sym_contract] = ACTIONS(524), - [anon_sym_script] = ACTIONS(524), - [anon_sym_predicate] = ACTIONS(524), - [anon_sym_library] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(524), - [anon_sym_abi] = ACTIONS(524), - [anon_sym_as] = ACTIONS(524), - [anon_sym_break] = ACTIONS(524), - [anon_sym_configurable] = ACTIONS(524), - [anon_sym_const] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), - [anon_sym_default] = ACTIONS(524), - [anon_sym_dep] = ACTIONS(524), - [anon_sym_enum] = ACTIONS(524), - [anon_sym_fn] = ACTIONS(524), - [anon_sym_for] = ACTIONS(524), - [anon_sym_if] = ACTIONS(524), - [anon_sym_impl] = ACTIONS(524), - [anon_sym_let] = ACTIONS(524), - [anon_sym_match] = ACTIONS(524), - [anon_sym_pub] = ACTIONS(524), - [anon_sym_return] = ACTIONS(524), - [anon_sym_storage] = ACTIONS(524), - [anon_sym_struct] = ACTIONS(524), - [anon_sym_trait] = ACTIONS(524), - [anon_sym_use] = ACTIONS(524), - [anon_sym_while] = ACTIONS(524), - [anon_sym_POUND] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_EQ] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_asm] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_QMARK] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(522), - [anon_sym_DOT_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(522), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_PLUS_EQ] = ACTIONS(522), - [anon_sym_DASH_EQ] = ACTIONS(522), - [anon_sym_STAR_EQ] = ACTIONS(522), - [anon_sym_SLASH_EQ] = ACTIONS(522), - [anon_sym_PERCENT_EQ] = ACTIONS(522), - [anon_sym_AMP_EQ] = ACTIONS(522), - [anon_sym_PIPE_EQ] = ACTIONS(522), - [anon_sym_CARET_EQ] = ACTIONS(522), - [anon_sym_LT_LT_EQ] = ACTIONS(522), - [anon_sym_GT_GT_EQ] = ACTIONS(522), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(524), - [sym_integer_literal] = ACTIONS(522), - [aux_sym_string_literal_token1] = ACTIONS(522), - [sym_char_literal] = ACTIONS(522), - [anon_sym_true] = ACTIONS(524), - [anon_sym_false] = ACTIONS(524), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(524), - [sym_metavariable] = ACTIONS(522), - [sym_raw_string_literal] = ACTIONS(522), - [sym_float_literal] = ACTIONS(522), - [sym_block_comment] = ACTIONS(3), - }, - [79] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(480), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(897), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(480), + [83] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(476), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(854), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(476), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -23376,6 +24239,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -23385,402 +24251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(526), - [sym_identifier] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(526), - [anon_sym_u8] = ACTIONS(528), - [anon_sym_i8] = ACTIONS(528), - [anon_sym_u16] = ACTIONS(528), - [anon_sym_i16] = ACTIONS(528), - [anon_sym_u32] = ACTIONS(528), - [anon_sym_i32] = ACTIONS(528), - [anon_sym_u64] = ACTIONS(528), - [anon_sym_i64] = ACTIONS(528), - [anon_sym_u128] = ACTIONS(528), - [anon_sym_i128] = ACTIONS(528), - [anon_sym_isize] = ACTIONS(528), - [anon_sym_usize] = ACTIONS(528), - [anon_sym_f32] = ACTIONS(528), - [anon_sym_f64] = ACTIONS(528), - [anon_sym_bool] = ACTIONS(528), - [anon_sym_char] = ACTIONS(528), - [anon_sym_str] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(526), - [anon_sym_contract] = ACTIONS(528), - [anon_sym_script] = ACTIONS(528), - [anon_sym_predicate] = ACTIONS(528), - [anon_sym_library] = ACTIONS(528), - [anon_sym_LPAREN] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_SQUOTE] = ACTIONS(528), - [anon_sym_abi] = ACTIONS(528), - [anon_sym_as] = ACTIONS(528), - [anon_sym_break] = ACTIONS(528), - [anon_sym_configurable] = ACTIONS(528), - [anon_sym_const] = ACTIONS(528), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_default] = ACTIONS(528), - [anon_sym_dep] = ACTIONS(528), - [anon_sym_enum] = ACTIONS(528), - [anon_sym_fn] = ACTIONS(528), - [anon_sym_for] = ACTIONS(528), - [anon_sym_if] = ACTIONS(528), - [anon_sym_impl] = ACTIONS(528), - [anon_sym_let] = ACTIONS(528), - [anon_sym_match] = ACTIONS(528), - [anon_sym_pub] = ACTIONS(528), - [anon_sym_return] = ACTIONS(528), - [anon_sym_storage] = ACTIONS(528), - [anon_sym_struct] = ACTIONS(528), - [anon_sym_trait] = ACTIONS(528), - [anon_sym_use] = ACTIONS(528), - [anon_sym_while] = ACTIONS(528), - [anon_sym_POUND] = ACTIONS(526), - [anon_sym_BANG] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(528), - [anon_sym_asm] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(528), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_LT] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(528), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(526), - [anon_sym_DOT_DOT] = ACTIONS(528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(526), - [anon_sym_PIPE_PIPE] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(528), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(526), - [anon_sym_BANG_EQ] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_yield] = ACTIONS(528), - [anon_sym_move] = ACTIONS(528), - [anon_sym_DOT] = ACTIONS(528), - [sym_integer_literal] = ACTIONS(526), - [aux_sym_string_literal_token1] = ACTIONS(526), - [sym_char_literal] = ACTIONS(526), - [anon_sym_true] = ACTIONS(528), - [anon_sym_false] = ACTIONS(528), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(528), - [sym_metavariable] = ACTIONS(526), - [sym_raw_string_literal] = ACTIONS(526), - [sym_float_literal] = ACTIONS(526), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(530), - [sym_identifier] = ACTIONS(532), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_u8] = ACTIONS(532), - [anon_sym_i8] = ACTIONS(532), - [anon_sym_u16] = ACTIONS(532), - [anon_sym_i16] = ACTIONS(532), - [anon_sym_u32] = ACTIONS(532), - [anon_sym_i32] = ACTIONS(532), - [anon_sym_u64] = ACTIONS(532), - [anon_sym_i64] = ACTIONS(532), - [anon_sym_u128] = ACTIONS(532), - [anon_sym_i128] = ACTIONS(532), - [anon_sym_isize] = ACTIONS(532), - [anon_sym_usize] = ACTIONS(532), - [anon_sym_f32] = ACTIONS(532), - [anon_sym_f64] = ACTIONS(532), - [anon_sym_bool] = ACTIONS(532), - [anon_sym_char] = ACTIONS(532), - [anon_sym_str] = ACTIONS(532), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_contract] = ACTIONS(532), - [anon_sym_script] = ACTIONS(532), - [anon_sym_predicate] = ACTIONS(532), - [anon_sym_library] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(530), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_SQUOTE] = ACTIONS(532), - [anon_sym_abi] = ACTIONS(532), - [anon_sym_as] = ACTIONS(532), - [anon_sym_break] = ACTIONS(532), - [anon_sym_configurable] = ACTIONS(532), - [anon_sym_const] = ACTIONS(532), - [anon_sym_continue] = ACTIONS(532), - [anon_sym_default] = ACTIONS(532), - [anon_sym_dep] = ACTIONS(532), - [anon_sym_enum] = ACTIONS(532), - [anon_sym_fn] = ACTIONS(532), - [anon_sym_for] = ACTIONS(532), - [anon_sym_if] = ACTIONS(532), - [anon_sym_impl] = ACTIONS(532), - [anon_sym_let] = ACTIONS(532), - [anon_sym_match] = ACTIONS(532), - [anon_sym_pub] = ACTIONS(532), - [anon_sym_return] = ACTIONS(532), - [anon_sym_storage] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(532), - [anon_sym_trait] = ACTIONS(532), - [anon_sym_use] = ACTIONS(532), - [anon_sym_while] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_SLASH] = ACTIONS(532), - [anon_sym_asm] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(532), - [anon_sym_COLON_COLON] = ACTIONS(530), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(530), - [anon_sym_DOT_DOT] = ACTIONS(532), - [anon_sym_DOT_DOT_EQ] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_CARET] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(532), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_PLUS_EQ] = ACTIONS(530), - [anon_sym_DASH_EQ] = ACTIONS(530), - [anon_sym_STAR_EQ] = ACTIONS(530), - [anon_sym_SLASH_EQ] = ACTIONS(530), - [anon_sym_PERCENT_EQ] = ACTIONS(530), - [anon_sym_AMP_EQ] = ACTIONS(530), - [anon_sym_PIPE_EQ] = ACTIONS(530), - [anon_sym_CARET_EQ] = ACTIONS(530), - [anon_sym_LT_LT_EQ] = ACTIONS(530), - [anon_sym_GT_GT_EQ] = ACTIONS(530), - [anon_sym_yield] = ACTIONS(532), - [anon_sym_move] = ACTIONS(532), - [anon_sym_DOT] = ACTIONS(532), - [sym_integer_literal] = ACTIONS(530), - [aux_sym_string_literal_token1] = ACTIONS(530), - [sym_char_literal] = ACTIONS(530), - [anon_sym_true] = ACTIONS(532), - [anon_sym_false] = ACTIONS(532), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(532), - [sym_metavariable] = ACTIONS(530), - [sym_raw_string_literal] = ACTIONS(530), - [sym_float_literal] = ACTIONS(530), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [ts_builtin_sym_end] = ACTIONS(534), - [sym_identifier] = ACTIONS(536), - [anon_sym_SEMI] = ACTIONS(534), - [anon_sym_u8] = ACTIONS(536), - [anon_sym_i8] = ACTIONS(536), - [anon_sym_u16] = ACTIONS(536), - [anon_sym_i16] = ACTIONS(536), - [anon_sym_u32] = ACTIONS(536), - [anon_sym_i32] = ACTIONS(536), - [anon_sym_u64] = ACTIONS(536), - [anon_sym_i64] = ACTIONS(536), - [anon_sym_u128] = ACTIONS(536), - [anon_sym_i128] = ACTIONS(536), - [anon_sym_isize] = ACTIONS(536), - [anon_sym_usize] = ACTIONS(536), - [anon_sym_f32] = ACTIONS(536), - [anon_sym_f64] = ACTIONS(536), - [anon_sym_bool] = ACTIONS(536), - [anon_sym_char] = ACTIONS(536), - [anon_sym_str] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(534), - [anon_sym_contract] = ACTIONS(536), - [anon_sym_script] = ACTIONS(536), - [anon_sym_predicate] = ACTIONS(536), - [anon_sym_library] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACE] = ACTIONS(534), - [anon_sym_RBRACE] = ACTIONS(534), - [anon_sym_SQUOTE] = ACTIONS(536), - [anon_sym_abi] = ACTIONS(536), - [anon_sym_as] = ACTIONS(536), - [anon_sym_break] = ACTIONS(536), - [anon_sym_configurable] = ACTIONS(536), - [anon_sym_const] = ACTIONS(536), - [anon_sym_continue] = ACTIONS(536), - [anon_sym_default] = ACTIONS(536), - [anon_sym_dep] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(536), - [anon_sym_fn] = ACTIONS(536), - [anon_sym_for] = ACTIONS(536), - [anon_sym_if] = ACTIONS(536), - [anon_sym_impl] = ACTIONS(536), - [anon_sym_let] = ACTIONS(536), - [anon_sym_match] = ACTIONS(536), - [anon_sym_pub] = ACTIONS(536), - [anon_sym_return] = ACTIONS(536), - [anon_sym_storage] = ACTIONS(536), - [anon_sym_struct] = ACTIONS(536), - [anon_sym_trait] = ACTIONS(536), - [anon_sym_use] = ACTIONS(536), - [anon_sym_while] = ACTIONS(536), - [anon_sym_POUND] = ACTIONS(534), - [anon_sym_BANG] = ACTIONS(536), - [anon_sym_EQ] = ACTIONS(536), - [anon_sym_SLASH] = ACTIONS(536), - [anon_sym_asm] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(536), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_LT] = ACTIONS(536), - [anon_sym_GT] = ACTIONS(536), - [anon_sym_COLON_COLON] = ACTIONS(534), - [anon_sym_STAR] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT] = ACTIONS(536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(536), - [anon_sym_AMP_AMP] = ACTIONS(534), - [anon_sym_PIPE_PIPE] = ACTIONS(534), - [anon_sym_PIPE] = ACTIONS(536), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(534), - [anon_sym_BANG_EQ] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(534), - [anon_sym_GT_EQ] = ACTIONS(534), - [anon_sym_LT_LT] = ACTIONS(536), - [anon_sym_GT_GT] = ACTIONS(536), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(534), - [anon_sym_DASH_EQ] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(534), - [anon_sym_SLASH_EQ] = ACTIONS(534), - [anon_sym_PERCENT_EQ] = ACTIONS(534), - [anon_sym_AMP_EQ] = ACTIONS(534), - [anon_sym_PIPE_EQ] = ACTIONS(534), - [anon_sym_CARET_EQ] = ACTIONS(534), - [anon_sym_LT_LT_EQ] = ACTIONS(534), - [anon_sym_GT_GT_EQ] = ACTIONS(534), - [anon_sym_yield] = ACTIONS(536), - [anon_sym_move] = ACTIONS(536), - [anon_sym_DOT] = ACTIONS(536), - [sym_integer_literal] = ACTIONS(534), - [aux_sym_string_literal_token1] = ACTIONS(534), - [sym_char_literal] = ACTIONS(534), - [anon_sym_true] = ACTIONS(536), - [anon_sym_false] = ACTIONS(536), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(536), - [sym_metavariable] = ACTIONS(534), - [sym_raw_string_literal] = ACTIONS(534), - [sym_float_literal] = ACTIONS(534), - [sym_block_comment] = ACTIONS(3), - }, - [83] = { - [sym_primitive_type] = STATE(698), - [sym_attribute_item] = STATE(480), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(854), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_enum_variant_list_repeat1] = STATE(480), + [84] = { + [sym_primitive_type] = STATE(729), + [sym_attribute_item] = STATE(476), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(831), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(476), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -23792,6 +24346,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -23801,90 +24358,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(765), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1596), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [85] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(892), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1644), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -23895,6 +24452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -23904,89 +24464,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(458), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(828), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_tuple_expression_repeat1] = STATE(87), + [86] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(884), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_tuple_expression_repeat1] = STATE(92), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -23998,6 +24558,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -24007,90 +24570,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(894), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1596), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [87] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(929), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1644), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -24101,6 +24664,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -24110,191 +24676,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [87] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(899), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_tuple_expression_repeat1] = STATE(87), - [sym_identifier] = ACTIONS(540), - [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_isize] = ACTIONS(543), - [anon_sym_usize] = ACTIONS(543), - [anon_sym_f32] = ACTIONS(543), - [anon_sym_f64] = ACTIONS(543), - [anon_sym_bool] = ACTIONS(543), - [anon_sym_char] = ACTIONS(543), - [anon_sym_str] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_abi] = ACTIONS(563), - [anon_sym_break] = ACTIONS(566), - [anon_sym_const] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_default] = ACTIONS(575), - [anon_sym_for] = ACTIONS(578), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(584), - [anon_sym_return] = ACTIONS(587), - [anon_sym_storage] = ACTIONS(590), - [anon_sym_while] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_asm] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_move] = ACTIONS(620), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(626), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(629), - [anon_sym_false] = ACTIONS(629), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(467), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(632), - [sym_metavariable] = ACTIONS(635), - [sym_raw_string_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(623), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [88] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(829), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(889), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [aux_sym_tuple_expression_repeat1] = STATE(89), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), @@ -24307,6 +24770,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -24316,89 +24782,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [89] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(891), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_tuple_expression_repeat1] = STATE(87), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(884), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_tuple_expression_repeat1] = STATE(93), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -24410,6 +24876,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -24419,89 +24888,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [90] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(891), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [aux_sym_tuple_expression_repeat1] = STATE(85), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(936), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1644), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -24513,6 +24982,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -24522,89 +24994,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [91] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(904), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1596), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(757), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_let_condition] = STATE(1644), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -24616,6 +25088,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -24625,193 +25100,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(458), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [92] = { - [sym_identifier] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_u8] = ACTIONS(474), - [anon_sym_i8] = ACTIONS(474), - [anon_sym_u16] = ACTIONS(474), - [anon_sym_i16] = ACTIONS(474), - [anon_sym_u32] = ACTIONS(474), - [anon_sym_i32] = ACTIONS(474), - [anon_sym_u64] = ACTIONS(474), - [anon_sym_i64] = ACTIONS(474), - [anon_sym_u128] = ACTIONS(474), - [anon_sym_i128] = ACTIONS(474), - [anon_sym_isize] = ACTIONS(474), - [anon_sym_usize] = ACTIONS(474), - [anon_sym_f32] = ACTIONS(474), - [anon_sym_f64] = ACTIONS(474), - [anon_sym_bool] = ACTIONS(474), - [anon_sym_char] = ACTIONS(474), - [anon_sym_str] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_contract] = ACTIONS(474), - [anon_sym_script] = ACTIONS(474), - [anon_sym_predicate] = ACTIONS(474), - [anon_sym_library] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_SQUOTE] = ACTIONS(474), - [anon_sym_abi] = ACTIONS(474), - [anon_sym_as] = ACTIONS(479), - [anon_sym_break] = ACTIONS(474), - [anon_sym_configurable] = ACTIONS(474), - [anon_sym_const] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_dep] = ACTIONS(474), - [anon_sym_enum] = ACTIONS(474), - [anon_sym_fn] = ACTIONS(474), - [anon_sym_for] = ACTIONS(474), - [anon_sym_if] = ACTIONS(474), - [anon_sym_impl] = ACTIONS(474), - [anon_sym_let] = ACTIONS(474), - [anon_sym_match] = ACTIONS(474), - [anon_sym_pub] = ACTIONS(474), - [anon_sym_return] = ACTIONS(474), - [anon_sym_storage] = ACTIONS(474), - [anon_sym_struct] = ACTIONS(474), - [anon_sym_trait] = ACTIONS(474), - [anon_sym_use] = ACTIONS(474), - [anon_sym_while] = ACTIONS(474), - [anon_sym_POUND] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(479), - [anon_sym_asm] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_COLON_COLON] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_LT_LT] = ACTIONS(479), - [anon_sym_GT_GT] = ACTIONS(479), - [anon_sym_PERCENT] = ACTIONS(479), - [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_AMP_EQ] = ACTIONS(481), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_CARET_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(474), - [anon_sym_move] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(479), - [sym_integer_literal] = ACTIONS(472), - [aux_sym_string_literal_token1] = ACTIONS(472), - [sym_char_literal] = ACTIONS(472), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(474), - [sym_metavariable] = ACTIONS(472), - [sym_raw_string_literal] = ACTIONS(472), - [sym_float_literal] = ACTIONS(472), - [sym_block_comment] = ACTIONS(3), - }, - [93] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(877), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_let_condition] = STATE(1596), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(856), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_tuple_expression_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -24822,6 +25194,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -24831,89 +25206,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_let] = ACTIONS(434), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(914), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [aux_sym_tuple_expression_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(551), + [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_u256] = ACTIONS(554), + [anon_sym_i256] = ACTIONS(554), + [anon_sym_b256] = ACTIONS(554), + [anon_sym_isize] = ACTIONS(554), + [anon_sym_usize] = ACTIONS(554), + [anon_sym_f32] = ACTIONS(554), + [anon_sym_f64] = ACTIONS(554), + [anon_sym_bool] = ACTIONS(554), + [anon_sym_char] = ACTIONS(554), + [anon_sym_str] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_RPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(571), + [anon_sym_abi] = ACTIONS(574), + [anon_sym_break] = ACTIONS(577), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(583), + [anon_sym_default] = ACTIONS(586), + [anon_sym_for] = ACTIONS(589), + [anon_sym_if] = ACTIONS(592), + [anon_sym_match] = ACTIONS(595), + [anon_sym_return] = ACTIONS(598), + [anon_sym_storage] = ACTIONS(601), + [anon_sym_while] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_asm] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_yield] = ACTIONS(628), + [anon_sym_move] = ACTIONS(631), + [sym_integer_literal] = ACTIONS(634), + [aux_sym_string_literal_token1] = ACTIONS(637), + [sym_char_literal] = ACTIONS(634), + [anon_sym_true] = ACTIONS(640), + [anon_sym_false] = ACTIONS(640), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(643), + [sym_metavariable] = ACTIONS(646), + [sym_raw_string_literal] = ACTIONS(634), + [sym_float_literal] = ACTIONS(634), [sym_block_comment] = ACTIONS(3), }, [94] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(862), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(770), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -24924,6 +25405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -24933,89 +25417,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [sym_mutable_specifier] = ACTIONS(649), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [95] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(768), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(867), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -25026,6 +25510,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25035,88 +25522,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(646), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [sym_mutable_specifier] = ACTIONS(648), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [96] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(751), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(772), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25128,6 +25615,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25137,88 +25627,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(653), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(280), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [sym_mutable_specifier] = ACTIONS(655), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [97] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(762), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(895), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25230,6 +25720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25238,89 +25731,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [sym_mutable_specifier] = ACTIONS(652), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [98] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(853), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(775), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25332,6 +25825,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25340,90 +25836,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(654), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [99] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(853), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(842), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -25434,6 +25930,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25442,89 +25941,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(656), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [sym_mutable_specifier] = ACTIONS(661), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [100] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(853), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(895), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25536,6 +26035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25544,89 +26046,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [101] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(750), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(762), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25638,6 +26140,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25647,89 +26152,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(280), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [102] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(855), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(895), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -25740,6 +26245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25748,90 +26256,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(665), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [103] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(870), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(853), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -25842,6 +26350,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25851,89 +26362,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [sym_mutable_specifier] = ACTIONS(660), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [104] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(900), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(902), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -25944,6 +26455,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -25953,88 +26467,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [105] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(847), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(893), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -26045,6 +26559,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26054,88 +26571,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [106] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(871), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(912), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -26146,6 +26663,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26155,87 +26675,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [107] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(896), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(769), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26247,6 +26767,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26256,87 +26779,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [108] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(883), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(763), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26348,6 +26871,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26357,87 +26883,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [109] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(902), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(897), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(224), + [sym_match_expression] = STATE(224), + [sym_while_expression] = STATE(224), + [sym_for_expression] = STATE(224), + [sym_const_block] = STATE(224), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2196), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(224), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26449,6 +26975,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26458,88 +26987,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(667), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(669), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(671), + [anon_sym_if] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [110] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(839), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(773), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -26550,6 +27079,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26559,88 +27091,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [111] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(838), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(928), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -26651,6 +27183,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26660,87 +27195,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [112] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(888), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(754), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26752,6 +27287,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26761,87 +27299,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [113] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(753), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(768), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26853,6 +27391,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26862,87 +27403,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [114] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(910), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(859), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26954,6 +27495,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -26963,87 +27507,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [115] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(911), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(757), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -27055,6 +27599,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27064,88 +27611,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [116] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(917), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(215), - [sym_match_expression] = STATE(215), - [sym_while_expression] = STATE(215), - [sym_for_expression] = STATE(215), - [sym_const_block] = STATE(215), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2183), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(215), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(747), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -27156,6 +27703,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27165,88 +27715,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(664), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(666), - [anon_sym_if] = ACTIONS(668), - [anon_sym_match] = ACTIONS(670), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [117] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(754), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(908), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -27257,6 +27807,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27266,88 +27819,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [118] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(859), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(855), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -27358,6 +27911,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27367,88 +27923,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [119] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(874), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(747), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -27459,6 +28015,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27468,87 +28027,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [120] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(916), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(222), - [sym_match_expression] = STATE(222), - [sym_while_expression] = STATE(222), - [sym_for_expression] = STATE(222), - [sym_const_block] = STATE(222), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2183), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(222), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(934), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -27560,6 +28119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27569,88 +28131,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(664), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(666), - [anon_sym_if] = ACTIONS(668), - [anon_sym_match] = ACTIONS(670), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [121] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(866), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(861), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -27661,6 +28223,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27670,88 +28235,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [122] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(840), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(857), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -27762,6 +28327,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27771,87 +28339,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [123] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(755), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(756), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -27863,6 +28431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27872,88 +28443,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [124] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(867), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(925), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -27964,6 +28535,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -27973,87 +28547,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [125] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(758), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(755), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28065,6 +28639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28074,87 +28651,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [126] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(759), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(765), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28166,6 +28743,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28175,88 +28755,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [127] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(865), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(852), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -28267,6 +28847,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28276,88 +28859,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [128] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(872), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(865), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -28368,6 +28951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28377,87 +28963,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [129] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(765), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(760), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28469,6 +29055,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28478,88 +29067,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [130] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(875), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(761), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -28570,6 +29159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28579,87 +29171,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [131] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(856), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(875), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28671,6 +29263,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28680,87 +29275,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [132] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(709), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(870), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28772,6 +29367,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28781,87 +29379,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [133] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(767), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(848), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28873,6 +29471,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28882,87 +29483,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [134] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(766), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(918), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28974,6 +29575,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -28983,88 +29587,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [135] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(876), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(887), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -29075,6 +29679,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29084,88 +29691,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [136] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(861), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(886), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -29176,6 +29783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29185,88 +29795,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [137] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(709), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(862), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -29277,6 +29887,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29286,88 +29899,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [138] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(844), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(873), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -29378,6 +29991,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29387,88 +30003,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [139] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(864), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(847), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -29479,6 +30095,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29488,88 +30107,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [140] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(877), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(747), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -29580,6 +30199,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29589,88 +30211,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [141] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(878), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(845), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(220), + [sym_match_expression] = STATE(220), + [sym_while_expression] = STATE(220), + [sym_for_expression] = STATE(220), + [sym_const_block] = STATE(220), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2196), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(220), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -29681,6 +30303,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29690,87 +30315,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(667), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(669), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(671), + [anon_sym_if] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [142] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(764), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(881), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -29782,6 +30407,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29791,87 +30419,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [143] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(763), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(882), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -29883,6 +30511,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29892,87 +30523,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [144] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(748), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(921), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -29984,6 +30615,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -29993,88 +30627,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [145] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(901), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(880), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30085,6 +30719,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -30094,88 +30731,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [146] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(881), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(911), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30186,6 +30823,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -30195,88 +30835,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [147] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(882), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(883), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30287,6 +30927,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -30296,88 +30939,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [148] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(886), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(932), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30388,6 +31031,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -30397,88 +31043,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [149] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(887), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(868), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30489,6 +31135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -30498,88 +31147,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [150] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(768), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(835), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30590,6 +31239,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -30599,87 +31251,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [151] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(907), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(863), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -30691,6 +31343,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -30700,88 +31355,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [152] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(832), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(222), - [sym_match_expression] = STATE(222), - [sym_while_expression] = STATE(222), - [sym_for_expression] = STATE(222), - [sym_const_block] = STATE(222), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2183), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(222), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(896), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30792,6 +31447,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -30801,87 +31459,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(664), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(666), - [anon_sym_if] = ACTIONS(668), - [anon_sym_match] = ACTIONS(670), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [153] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(912), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(915), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -30893,6 +31551,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -30902,87 +31563,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [154] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(914), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(844), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -30994,6 +31655,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -31003,87 +31667,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [155] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(903), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(930), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31095,6 +31759,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -31104,87 +31771,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [156] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(850), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(858), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [157] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(907), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [158] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(747), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [159] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(877), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31196,6 +32175,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -31205,88 +32187,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(898), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [160] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(843), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -31297,6 +32279,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -31306,87 +32291,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(915), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [161] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(901), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(916), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(224), + [sym_match_expression] = STATE(224), + [sym_while_expression] = STATE(224), + [sym_for_expression] = STATE(224), + [sym_const_block] = STATE(224), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2196), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(224), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31398,6 +32487,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -31407,88 +32499,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(667), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(669), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(671), + [anon_sym_if] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(709), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [163] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(926), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(220), + [sym_match_expression] = STATE(220), + [sym_while_expression] = STATE(220), + [sym_for_expression] = STATE(220), + [sym_const_block] = STATE(220), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2196), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(220), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -31499,6 +32591,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -31508,87 +32603,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(667), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(669), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(671), + [anon_sym_if] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(909), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [164] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(895), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31600,6 +32695,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -31609,87 +32707,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), + [165] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(898), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [166] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(904), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [167] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), [sym__expression] = STATE(905), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(265), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(55), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [168] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(772), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31701,6 +33111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -31710,593 +33123,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(835), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [163] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(860), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(843), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(908), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [166] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(849), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [167] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(885), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [169] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(900), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -32307,6 +33215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -32316,87 +33227,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(853), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [170] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(920), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -32408,6 +33319,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -32417,188 +33331,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [169] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(709), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(830), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [171] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(919), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -32610,6 +33423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -32619,87 +33435,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(851), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(215), - [sym_match_expression] = STATE(215), - [sym_while_expression] = STATE(215), - [sym_for_expression] = STATE(215), - [sym_const_block] = STATE(215), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2183), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(215), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [172] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -32711,6 +33527,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -32720,87 +33539,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(664), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(666), - [anon_sym_if] = ACTIONS(668), - [anon_sym_match] = ACTIONS(670), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(836), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [173] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(923), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -32812,6 +33631,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -32821,88 +33643,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(884), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(7), + [174] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(892), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -32913,6 +33735,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -32922,88 +33747,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_primitive_type] = STATE(822), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1669), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(846), - [sym_scoped_identifier] = STATE(820), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(102), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(803), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), - [sym_identifier] = ACTIONS(314), + [175] = { + [sym_primitive_type] = STATE(821), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1642), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(890), + [sym_scoped_identifier] = STATE(826), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(816), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -33014,6 +33839,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -33023,87 +33851,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), - [anon_sym_break] = ACTIONS(316), - [anon_sym_const] = ACTIONS(266), + [anon_sym_abi] = ACTIONS(267), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(318), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), - [anon_sym_return] = ACTIONS(320), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_move] = ACTIONS(328), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(330), - [sym_metavariable] = ACTIONS(332), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(761), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [176] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(771), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33115,6 +33943,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -33124,87 +33955,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [sym_primitive_type] = STATE(698), - [sym_asm_item] = STATE(726), - [sym_bracketed_type] = STATE(2110), - [sym_generic_function] = STATE(656), - [sym_generic_type_with_turbofish] = STATE(1652), - [sym__expression_except_range] = STATE(656), - [sym__expression] = STATE(848), - [sym_scoped_identifier] = STATE(699), - [sym_scoped_type_identifier_in_expression_position] = STATE(1920), - [sym_range_expression] = STATE(703), - [sym_unary_expression] = STATE(656), - [sym_try_expression] = STATE(656), - [sym_reference_expression] = STATE(656), - [sym_binary_expression] = STATE(656), - [sym_assignment_expression] = STATE(656), - [sym_compound_assignment_expr] = STATE(656), - [sym_type_cast_expression] = STATE(656), - [sym_return_expression] = STATE(656), - [sym_yield_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_abi_call_expression] = STATE(656), - [sym_abi_instance_expression] = STATE(656), - [sym_array_expression] = STATE(656), - [sym_parenthesized_expression] = STATE(656), - [sym_tuple_expression] = STATE(656), - [sym_unit_expression] = STATE(656), - [sym_struct_expression] = STATE(656), - [sym_if_expression] = STATE(656), - [sym_match_expression] = STATE(656), - [sym_while_expression] = STATE(656), - [sym_for_expression] = STATE(656), - [sym_const_block] = STATE(656), - [sym_closure_expression] = STATE(656), - [sym_closure_parameters] = STATE(96), - [sym_loop_label] = STATE(2179), - [sym_break_expression] = STATE(656), - [sym_continue_expression] = STATE(656), - [sym_index_expression] = STATE(656), - [sym_field_expression] = STATE(624), - [sym_block] = STATE(656), - [sym__literal] = STATE(656), - [sym_string_literal] = STATE(741), - [sym_boolean_literal] = STATE(741), - [sym_storage] = STATE(656), + [177] = { + [sym_primitive_type] = STATE(729), + [sym_asm_item] = STATE(675), + [sym_bracketed_type] = STATE(2123), + [sym_generic_function] = STATE(649), + [sym_generic_type_with_turbofish] = STATE(1740), + [sym__expression_except_range] = STATE(649), + [sym__expression] = STATE(834), + [sym_scoped_identifier] = STATE(740), + [sym_scoped_type_identifier_in_expression_position] = STATE(1872), + [sym_range_expression] = STATE(741), + [sym_unary_expression] = STATE(649), + [sym_try_expression] = STATE(649), + [sym_reference_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_compound_assignment_expr] = STATE(649), + [sym_type_cast_expression] = STATE(649), + [sym_return_expression] = STATE(649), + [sym_yield_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_abi_call_expression] = STATE(649), + [sym_abi_instance_expression] = STATE(649), + [sym_array_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_tuple_expression] = STATE(649), + [sym_unit_expression] = STATE(649), + [sym_struct_expression] = STATE(649), + [sym_if_expression] = STATE(649), + [sym_match_expression] = STATE(649), + [sym_while_expression] = STATE(649), + [sym_for_expression] = STATE(649), + [sym_const_block] = STATE(649), + [sym_closure_expression] = STATE(649), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2191), + [sym_break_expression] = STATE(649), + [sym_continue_expression] = STATE(649), + [sym_index_expression] = STATE(649), + [sym_field_expression] = STATE(630), + [sym_block] = STATE(649), + [sym__literal] = STATE(649), + [sym_string_literal] = STATE(685), + [sym_boolean_literal] = STATE(685), + [sym_storage] = STATE(649), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33216,6 +34047,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i64] = ACTIONS(11), [anon_sym_u128] = ACTIONS(11), [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), [anon_sym_isize] = ACTIONS(11), [anon_sym_usize] = ACTIONS(11), [anon_sym_f32] = ACTIONS(11), @@ -33225,22832 +34059,24536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(265), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(262), + [anon_sym_abi] = ACTIONS(267), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(266), + [anon_sym_const] = ACTIONS(271), [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(268), - [anon_sym_for] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(274), + [anon_sym_default] = ACTIONS(273), + [anon_sym_for] = ACTIONS(275), + [anon_sym_if] = ACTIONS(277), + [anon_sym_match] = ACTIONS(279), [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(276), - [anon_sym_while] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_asm] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PIPE] = ACTIONS(81), - [anon_sym_yield] = ACTIONS(83), - [anon_sym_move] = ACTIONS(85), - [sym_integer_literal] = ACTIONS(87), - [aux_sym_string_literal_token1] = ACTIONS(89), - [sym_char_literal] = ACTIONS(87), - [anon_sym_true] = ACTIONS(91), - [anon_sym_false] = ACTIONS(91), + [anon_sym_storage] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(93), - [sym_metavariable] = ACTIONS(95), - [sym_raw_string_literal] = ACTIONS(87), - [sym_float_literal] = ACTIONS(87), - [sym_block_comment] = ACTIONS(3), - }, - [177] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RPAREN] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_abi] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_storage] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_asm] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_else] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT] = ACTIONS(674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(674), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_move] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(676), - [aux_sym_string_literal_token1] = ACTIONS(676), - [sym_char_literal] = ACTIONS(676), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(674), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [178] = { - [sym_primitive_type] = STATE(1299), - [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1574), - [sym_variadic_parameter] = STATE(1574), - [sym_parameter] = STATE(1574), - [sym__type] = STATE(1484), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_u256] = ACTIONS(679), + [anon_sym_i256] = ACTIONS(679), + [anon_sym_b256] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_LBRACK] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_abi] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_storage] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(679), + [anon_sym_asm] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_else] = ACTIONS(679), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT] = ACTIONS(679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(679), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_yield] = ACTIONS(679), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_move] = ACTIONS(679), + [anon_sym_DOT] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(681), + [aux_sym_string_literal_token1] = ACTIONS(681), + [sym_char_literal] = ACTIONS(681), + [anon_sym_true] = ACTIONS(679), + [anon_sym_false] = ACTIONS(679), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(679), + [sym_metavariable] = ACTIONS(681), + [sym_raw_string_literal] = ACTIONS(681), + [sym_float_literal] = ACTIONS(681), [sym_block_comment] = ACTIONS(3), }, [179] = { - [sym_primitive_type] = STATE(1316), - [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1574), - [sym_variadic_parameter] = STATE(1574), - [sym_parameter] = STATE(1574), - [sym__type] = STATE(1484), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1437), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1312), + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1577), + [sym_variadic_parameter] = STATE(1577), + [sym_parameter] = STATE(1577), + [sym__type] = STATE(1548), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1473), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(693), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(701), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [180] = { - [sym_primitive_type] = STATE(1299), - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1793), - [sym_variadic_parameter] = STATE(1793), - [sym_parameter] = STATE(1793), - [sym__type] = STATE(1510), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1312), + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1577), + [sym_variadic_parameter] = STATE(1577), + [sym_parameter] = STATE(1577), + [sym__type] = STATE(1548), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1473), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(737), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [181] = { - [sym_primitive_type] = STATE(1316), - [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1574), - [sym_variadic_parameter] = STATE(1574), - [sym_parameter] = STATE(1574), - [sym__type] = STATE(1484), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1437), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1312), + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1577), + [sym_variadic_parameter] = STATE(1577), + [sym_parameter] = STATE(1577), + [sym__type] = STATE(1548), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1473), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [182] = { - [sym_primitive_type] = STATE(1316), - [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1574), - [sym_variadic_parameter] = STATE(1574), - [sym_parameter] = STATE(1574), - [sym__type] = STATE(1484), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1437), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1577), + [sym_variadic_parameter] = STATE(1577), + [sym_parameter] = STATE(1577), + [sym__type] = STATE(1548), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym_primitive_type] = STATE(1299), - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1979), - [sym_variadic_parameter] = STATE(1979), - [sym_parameter] = STATE(1979), - [sym__type] = STATE(1588), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_attribute_item] = STATE(191), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1791), + [sym_variadic_parameter] = STATE(1791), + [sym_parameter] = STATE(1791), + [sym__type] = STATE(1479), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [184] = { - [sym_primitive_type] = STATE(1299), + [sym_primitive_type] = STATE(1304), [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1979), - [sym_variadic_parameter] = STATE(1979), - [sym_parameter] = STATE(1979), - [sym__type] = STATE(1588), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1903), + [sym_variadic_parameter] = STATE(1903), + [sym_parameter] = STATE(1903), + [sym__type] = STATE(1692), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [185] = { - [sym_primitive_type] = STATE(1299), + [sym_primitive_type] = STATE(1304), [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1979), - [sym_variadic_parameter] = STATE(1979), - [sym_parameter] = STATE(1979), - [sym__type] = STATE(1588), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1903), + [sym_variadic_parameter] = STATE(1903), + [sym_parameter] = STATE(1903), + [sym__type] = STATE(1692), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [186] = { - [sym_primitive_type] = STATE(1299), + [sym_primitive_type] = STATE(1304), [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1979), - [sym_variadic_parameter] = STATE(1979), - [sym_parameter] = STATE(1979), - [sym__type] = STATE(1588), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1903), + [sym_variadic_parameter] = STATE(1903), + [sym_parameter] = STATE(1903), + [sym__type] = STATE(1692), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym_primitive_type] = STATE(1299), + [sym_primitive_type] = STATE(1304), [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1979), - [sym_variadic_parameter] = STATE(1979), - [sym_parameter] = STATE(1979), - [sym__type] = STATE(1588), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1903), + [sym_variadic_parameter] = STATE(1903), + [sym_parameter] = STATE(1903), + [sym__type] = STATE(1692), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_primitive_type] = STATE(1299), + [sym_primitive_type] = STATE(1304), [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1979), - [sym_variadic_parameter] = STATE(1979), - [sym_parameter] = STATE(1979), - [sym__type] = STATE(1588), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1903), + [sym_variadic_parameter] = STATE(1903), + [sym_parameter] = STATE(1903), + [sym__type] = STATE(1692), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_primitive_type] = STATE(1299), + [sym_primitive_type] = STATE(1304), [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1979), - [sym_variadic_parameter] = STATE(1979), - [sym_parameter] = STATE(1979), - [sym__type] = STATE(1588), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1903), + [sym_variadic_parameter] = STATE(1903), + [sym_parameter] = STATE(1903), + [sym__type] = STATE(1692), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym_primitive_type] = STATE(1299), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1753), - [sym_variadic_parameter] = STATE(1753), - [sym_parameter] = STATE(1753), - [sym__type] = STATE(1507), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1903), + [sym_variadic_parameter] = STATE(1903), + [sym_parameter] = STATE(1903), + [sym__type] = STATE(1692), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_primitive_type] = STATE(1299), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1681), - [sym_variadic_parameter] = STATE(1681), - [sym_parameter] = STATE(1681), - [sym__type] = STATE(1530), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1714), + [sym_variadic_parameter] = STATE(1714), + [sym_parameter] = STATE(1714), + [sym__type] = STATE(1510), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_primitive_type] = STATE(1299), - [sym_function_modifiers] = STATE(2052), - [sym_self_parameter] = STATE(1978), - [sym_variadic_parameter] = STATE(1978), - [sym_parameter] = STATE(1978), - [sym__type] = STATE(1593), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1918), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_ref] = ACTIONS(708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(710), - [sym_mutable_specifier] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1846), + [sym_variadic_parameter] = STATE(1846), + [sym_parameter] = STATE(1846), + [sym__type] = STATE(1766), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(726), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_primitive_type] = STATE(1316), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1512), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1553), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_function_modifiers] = STATE(2000), + [sym_self_parameter] = STATE(1574), + [sym_variadic_parameter] = STATE(1574), + [sym_parameter] = STATE(1574), + [sym__type] = STATE(1551), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1932), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(715), + [sym_mutable_specifier] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(798), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(759), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1229), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(800), - [anon_sym_u8] = ACTIONS(800), - [anon_sym_i8] = ACTIONS(800), - [anon_sym_u16] = ACTIONS(800), - [anon_sym_i16] = ACTIONS(800), - [anon_sym_u32] = ACTIONS(800), - [anon_sym_i32] = ACTIONS(800), - [anon_sym_u64] = ACTIONS(800), - [anon_sym_i64] = ACTIONS(800), - [anon_sym_u128] = ACTIONS(800), - [anon_sym_i128] = ACTIONS(800), - [anon_sym_isize] = ACTIONS(800), - [anon_sym_usize] = ACTIONS(800), - [anon_sym_f32] = ACTIONS(800), - [anon_sym_f64] = ACTIONS(800), - [anon_sym_bool] = ACTIONS(800), - [anon_sym_char] = ACTIONS(800), - [anon_sym_str] = ACTIONS(800), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_abi] = ACTIONS(800), - [anon_sym_break] = ACTIONS(800), - [anon_sym_const] = ACTIONS(800), - [anon_sym_continue] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_for] = ACTIONS(800), - [anon_sym_if] = ACTIONS(800), - [anon_sym_match] = ACTIONS(800), - [anon_sym_return] = ACTIONS(800), - [anon_sym_storage] = ACTIONS(800), - [anon_sym_while] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(802), - [anon_sym_asm] = ACTIONS(800), - [anon_sym_DASH_GT] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(802), - [anon_sym_COLON_COLON] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(802), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(802), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_yield] = ACTIONS(800), - [anon_sym_move] = ACTIONS(800), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(802), - [aux_sym_string_literal_token1] = ACTIONS(802), - [sym_char_literal] = ACTIONS(802), - [anon_sym_true] = ACTIONS(800), - [anon_sym_false] = ACTIONS(800), + [sym_primitive_type] = STATE(1321), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1489), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1481), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(789), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(795), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(799), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(803), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(800), - [sym_metavariable] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(802), - [sym_float_literal] = ACTIONS(802), + [sym_self] = ACTIONS(811), + [sym_metavariable] = ACTIONS(813), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_primitive_type] = STATE(1316), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1512), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1553), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1312), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1511), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1484), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(798), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(821), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_primitive_type] = STATE(1308), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1781), - [sym_bracketed_type] = STATE(2154), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1567), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1568), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(806), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(812), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1312), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1511), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1484), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(823), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(820), - [sym_metavariable] = ACTIONS(822), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(821), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_primitive_type] = STATE(1316), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1512), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1553), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1312), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1511), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1484), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(798), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(821), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_primitive_type] = STATE(1316), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1099), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1237), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1216), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(827), + [anon_sym_u8] = ACTIONS(827), + [anon_sym_i8] = ACTIONS(827), + [anon_sym_u16] = ACTIONS(827), + [anon_sym_i16] = ACTIONS(827), + [anon_sym_u32] = ACTIONS(827), + [anon_sym_i32] = ACTIONS(827), + [anon_sym_u64] = ACTIONS(827), + [anon_sym_i64] = ACTIONS(827), + [anon_sym_u128] = ACTIONS(827), + [anon_sym_i128] = ACTIONS(827), + [anon_sym_u256] = ACTIONS(827), + [anon_sym_i256] = ACTIONS(827), + [anon_sym_b256] = ACTIONS(827), + [anon_sym_isize] = ACTIONS(827), + [anon_sym_usize] = ACTIONS(827), + [anon_sym_f32] = ACTIONS(827), + [anon_sym_f64] = ACTIONS(827), + [anon_sym_bool] = ACTIONS(827), + [anon_sym_char] = ACTIONS(827), + [anon_sym_str] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_SQUOTE] = ACTIONS(827), + [anon_sym_abi] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_default] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_storage] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(829), + [anon_sym_asm] = ACTIONS(827), + [anon_sym_DASH_GT] = ACTIONS(829), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_COLON_COLON] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(829), + [anon_sym_yield] = ACTIONS(827), + [anon_sym_move] = ACTIONS(827), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(829), + [aux_sym_string_literal_token1] = ACTIONS(829), + [sym_char_literal] = ACTIONS(829), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(798), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(827), + [sym_metavariable] = ACTIONS(829), + [sym_raw_string_literal] = ACTIONS(829), + [sym_float_literal] = ACTIONS(829), [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_primitive_type] = STATE(1299), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1099), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1237), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(826), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1321), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1188), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1489), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1244), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(789), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(795), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(799), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(803), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(831), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(828), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(811), + [sym_metavariable] = ACTIONS(813), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_primitive_type] = STATE(1299), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1051), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1241), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(826), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1187), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1230), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(832), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(835), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_primitive_type] = STATE(1299), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1099), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1237), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(826), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1321), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1187), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1489), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1230), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(789), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(795), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(799), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(803), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(834), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(811), + [sym_metavariable] = ACTIONS(813), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_primitive_type] = STATE(1316), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1051), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1241), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1187), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1230), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(838), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(837), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_primitive_type] = STATE(1316), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1099), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1237), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1312), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1188), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1244), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(839), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(841), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_primitive_type] = STATE(1308), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1099), - [sym_bracketed_type] = STATE(2154), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1567), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1237), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(806), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(812), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1188), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1244), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(843), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(820), - [sym_metavariable] = ACTIONS(822), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(845), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_primitive_type] = STATE(1299), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1051), - [sym_bracketed_type] = STATE(2151), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1518), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1390), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1241), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(678), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(692), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(826), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1312), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1187), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1230), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(834), - [sym_metavariable] = ACTIONS(728), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(847), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_primitive_type] = STATE(1316), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1051), - [sym_bracketed_type] = STATE(2155), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1491), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1317), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1241), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(730), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(844), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1304), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1188), + [sym_bracketed_type] = STATE(2157), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1475), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1244), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(849), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(798), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(835), + [sym_metavariable] = ACTIONS(761), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_primitive_type] = STATE(1308), - [sym_function_modifiers] = STATE(2052), - [sym__type] = STATE(1051), - [sym_bracketed_type] = STATE(2154), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1567), - [sym_bounded_type] = STATE(1058), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(1270), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1241), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(806), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(812), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1312), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1188), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1244), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(851), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(820), - [sym_metavariable] = ACTIONS(822), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(821), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym_else_clause] = STATE(224), - [sym_identifier] = ACTIONS(422), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_isize] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_f32] = ACTIONS(422), - [anon_sym_f64] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_char] = ACTIONS(422), - [anon_sym_str] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(420), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_as] = ACTIONS(422), - [anon_sym_const] = ACTIONS(422), - [anon_sym_default] = ACTIONS(422), - [anon_sym_POUND] = ACTIONS(420), - [anon_sym_COMMA] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_else] = ACTIONS(848), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym__] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [sym_mutable_specifier] = ACTIONS(422), - [anon_sym_DOT_DOT] = ACTIONS(422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(420), - [anon_sym_DASH_EQ] = ACTIONS(420), - [anon_sym_STAR_EQ] = ACTIONS(420), - [anon_sym_SLASH_EQ] = ACTIONS(420), - [anon_sym_PERCENT_EQ] = ACTIONS(420), - [anon_sym_AMP_EQ] = ACTIONS(420), - [anon_sym_PIPE_EQ] = ACTIONS(420), - [anon_sym_CARET_EQ] = ACTIONS(420), - [anon_sym_LT_LT_EQ] = ACTIONS(420), - [anon_sym_GT_GT_EQ] = ACTIONS(420), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_deref] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(420), - [aux_sym_string_literal_token1] = ACTIONS(420), - [sym_char_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), + [sym_primitive_type] = STATE(1312), + [sym_function_modifiers] = STATE(2000), + [sym__type] = STATE(1187), + [sym_bracketed_type] = STATE(2161), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1483), + [sym_bounded_type] = STATE(1176), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(1297), + [sym_scoped_type_identifier] = STATE(1267), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1230), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(683), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_const] = ACTIONS(695), + [anon_sym_default] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(422), - [sym_metavariable] = ACTIONS(420), - [sym_raw_string_literal] = ACTIONS(420), - [sym_float_literal] = ACTIONS(420), + [sym_self] = ACTIONS(821), + [sym_metavariable] = ACTIONS(733), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [209] = { - [sym_identifier] = ACTIONS(456), - [anon_sym_u8] = ACTIONS(456), - [anon_sym_i8] = ACTIONS(456), - [anon_sym_u16] = ACTIONS(456), - [anon_sym_i16] = ACTIONS(456), - [anon_sym_u32] = ACTIONS(456), - [anon_sym_i32] = ACTIONS(456), - [anon_sym_u64] = ACTIONS(456), - [anon_sym_i64] = ACTIONS(456), - [anon_sym_u128] = ACTIONS(456), - [anon_sym_i128] = ACTIONS(456), - [anon_sym_isize] = ACTIONS(456), - [anon_sym_usize] = ACTIONS(456), - [anon_sym_f32] = ACTIONS(456), - [anon_sym_f64] = ACTIONS(456), - [anon_sym_bool] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_str] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_as] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_POUND] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_COLON_COLON] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym__] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_ref] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(454), - [sym_mutable_specifier] = ACTIONS(456), - [anon_sym_DOT_DOT] = ACTIONS(456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(456), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_DOT] = ACTIONS(456), - [anon_sym_deref] = ACTIONS(456), - [sym_integer_literal] = ACTIONS(454), - [aux_sym_string_literal_token1] = ACTIONS(454), - [sym_char_literal] = ACTIONS(454), - [anon_sym_true] = ACTIONS(456), - [anon_sym_false] = ACTIONS(456), + [sym_else_clause] = STATE(215), + [sym_identifier] = ACTIONS(421), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_u256] = ACTIONS(421), + [anon_sym_i256] = ACTIONS(421), + [anon_sym_b256] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_as] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_else] = ACTIONS(853), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym__] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_ref] = ACTIONS(421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(419), + [sym_mutable_specifier] = ACTIONS(421), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(421), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PERCENT] = ACTIONS(421), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_STAR_EQ] = ACTIONS(419), + [anon_sym_SLASH_EQ] = ACTIONS(419), + [anon_sym_PERCENT_EQ] = ACTIONS(419), + [anon_sym_AMP_EQ] = ACTIONS(419), + [anon_sym_PIPE_EQ] = ACTIONS(419), + [anon_sym_CARET_EQ] = ACTIONS(419), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_GT_GT_EQ] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(421), + [anon_sym_deref] = ACTIONS(421), + [sym_integer_literal] = ACTIONS(419), + [aux_sym_string_literal_token1] = ACTIONS(419), + [sym_char_literal] = ACTIONS(419), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(456), - [sym_metavariable] = ACTIONS(454), - [sym_raw_string_literal] = ACTIONS(454), - [sym_float_literal] = ACTIONS(454), + [sym_self] = ACTIONS(421), + [sym_metavariable] = ACTIONS(419), + [sym_raw_string_literal] = ACTIONS(419), + [sym_float_literal] = ACTIONS(419), [sym_block_comment] = ACTIONS(3), }, [210] = { - [sym_identifier] = ACTIONS(432), - [anon_sym_u8] = ACTIONS(432), - [anon_sym_i8] = ACTIONS(432), - [anon_sym_u16] = ACTIONS(432), - [anon_sym_i16] = ACTIONS(432), - [anon_sym_u32] = ACTIONS(432), - [anon_sym_i32] = ACTIONS(432), - [anon_sym_u64] = ACTIONS(432), - [anon_sym_i64] = ACTIONS(432), - [anon_sym_u128] = ACTIONS(432), - [anon_sym_i128] = ACTIONS(432), - [anon_sym_isize] = ACTIONS(432), - [anon_sym_usize] = ACTIONS(432), - [anon_sym_f32] = ACTIONS(432), - [anon_sym_f64] = ACTIONS(432), - [anon_sym_bool] = ACTIONS(432), - [anon_sym_char] = ACTIONS(432), - [anon_sym_str] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_as] = ACTIONS(432), - [anon_sym_const] = ACTIONS(432), - [anon_sym_default] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_COMMA] = ACTIONS(430), - [anon_sym_EQ] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_QMARK] = ACTIONS(430), - [anon_sym_LT] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(432), - [anon_sym_else] = ACTIONS(432), - [anon_sym_COLON_COLON] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym__] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_ref] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(430), - [sym_mutable_specifier] = ACTIONS(432), - [anon_sym_DOT_DOT] = ACTIONS(432), - [anon_sym_DOT_DOT_EQ] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(430), - [anon_sym_BANG_EQ] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(430), - [anon_sym_GT_EQ] = ACTIONS(430), - [anon_sym_LT_LT] = ACTIONS(432), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_PLUS_EQ] = ACTIONS(430), - [anon_sym_DASH_EQ] = ACTIONS(430), - [anon_sym_STAR_EQ] = ACTIONS(430), - [anon_sym_SLASH_EQ] = ACTIONS(430), - [anon_sym_PERCENT_EQ] = ACTIONS(430), - [anon_sym_AMP_EQ] = ACTIONS(430), - [anon_sym_PIPE_EQ] = ACTIONS(430), - [anon_sym_CARET_EQ] = ACTIONS(430), - [anon_sym_LT_LT_EQ] = ACTIONS(430), - [anon_sym_GT_GT_EQ] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_deref] = ACTIONS(432), - [sym_integer_literal] = ACTIONS(430), - [aux_sym_string_literal_token1] = ACTIONS(430), - [sym_char_literal] = ACTIONS(430), - [anon_sym_true] = ACTIONS(432), - [anon_sym_false] = ACTIONS(432), + [sym_identifier] = ACTIONS(427), + [anon_sym_u8] = ACTIONS(427), + [anon_sym_i8] = ACTIONS(427), + [anon_sym_u16] = ACTIONS(427), + [anon_sym_i16] = ACTIONS(427), + [anon_sym_u32] = ACTIONS(427), + [anon_sym_i32] = ACTIONS(427), + [anon_sym_u64] = ACTIONS(427), + [anon_sym_i64] = ACTIONS(427), + [anon_sym_u128] = ACTIONS(427), + [anon_sym_i128] = ACTIONS(427), + [anon_sym_u256] = ACTIONS(427), + [anon_sym_i256] = ACTIONS(427), + [anon_sym_b256] = ACTIONS(427), + [anon_sym_isize] = ACTIONS(427), + [anon_sym_usize] = ACTIONS(427), + [anon_sym_f32] = ACTIONS(427), + [anon_sym_f64] = ACTIONS(427), + [anon_sym_bool] = ACTIONS(427), + [anon_sym_char] = ACTIONS(427), + [anon_sym_str] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_as] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [anon_sym_default] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(425), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_else] = ACTIONS(427), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym__] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(427), + [anon_sym_ref] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(425), + [sym_mutable_specifier] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_deref] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(425), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_char_literal] = ACTIONS(425), + [anon_sym_true] = ACTIONS(427), + [anon_sym_false] = ACTIONS(427), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(432), - [sym_metavariable] = ACTIONS(430), - [sym_raw_string_literal] = ACTIONS(430), - [sym_float_literal] = ACTIONS(430), + [sym_self] = ACTIONS(427), + [sym_metavariable] = ACTIONS(425), + [sym_raw_string_literal] = ACTIONS(425), + [sym_float_literal] = ACTIONS(425), [sym_block_comment] = ACTIONS(3), }, [211] = { - [sym_identifier] = ACTIONS(448), - [anon_sym_u8] = ACTIONS(448), - [anon_sym_i8] = ACTIONS(448), - [anon_sym_u16] = ACTIONS(448), - [anon_sym_i16] = ACTIONS(448), - [anon_sym_u32] = ACTIONS(448), - [anon_sym_i32] = ACTIONS(448), - [anon_sym_u64] = ACTIONS(448), - [anon_sym_i64] = ACTIONS(448), - [anon_sym_u128] = ACTIONS(448), - [anon_sym_i128] = ACTIONS(448), - [anon_sym_isize] = ACTIONS(448), - [anon_sym_usize] = ACTIONS(448), - [anon_sym_f32] = ACTIONS(448), - [anon_sym_f64] = ACTIONS(448), - [anon_sym_bool] = ACTIONS(448), - [anon_sym_char] = ACTIONS(448), - [anon_sym_str] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_as] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_default] = ACTIONS(448), - [anon_sym_POUND] = ACTIONS(446), - [anon_sym_COMMA] = ACTIONS(446), - [anon_sym_EQ] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(446), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(448), - [anon_sym_else] = ACTIONS(448), - [anon_sym_COLON_COLON] = ACTIONS(446), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym__] = ACTIONS(448), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_ref] = ACTIONS(448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(446), - [sym_mutable_specifier] = ACTIONS(448), - [anon_sym_DOT_DOT] = ACTIONS(448), - [anon_sym_DOT_DOT_EQ] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_AMP_AMP] = ACTIONS(446), - [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(448), - [anon_sym_EQ_EQ] = ACTIONS(446), - [anon_sym_BANG_EQ] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(446), - [anon_sym_GT_EQ] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(448), - [anon_sym_GT_GT] = ACTIONS(448), - [anon_sym_PERCENT] = ACTIONS(448), - [anon_sym_PLUS_EQ] = ACTIONS(446), - [anon_sym_DASH_EQ] = ACTIONS(446), - [anon_sym_STAR_EQ] = ACTIONS(446), - [anon_sym_SLASH_EQ] = ACTIONS(446), - [anon_sym_PERCENT_EQ] = ACTIONS(446), - [anon_sym_AMP_EQ] = ACTIONS(446), - [anon_sym_PIPE_EQ] = ACTIONS(446), - [anon_sym_CARET_EQ] = ACTIONS(446), - [anon_sym_LT_LT_EQ] = ACTIONS(446), - [anon_sym_GT_GT_EQ] = ACTIONS(446), - [anon_sym_DOT] = ACTIONS(448), - [anon_sym_deref] = ACTIONS(448), - [sym_integer_literal] = ACTIONS(446), - [aux_sym_string_literal_token1] = ACTIONS(446), - [sym_char_literal] = ACTIONS(446), - [anon_sym_true] = ACTIONS(448), - [anon_sym_false] = ACTIONS(448), + [sym_identifier] = ACTIONS(441), + [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_u256] = ACTIONS(441), + [anon_sym_i256] = ACTIONS(441), + [anon_sym_b256] = ACTIONS(441), + [anon_sym_isize] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_f32] = ACTIONS(441), + [anon_sym_f64] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_char] = ACTIONS(441), + [anon_sym_str] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_as] = ACTIONS(441), + [anon_sym_const] = ACTIONS(441), + [anon_sym_default] = ACTIONS(441), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_COMMA] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_QMARK] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_GT] = ACTIONS(441), + [anon_sym_else] = ACTIONS(441), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(441), + [anon_sym__] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(441), + [anon_sym_ref] = ACTIONS(441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(439), + [sym_mutable_specifier] = ACTIONS(441), + [anon_sym_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), + [anon_sym_STAR_EQ] = ACTIONS(439), + [anon_sym_SLASH_EQ] = ACTIONS(439), + [anon_sym_PERCENT_EQ] = ACTIONS(439), + [anon_sym_AMP_EQ] = ACTIONS(439), + [anon_sym_PIPE_EQ] = ACTIONS(439), + [anon_sym_CARET_EQ] = ACTIONS(439), + [anon_sym_LT_LT_EQ] = ACTIONS(439), + [anon_sym_GT_GT_EQ] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_deref] = ACTIONS(441), + [sym_integer_literal] = ACTIONS(439), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(439), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(448), - [sym_metavariable] = ACTIONS(446), - [sym_raw_string_literal] = ACTIONS(446), - [sym_float_literal] = ACTIONS(446), + [sym_self] = ACTIONS(441), + [sym_metavariable] = ACTIONS(439), + [sym_raw_string_literal] = ACTIONS(439), + [sym_float_literal] = ACTIONS(439), [sym_block_comment] = ACTIONS(3), }, [212] = { - [sym_identifier] = ACTIONS(496), - [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_isize] = ACTIONS(496), - [anon_sym_usize] = ACTIONS(496), - [anon_sym_f32] = ACTIONS(496), - [anon_sym_f64] = ACTIONS(496), - [anon_sym_bool] = ACTIONS(496), - [anon_sym_char] = ACTIONS(496), - [anon_sym_str] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_as] = ACTIONS(496), - [anon_sym_const] = ACTIONS(496), - [anon_sym_default] = ACTIONS(496), - [anon_sym_POUND] = ACTIONS(494), - [anon_sym_COMMA] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_QMARK] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_GT] = ACTIONS(496), - [anon_sym_COLON_COLON] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym__] = ACTIONS(496), - [anon_sym_AMP] = ACTIONS(496), - [anon_sym_ref] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(494), - [sym_mutable_specifier] = ACTIONS(496), - [anon_sym_DOT_DOT] = ACTIONS(496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_AMP_AMP] = ACTIONS(494), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(496), - [anon_sym_CARET] = ACTIONS(496), - [anon_sym_EQ_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_LT_LT] = ACTIONS(496), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [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_AMP_EQ] = ACTIONS(494), - [anon_sym_PIPE_EQ] = ACTIONS(494), - [anon_sym_CARET_EQ] = ACTIONS(494), - [anon_sym_LT_LT_EQ] = ACTIONS(494), - [anon_sym_GT_GT_EQ] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(496), - [anon_sym_deref] = ACTIONS(496), - [sym_integer_literal] = ACTIONS(494), - [aux_sym_string_literal_token1] = ACTIONS(494), - [sym_char_literal] = ACTIONS(494), - [anon_sym_true] = ACTIONS(496), - [anon_sym_false] = ACTIONS(496), + [sym_identifier] = ACTIONS(437), + [anon_sym_u8] = ACTIONS(437), + [anon_sym_i8] = ACTIONS(437), + [anon_sym_u16] = ACTIONS(437), + [anon_sym_i16] = ACTIONS(437), + [anon_sym_u32] = ACTIONS(437), + [anon_sym_i32] = ACTIONS(437), + [anon_sym_u64] = ACTIONS(437), + [anon_sym_i64] = ACTIONS(437), + [anon_sym_u128] = ACTIONS(437), + [anon_sym_i128] = ACTIONS(437), + [anon_sym_u256] = ACTIONS(437), + [anon_sym_i256] = ACTIONS(437), + [anon_sym_b256] = ACTIONS(437), + [anon_sym_isize] = ACTIONS(437), + [anon_sym_usize] = ACTIONS(437), + [anon_sym_f32] = ACTIONS(437), + [anon_sym_f64] = ACTIONS(437), + [anon_sym_bool] = ACTIONS(437), + [anon_sym_char] = ACTIONS(437), + [anon_sym_str] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_as] = ACTIONS(437), + [anon_sym_const] = ACTIONS(437), + [anon_sym_default] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(437), + [anon_sym_else] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(437), + [anon_sym__] = ACTIONS(437), + [anon_sym_AMP] = ACTIONS(437), + [anon_sym_ref] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(435), + [sym_mutable_specifier] = ACTIONS(437), + [anon_sym_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(437), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(435), + [anon_sym_LT_EQ] = ACTIONS(435), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_GT_GT] = ACTIONS(437), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(437), + [anon_sym_PLUS_EQ] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(435), + [anon_sym_STAR_EQ] = ACTIONS(435), + [anon_sym_SLASH_EQ] = ACTIONS(435), + [anon_sym_PERCENT_EQ] = ACTIONS(435), + [anon_sym_AMP_EQ] = ACTIONS(435), + [anon_sym_PIPE_EQ] = ACTIONS(435), + [anon_sym_CARET_EQ] = ACTIONS(435), + [anon_sym_LT_LT_EQ] = ACTIONS(435), + [anon_sym_GT_GT_EQ] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_deref] = ACTIONS(437), + [sym_integer_literal] = ACTIONS(435), + [aux_sym_string_literal_token1] = ACTIONS(435), + [sym_char_literal] = ACTIONS(435), + [anon_sym_true] = ACTIONS(437), + [anon_sym_false] = ACTIONS(437), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(496), - [sym_metavariable] = ACTIONS(494), - [sym_raw_string_literal] = ACTIONS(494), - [sym_float_literal] = ACTIONS(494), + [sym_self] = ACTIONS(437), + [sym_metavariable] = ACTIONS(435), + [sym_raw_string_literal] = ACTIONS(435), + [sym_float_literal] = ACTIONS(435), [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym_identifier] = ACTIONS(488), - [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_isize] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_f32] = ACTIONS(488), - [anon_sym_f64] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_char] = ACTIONS(488), - [anon_sym_str] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_as] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym__] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_ref] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(486), - [sym_mutable_specifier] = ACTIONS(488), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [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_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_CARET_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(488), - [anon_sym_deref] = ACTIONS(488), - [sym_integer_literal] = ACTIONS(486), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_char_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), + [sym_identifier] = ACTIONS(535), + [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_u256] = ACTIONS(535), + [anon_sym_i256] = ACTIONS(535), + [anon_sym_b256] = ACTIONS(535), + [anon_sym_isize] = ACTIONS(535), + [anon_sym_usize] = ACTIONS(535), + [anon_sym_f32] = ACTIONS(535), + [anon_sym_f64] = ACTIONS(535), + [anon_sym_bool] = ACTIONS(535), + [anon_sym_char] = ACTIONS(535), + [anon_sym_str] = ACTIONS(535), + [anon_sym_LBRACK] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_as] = ACTIONS(535), + [anon_sym_const] = ACTIONS(535), + [anon_sym_default] = ACTIONS(535), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_COMMA] = ACTIONS(533), + [anon_sym_EQ] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_LT] = ACTIONS(535), + [anon_sym_GT] = ACTIONS(535), + [anon_sym_COLON_COLON] = ACTIONS(533), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym__] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_ref] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym_mutable_specifier] = ACTIONS(535), + [anon_sym_DOT_DOT] = ACTIONS(535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(533), + [anon_sym_PIPE_PIPE] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), + [anon_sym_LT_EQ] = ACTIONS(533), + [anon_sym_GT_EQ] = ACTIONS(533), + [anon_sym_LT_LT] = ACTIONS(535), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_SLASH] = ACTIONS(535), + [anon_sym_PERCENT] = ACTIONS(535), + [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_AMP_EQ] = ACTIONS(533), + [anon_sym_PIPE_EQ] = ACTIONS(533), + [anon_sym_CARET_EQ] = ACTIONS(533), + [anon_sym_LT_LT_EQ] = ACTIONS(533), + [anon_sym_GT_GT_EQ] = ACTIONS(533), + [anon_sym_DOT] = ACTIONS(535), + [anon_sym_deref] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(533), + [aux_sym_string_literal_token1] = ACTIONS(533), + [sym_char_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(488), - [sym_metavariable] = ACTIONS(486), - [sym_raw_string_literal] = ACTIONS(486), - [sym_float_literal] = ACTIONS(486), + [sym_self] = ACTIONS(535), + [sym_metavariable] = ACTIONS(533), + [sym_raw_string_literal] = ACTIONS(533), + [sym_float_literal] = ACTIONS(533), [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym_identifier] = ACTIONS(520), - [anon_sym_u8] = ACTIONS(520), - [anon_sym_i8] = ACTIONS(520), - [anon_sym_u16] = ACTIONS(520), - [anon_sym_i16] = ACTIONS(520), - [anon_sym_u32] = ACTIONS(520), - [anon_sym_i32] = ACTIONS(520), - [anon_sym_u64] = ACTIONS(520), - [anon_sym_i64] = ACTIONS(520), - [anon_sym_u128] = ACTIONS(520), - [anon_sym_i128] = ACTIONS(520), - [anon_sym_isize] = ACTIONS(520), - [anon_sym_usize] = ACTIONS(520), - [anon_sym_f32] = ACTIONS(520), - [anon_sym_f64] = ACTIONS(520), - [anon_sym_bool] = ACTIONS(520), - [anon_sym_char] = ACTIONS(520), - [anon_sym_str] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_as] = ACTIONS(520), - [anon_sym_const] = ACTIONS(520), - [anon_sym_default] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(518), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_COLON_COLON] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym__] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_ref] = ACTIONS(520), - [anon_sym_DOT_DOT_DOT] = ACTIONS(518), - [sym_mutable_specifier] = ACTIONS(520), - [anon_sym_DOT_DOT] = ACTIONS(520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym_EQ_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_LT_LT] = ACTIONS(520), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_PLUS_EQ] = ACTIONS(518), - [anon_sym_DASH_EQ] = ACTIONS(518), - [anon_sym_STAR_EQ] = ACTIONS(518), - [anon_sym_SLASH_EQ] = ACTIONS(518), - [anon_sym_PERCENT_EQ] = ACTIONS(518), - [anon_sym_AMP_EQ] = ACTIONS(518), - [anon_sym_PIPE_EQ] = ACTIONS(518), - [anon_sym_CARET_EQ] = ACTIONS(518), - [anon_sym_LT_LT_EQ] = ACTIONS(518), - [anon_sym_GT_GT_EQ] = ACTIONS(518), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_deref] = ACTIONS(520), - [sym_integer_literal] = ACTIONS(518), - [aux_sym_string_literal_token1] = ACTIONS(518), - [sym_char_literal] = ACTIONS(518), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), + [sym_identifier] = ACTIONS(483), + [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_u256] = ACTIONS(483), + [anon_sym_i256] = ACTIONS(483), + [anon_sym_b256] = ACTIONS(483), + [anon_sym_isize] = ACTIONS(483), + [anon_sym_usize] = ACTIONS(483), + [anon_sym_f32] = ACTIONS(483), + [anon_sym_f64] = ACTIONS(483), + [anon_sym_bool] = ACTIONS(483), + [anon_sym_char] = ACTIONS(483), + [anon_sym_str] = ACTIONS(483), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_as] = ACTIONS(483), + [anon_sym_const] = ACTIONS(483), + [anon_sym_default] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(481), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(483), + [anon_sym__] = ACTIONS(483), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_ref] = ACTIONS(483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(481), + [sym_mutable_specifier] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(481), + [anon_sym_BANG_EQ] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(483), + [anon_sym_SLASH] = ACTIONS(483), + [anon_sym_PERCENT] = ACTIONS(483), + [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_AMP_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(483), + [anon_sym_deref] = ACTIONS(483), + [sym_integer_literal] = ACTIONS(481), + [aux_sym_string_literal_token1] = ACTIONS(481), + [sym_char_literal] = ACTIONS(481), + [anon_sym_true] = ACTIONS(483), + [anon_sym_false] = ACTIONS(483), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(520), - [sym_metavariable] = ACTIONS(518), - [sym_raw_string_literal] = ACTIONS(518), - [sym_float_literal] = ACTIONS(518), + [sym_self] = ACTIONS(483), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(481), + [sym_float_literal] = ACTIONS(481), [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_identifier] = ACTIONS(850), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u128] = ACTIONS(850), - [anon_sym_i128] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_char] = ACTIONS(850), - [anon_sym_str] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_as] = ACTIONS(468), - [anon_sym_const] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_COLON_COLON] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym__] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(850), - [anon_sym_ref] = ACTIONS(850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [sym_mutable_specifier] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [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_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(468), - [anon_sym_deref] = ACTIONS(850), - [sym_integer_literal] = ACTIONS(852), - [aux_sym_string_literal_token1] = ACTIONS(852), - [sym_char_literal] = ACTIONS(852), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), + [sym_identifier] = ACTIONS(487), + [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_u256] = ACTIONS(487), + [anon_sym_i256] = ACTIONS(487), + [anon_sym_b256] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_as] = ACTIONS(487), + [anon_sym_const] = ACTIONS(487), + [anon_sym_default] = ACTIONS(487), + [anon_sym_POUND] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym__] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_ref] = ACTIONS(487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(485), + [sym_mutable_specifier] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_PERCENT] = ACTIONS(487), + [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_AMP_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_LT_LT_EQ] = ACTIONS(485), + [anon_sym_GT_GT_EQ] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_deref] = ACTIONS(487), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(485), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(850), - [sym_metavariable] = ACTIONS(852), - [sym_raw_string_literal] = ACTIONS(852), - [sym_float_literal] = ACTIONS(852), + [sym_self] = ACTIONS(487), + [sym_metavariable] = ACTIONS(485), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(516), - [anon_sym_u8] = ACTIONS(516), - [anon_sym_i8] = ACTIONS(516), - [anon_sym_u16] = ACTIONS(516), - [anon_sym_i16] = ACTIONS(516), - [anon_sym_u32] = ACTIONS(516), - [anon_sym_i32] = ACTIONS(516), - [anon_sym_u64] = ACTIONS(516), - [anon_sym_i64] = ACTIONS(516), - [anon_sym_u128] = ACTIONS(516), - [anon_sym_i128] = ACTIONS(516), - [anon_sym_isize] = ACTIONS(516), - [anon_sym_usize] = ACTIONS(516), - [anon_sym_f32] = ACTIONS(516), - [anon_sym_f64] = ACTIONS(516), - [anon_sym_bool] = ACTIONS(516), - [anon_sym_char] = ACTIONS(516), - [anon_sym_str] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(514), - [anon_sym_LPAREN] = ACTIONS(514), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_as] = ACTIONS(516), - [anon_sym_const] = ACTIONS(516), - [anon_sym_default] = ACTIONS(516), - [anon_sym_POUND] = ACTIONS(514), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(516), - [anon_sym_SLASH] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(516), - [anon_sym_QMARK] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(516), - [anon_sym_GT] = ACTIONS(516), - [anon_sym_COLON_COLON] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym__] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_ref] = ACTIONS(516), - [anon_sym_DOT_DOT_DOT] = ACTIONS(514), - [sym_mutable_specifier] = ACTIONS(516), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(516), - [anon_sym_AMP_AMP] = ACTIONS(514), - [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(516), - [anon_sym_CARET] = ACTIONS(516), - [anon_sym_EQ_EQ] = ACTIONS(514), - [anon_sym_BANG_EQ] = ACTIONS(514), - [anon_sym_LT_EQ] = ACTIONS(514), - [anon_sym_GT_EQ] = ACTIONS(514), - [anon_sym_LT_LT] = ACTIONS(516), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_PERCENT] = ACTIONS(516), - [anon_sym_PLUS_EQ] = ACTIONS(514), - [anon_sym_DASH_EQ] = ACTIONS(514), - [anon_sym_STAR_EQ] = ACTIONS(514), - [anon_sym_SLASH_EQ] = ACTIONS(514), - [anon_sym_PERCENT_EQ] = ACTIONS(514), - [anon_sym_AMP_EQ] = ACTIONS(514), - [anon_sym_PIPE_EQ] = ACTIONS(514), - [anon_sym_CARET_EQ] = ACTIONS(514), - [anon_sym_LT_LT_EQ] = ACTIONS(514), - [anon_sym_GT_GT_EQ] = ACTIONS(514), - [anon_sym_DOT] = ACTIONS(516), - [anon_sym_deref] = ACTIONS(516), - [sym_integer_literal] = ACTIONS(514), - [aux_sym_string_literal_token1] = ACTIONS(514), - [sym_char_literal] = ACTIONS(514), - [anon_sym_true] = ACTIONS(516), - [anon_sym_false] = ACTIONS(516), + [sym_identifier] = ACTIONS(517), + [anon_sym_u8] = ACTIONS(517), + [anon_sym_i8] = ACTIONS(517), + [anon_sym_u16] = ACTIONS(517), + [anon_sym_i16] = ACTIONS(517), + [anon_sym_u32] = ACTIONS(517), + [anon_sym_i32] = ACTIONS(517), + [anon_sym_u64] = ACTIONS(517), + [anon_sym_i64] = ACTIONS(517), + [anon_sym_u128] = ACTIONS(517), + [anon_sym_i128] = ACTIONS(517), + [anon_sym_u256] = ACTIONS(517), + [anon_sym_i256] = ACTIONS(517), + [anon_sym_b256] = ACTIONS(517), + [anon_sym_isize] = ACTIONS(517), + [anon_sym_usize] = ACTIONS(517), + [anon_sym_f32] = ACTIONS(517), + [anon_sym_f64] = ACTIONS(517), + [anon_sym_bool] = ACTIONS(517), + [anon_sym_char] = ACTIONS(517), + [anon_sym_str] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_as] = ACTIONS(517), + [anon_sym_const] = ACTIONS(517), + [anon_sym_default] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(515), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_GT] = ACTIONS(517), + [anon_sym_COLON_COLON] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym__] = ACTIONS(517), + [anon_sym_AMP] = ACTIONS(517), + [anon_sym_ref] = ACTIONS(517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(515), + [sym_mutable_specifier] = ACTIONS(517), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_AMP_AMP] = ACTIONS(515), + [anon_sym_PIPE_PIPE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(517), + [anon_sym_EQ_EQ] = ACTIONS(515), + [anon_sym_BANG_EQ] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(517), + [anon_sym_GT_GT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(517), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_PLUS_EQ] = ACTIONS(515), + [anon_sym_DASH_EQ] = ACTIONS(515), + [anon_sym_STAR_EQ] = ACTIONS(515), + [anon_sym_SLASH_EQ] = ACTIONS(515), + [anon_sym_PERCENT_EQ] = ACTIONS(515), + [anon_sym_AMP_EQ] = ACTIONS(515), + [anon_sym_PIPE_EQ] = ACTIONS(515), + [anon_sym_CARET_EQ] = ACTIONS(515), + [anon_sym_LT_LT_EQ] = ACTIONS(515), + [anon_sym_GT_GT_EQ] = ACTIONS(515), + [anon_sym_DOT] = ACTIONS(517), + [anon_sym_deref] = ACTIONS(517), + [sym_integer_literal] = ACTIONS(515), + [aux_sym_string_literal_token1] = ACTIONS(515), + [sym_char_literal] = ACTIONS(515), + [anon_sym_true] = ACTIONS(517), + [anon_sym_false] = ACTIONS(517), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(516), - [sym_metavariable] = ACTIONS(514), - [sym_raw_string_literal] = ACTIONS(514), - [sym_float_literal] = ACTIONS(514), + [sym_self] = ACTIONS(517), + [sym_metavariable] = ACTIONS(515), + [sym_raw_string_literal] = ACTIONS(515), + [sym_float_literal] = ACTIONS(515), [sym_block_comment] = ACTIONS(3), }, [217] = { - [sym_identifier] = ACTIONS(512), - [anon_sym_u8] = ACTIONS(512), - [anon_sym_i8] = ACTIONS(512), - [anon_sym_u16] = ACTIONS(512), - [anon_sym_i16] = ACTIONS(512), - [anon_sym_u32] = ACTIONS(512), - [anon_sym_i32] = ACTIONS(512), - [anon_sym_u64] = ACTIONS(512), - [anon_sym_i64] = ACTIONS(512), - [anon_sym_u128] = ACTIONS(512), - [anon_sym_i128] = ACTIONS(512), - [anon_sym_isize] = ACTIONS(512), - [anon_sym_usize] = ACTIONS(512), - [anon_sym_f32] = ACTIONS(512), - [anon_sym_f64] = ACTIONS(512), - [anon_sym_bool] = ACTIONS(512), - [anon_sym_char] = ACTIONS(512), - [anon_sym_str] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_RBRACE] = ACTIONS(510), - [anon_sym_as] = ACTIONS(512), - [anon_sym_const] = ACTIONS(512), - [anon_sym_default] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(510), - [anon_sym_COMMA] = ACTIONS(510), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_COLON_COLON] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_ref] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [sym_mutable_specifier] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_EQ] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(510), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym_EQ_EQ] = ACTIONS(510), - [anon_sym_BANG_EQ] = ACTIONS(510), - [anon_sym_LT_EQ] = ACTIONS(510), - [anon_sym_GT_EQ] = ACTIONS(510), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_GT_GT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_PLUS_EQ] = ACTIONS(510), - [anon_sym_DASH_EQ] = ACTIONS(510), - [anon_sym_STAR_EQ] = ACTIONS(510), - [anon_sym_SLASH_EQ] = ACTIONS(510), - [anon_sym_PERCENT_EQ] = ACTIONS(510), - [anon_sym_AMP_EQ] = ACTIONS(510), - [anon_sym_PIPE_EQ] = ACTIONS(510), - [anon_sym_CARET_EQ] = ACTIONS(510), - [anon_sym_LT_LT_EQ] = ACTIONS(510), - [anon_sym_GT_GT_EQ] = ACTIONS(510), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_deref] = ACTIONS(512), - [sym_integer_literal] = ACTIONS(510), - [aux_sym_string_literal_token1] = ACTIONS(510), - [sym_char_literal] = ACTIONS(510), - [anon_sym_true] = ACTIONS(512), - [anon_sym_false] = ACTIONS(512), + [sym_identifier] = ACTIONS(449), + [anon_sym_u8] = ACTIONS(449), + [anon_sym_i8] = ACTIONS(449), + [anon_sym_u16] = ACTIONS(449), + [anon_sym_i16] = ACTIONS(449), + [anon_sym_u32] = ACTIONS(449), + [anon_sym_i32] = ACTIONS(449), + [anon_sym_u64] = ACTIONS(449), + [anon_sym_i64] = ACTIONS(449), + [anon_sym_u128] = ACTIONS(449), + [anon_sym_i128] = ACTIONS(449), + [anon_sym_u256] = ACTIONS(449), + [anon_sym_i256] = ACTIONS(449), + [anon_sym_b256] = ACTIONS(449), + [anon_sym_isize] = ACTIONS(449), + [anon_sym_usize] = ACTIONS(449), + [anon_sym_f32] = ACTIONS(449), + [anon_sym_f64] = ACTIONS(449), + [anon_sym_bool] = ACTIONS(449), + [anon_sym_char] = ACTIONS(449), + [anon_sym_str] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(447), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_as] = ACTIONS(449), + [anon_sym_const] = ACTIONS(449), + [anon_sym_default] = ACTIONS(449), + [anon_sym_POUND] = ACTIONS(447), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym__] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_ref] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(447), + [sym_mutable_specifier] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(447), + [anon_sym_PIPE_PIPE] = ACTIONS(447), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(447), + [anon_sym_BANG_EQ] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(447), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_PERCENT] = ACTIONS(449), + [anon_sym_PLUS_EQ] = ACTIONS(447), + [anon_sym_DASH_EQ] = ACTIONS(447), + [anon_sym_STAR_EQ] = ACTIONS(447), + [anon_sym_SLASH_EQ] = ACTIONS(447), + [anon_sym_PERCENT_EQ] = ACTIONS(447), + [anon_sym_AMP_EQ] = ACTIONS(447), + [anon_sym_PIPE_EQ] = ACTIONS(447), + [anon_sym_CARET_EQ] = ACTIONS(447), + [anon_sym_LT_LT_EQ] = ACTIONS(447), + [anon_sym_GT_GT_EQ] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_deref] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(447), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(449), + [anon_sym_false] = ACTIONS(449), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(512), - [sym_metavariable] = ACTIONS(510), - [sym_raw_string_literal] = ACTIONS(510), - [sym_float_literal] = ACTIONS(510), + [sym_self] = ACTIONS(449), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(447), + [sym_float_literal] = ACTIONS(447), [sym_block_comment] = ACTIONS(3), }, [218] = { - [sym_identifier] = ACTIONS(532), - [anon_sym_u8] = ACTIONS(532), - [anon_sym_i8] = ACTIONS(532), - [anon_sym_u16] = ACTIONS(532), - [anon_sym_i16] = ACTIONS(532), - [anon_sym_u32] = ACTIONS(532), - [anon_sym_i32] = ACTIONS(532), - [anon_sym_u64] = ACTIONS(532), - [anon_sym_i64] = ACTIONS(532), - [anon_sym_u128] = ACTIONS(532), - [anon_sym_i128] = ACTIONS(532), - [anon_sym_isize] = ACTIONS(532), - [anon_sym_usize] = ACTIONS(532), - [anon_sym_f32] = ACTIONS(532), - [anon_sym_f64] = ACTIONS(532), - [anon_sym_bool] = ACTIONS(532), - [anon_sym_char] = ACTIONS(532), - [anon_sym_str] = ACTIONS(532), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(530), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_as] = ACTIONS(532), - [anon_sym_const] = ACTIONS(532), - [anon_sym_default] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(530), - [anon_sym_COMMA] = ACTIONS(530), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_SLASH] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(532), - [anon_sym_COLON_COLON] = ACTIONS(530), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym__] = ACTIONS(532), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_ref] = ACTIONS(532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(530), - [sym_mutable_specifier] = ACTIONS(532), - [anon_sym_DOT_DOT] = ACTIONS(532), - [anon_sym_DOT_DOT_EQ] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_CARET] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(532), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_PLUS_EQ] = ACTIONS(530), - [anon_sym_DASH_EQ] = ACTIONS(530), - [anon_sym_STAR_EQ] = ACTIONS(530), - [anon_sym_SLASH_EQ] = ACTIONS(530), - [anon_sym_PERCENT_EQ] = ACTIONS(530), - [anon_sym_AMP_EQ] = ACTIONS(530), - [anon_sym_PIPE_EQ] = ACTIONS(530), - [anon_sym_CARET_EQ] = ACTIONS(530), - [anon_sym_LT_LT_EQ] = ACTIONS(530), - [anon_sym_GT_GT_EQ] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(532), - [anon_sym_deref] = ACTIONS(532), - [sym_integer_literal] = ACTIONS(530), - [aux_sym_string_literal_token1] = ACTIONS(530), - [sym_char_literal] = ACTIONS(530), - [anon_sym_true] = ACTIONS(532), - [anon_sym_false] = ACTIONS(532), + [sym_identifier] = ACTIONS(539), + [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_u256] = ACTIONS(539), + [anon_sym_i256] = ACTIONS(539), + [anon_sym_b256] = ACTIONS(539), + [anon_sym_isize] = ACTIONS(539), + [anon_sym_usize] = ACTIONS(539), + [anon_sym_f32] = ACTIONS(539), + [anon_sym_f64] = ACTIONS(539), + [anon_sym_bool] = ACTIONS(539), + [anon_sym_char] = ACTIONS(539), + [anon_sym_str] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(537), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_as] = ACTIONS(539), + [anon_sym_const] = ACTIONS(539), + [anon_sym_default] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_QMARK] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_COLON_COLON] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym__] = ACTIONS(539), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_ref] = ACTIONS(539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(537), + [sym_mutable_specifier] = ACTIONS(539), + [anon_sym_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(539), + [anon_sym_CARET] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_LT_LT] = ACTIONS(539), + [anon_sym_GT_GT] = ACTIONS(539), + [anon_sym_SLASH] = ACTIONS(539), + [anon_sym_PERCENT] = ACTIONS(539), + [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_AMP_EQ] = ACTIONS(537), + [anon_sym_PIPE_EQ] = ACTIONS(537), + [anon_sym_CARET_EQ] = ACTIONS(537), + [anon_sym_LT_LT_EQ] = ACTIONS(537), + [anon_sym_GT_GT_EQ] = ACTIONS(537), + [anon_sym_DOT] = ACTIONS(539), + [anon_sym_deref] = ACTIONS(539), + [sym_integer_literal] = ACTIONS(537), + [aux_sym_string_literal_token1] = ACTIONS(537), + [sym_char_literal] = ACTIONS(537), + [anon_sym_true] = ACTIONS(539), + [anon_sym_false] = ACTIONS(539), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(532), - [sym_metavariable] = ACTIONS(530), - [sym_raw_string_literal] = ACTIONS(530), - [sym_float_literal] = ACTIONS(530), + [sym_self] = ACTIONS(539), + [sym_metavariable] = ACTIONS(537), + [sym_raw_string_literal] = ACTIONS(537), + [sym_float_literal] = ACTIONS(537), [sym_block_comment] = ACTIONS(3), }, [219] = { - [sym_identifier] = ACTIONS(508), - [anon_sym_u8] = ACTIONS(508), - [anon_sym_i8] = ACTIONS(508), - [anon_sym_u16] = ACTIONS(508), - [anon_sym_i16] = ACTIONS(508), - [anon_sym_u32] = ACTIONS(508), - [anon_sym_i32] = ACTIONS(508), - [anon_sym_u64] = ACTIONS(508), - [anon_sym_i64] = ACTIONS(508), - [anon_sym_u128] = ACTIONS(508), - [anon_sym_i128] = ACTIONS(508), - [anon_sym_isize] = ACTIONS(508), - [anon_sym_usize] = ACTIONS(508), - [anon_sym_f32] = ACTIONS(508), - [anon_sym_f64] = ACTIONS(508), - [anon_sym_bool] = ACTIONS(508), - [anon_sym_char] = ACTIONS(508), - [anon_sym_str] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_as] = ACTIONS(508), - [anon_sym_const] = ACTIONS(508), - [anon_sym_default] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_QMARK] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_COLON_COLON] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym__] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_ref] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(506), - [sym_mutable_specifier] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PERCENT] = ACTIONS(508), - [anon_sym_PLUS_EQ] = ACTIONS(506), - [anon_sym_DASH_EQ] = ACTIONS(506), - [anon_sym_STAR_EQ] = ACTIONS(506), - [anon_sym_SLASH_EQ] = ACTIONS(506), - [anon_sym_PERCENT_EQ] = ACTIONS(506), - [anon_sym_AMP_EQ] = ACTIONS(506), - [anon_sym_PIPE_EQ] = ACTIONS(506), - [anon_sym_CARET_EQ] = ACTIONS(506), - [anon_sym_LT_LT_EQ] = ACTIONS(506), - [anon_sym_GT_GT_EQ] = ACTIONS(506), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_deref] = ACTIONS(508), - [sym_integer_literal] = ACTIONS(506), - [aux_sym_string_literal_token1] = ACTIONS(506), - [sym_char_literal] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), + [sym_identifier] = ACTIONS(509), + [anon_sym_u8] = ACTIONS(509), + [anon_sym_i8] = ACTIONS(509), + [anon_sym_u16] = ACTIONS(509), + [anon_sym_i16] = ACTIONS(509), + [anon_sym_u32] = ACTIONS(509), + [anon_sym_i32] = ACTIONS(509), + [anon_sym_u64] = ACTIONS(509), + [anon_sym_i64] = ACTIONS(509), + [anon_sym_u128] = ACTIONS(509), + [anon_sym_i128] = ACTIONS(509), + [anon_sym_u256] = ACTIONS(509), + [anon_sym_i256] = ACTIONS(509), + [anon_sym_b256] = ACTIONS(509), + [anon_sym_isize] = ACTIONS(509), + [anon_sym_usize] = ACTIONS(509), + [anon_sym_f32] = ACTIONS(509), + [anon_sym_f64] = ACTIONS(509), + [anon_sym_bool] = ACTIONS(509), + [anon_sym_char] = ACTIONS(509), + [anon_sym_str] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_as] = ACTIONS(509), + [anon_sym_const] = ACTIONS(509), + [anon_sym_default] = ACTIONS(509), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(509), + [anon_sym_PLUS] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(509), + [anon_sym__] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_ref] = ACTIONS(509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(507), + [sym_mutable_specifier] = ACTIONS(509), + [anon_sym_DOT_DOT] = ACTIONS(509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(507), + [anon_sym_GT_EQ] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(509), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(507), + [anon_sym_DASH_EQ] = ACTIONS(507), + [anon_sym_STAR_EQ] = ACTIONS(507), + [anon_sym_SLASH_EQ] = ACTIONS(507), + [anon_sym_PERCENT_EQ] = ACTIONS(507), + [anon_sym_AMP_EQ] = ACTIONS(507), + [anon_sym_PIPE_EQ] = ACTIONS(507), + [anon_sym_CARET_EQ] = ACTIONS(507), + [anon_sym_LT_LT_EQ] = ACTIONS(507), + [anon_sym_GT_GT_EQ] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_deref] = ACTIONS(509), + [sym_integer_literal] = ACTIONS(507), + [aux_sym_string_literal_token1] = ACTIONS(507), + [sym_char_literal] = ACTIONS(507), + [anon_sym_true] = ACTIONS(509), + [anon_sym_false] = ACTIONS(509), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(508), - [sym_metavariable] = ACTIONS(506), - [sym_raw_string_literal] = ACTIONS(506), - [sym_float_literal] = ACTIONS(506), + [sym_self] = ACTIONS(509), + [sym_metavariable] = ACTIONS(507), + [sym_raw_string_literal] = ACTIONS(507), + [sym_float_literal] = ACTIONS(507), [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym_identifier] = ACTIONS(524), - [anon_sym_u8] = ACTIONS(524), - [anon_sym_i8] = ACTIONS(524), - [anon_sym_u16] = ACTIONS(524), - [anon_sym_i16] = ACTIONS(524), - [anon_sym_u32] = ACTIONS(524), - [anon_sym_i32] = ACTIONS(524), - [anon_sym_u64] = ACTIONS(524), - [anon_sym_i64] = ACTIONS(524), - [anon_sym_u128] = ACTIONS(524), - [anon_sym_i128] = ACTIONS(524), - [anon_sym_isize] = ACTIONS(524), - [anon_sym_usize] = ACTIONS(524), - [anon_sym_f32] = ACTIONS(524), - [anon_sym_f64] = ACTIONS(524), - [anon_sym_bool] = ACTIONS(524), - [anon_sym_char] = ACTIONS(524), - [anon_sym_str] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_as] = ACTIONS(524), - [anon_sym_const] = ACTIONS(524), - [anon_sym_default] = ACTIONS(524), - [anon_sym_POUND] = ACTIONS(522), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_QMARK] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym__] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_ref] = ACTIONS(524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(522), - [sym_mutable_specifier] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(522), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_PLUS_EQ] = ACTIONS(522), - [anon_sym_DASH_EQ] = ACTIONS(522), - [anon_sym_STAR_EQ] = ACTIONS(522), - [anon_sym_SLASH_EQ] = ACTIONS(522), - [anon_sym_PERCENT_EQ] = ACTIONS(522), - [anon_sym_AMP_EQ] = ACTIONS(522), - [anon_sym_PIPE_EQ] = ACTIONS(522), - [anon_sym_CARET_EQ] = ACTIONS(522), - [anon_sym_LT_LT_EQ] = ACTIONS(522), - [anon_sym_GT_GT_EQ] = ACTIONS(522), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_deref] = ACTIONS(524), - [sym_integer_literal] = ACTIONS(522), - [aux_sym_string_literal_token1] = ACTIONS(522), - [sym_char_literal] = ACTIONS(522), - [anon_sym_true] = ACTIONS(524), - [anon_sym_false] = ACTIONS(524), + [sym_identifier] = ACTIONS(855), + [anon_sym_u8] = ACTIONS(855), + [anon_sym_i8] = ACTIONS(855), + [anon_sym_u16] = ACTIONS(855), + [anon_sym_i16] = ACTIONS(855), + [anon_sym_u32] = ACTIONS(855), + [anon_sym_i32] = ACTIONS(855), + [anon_sym_u64] = ACTIONS(855), + [anon_sym_i64] = ACTIONS(855), + [anon_sym_u128] = ACTIONS(855), + [anon_sym_i128] = ACTIONS(855), + [anon_sym_u256] = ACTIONS(855), + [anon_sym_i256] = ACTIONS(855), + [anon_sym_b256] = ACTIONS(855), + [anon_sym_isize] = ACTIONS(855), + [anon_sym_usize] = ACTIONS(855), + [anon_sym_f32] = ACTIONS(855), + [anon_sym_f64] = ACTIONS(855), + [anon_sym_bool] = ACTIONS(855), + [anon_sym_char] = ACTIONS(855), + [anon_sym_str] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_as] = ACTIONS(493), + [anon_sym_const] = ACTIONS(855), + [anon_sym_default] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(495), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_COLON_COLON] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym__] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_ref] = ACTIONS(855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(495), + [sym_mutable_specifier] = ACTIONS(855), + [anon_sym_DOT_DOT] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_PIPE] = ACTIONS(493), + [anon_sym_CARET] = ACTIONS(493), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_BANG_EQ] = ACTIONS(495), + [anon_sym_LT_EQ] = ACTIONS(495), + [anon_sym_GT_EQ] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(495), + [anon_sym_DASH_EQ] = ACTIONS(495), + [anon_sym_STAR_EQ] = ACTIONS(495), + [anon_sym_SLASH_EQ] = ACTIONS(495), + [anon_sym_PERCENT_EQ] = ACTIONS(495), + [anon_sym_AMP_EQ] = ACTIONS(495), + [anon_sym_PIPE_EQ] = ACTIONS(495), + [anon_sym_CARET_EQ] = ACTIONS(495), + [anon_sym_LT_LT_EQ] = ACTIONS(495), + [anon_sym_GT_GT_EQ] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(493), + [anon_sym_deref] = ACTIONS(855), + [sym_integer_literal] = ACTIONS(857), + [aux_sym_string_literal_token1] = ACTIONS(857), + [sym_char_literal] = ACTIONS(857), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(524), - [sym_metavariable] = ACTIONS(522), - [sym_raw_string_literal] = ACTIONS(522), - [sym_float_literal] = ACTIONS(522), + [sym_self] = ACTIONS(855), + [sym_metavariable] = ACTIONS(857), + [sym_raw_string_literal] = ACTIONS(857), + [sym_float_literal] = ACTIONS(857), [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(462), - [anon_sym_u8] = ACTIONS(462), - [anon_sym_i8] = ACTIONS(462), - [anon_sym_u16] = ACTIONS(462), - [anon_sym_i16] = ACTIONS(462), - [anon_sym_u32] = ACTIONS(462), - [anon_sym_i32] = ACTIONS(462), - [anon_sym_u64] = ACTIONS(462), - [anon_sym_i64] = ACTIONS(462), - [anon_sym_u128] = ACTIONS(462), - [anon_sym_i128] = ACTIONS(462), - [anon_sym_isize] = ACTIONS(462), - [anon_sym_usize] = ACTIONS(462), - [anon_sym_f32] = ACTIONS(462), - [anon_sym_f64] = ACTIONS(462), - [anon_sym_bool] = ACTIONS(462), - [anon_sym_char] = ACTIONS(462), - [anon_sym_str] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_as] = ACTIONS(462), - [anon_sym_const] = ACTIONS(462), - [anon_sym_default] = ACTIONS(462), - [anon_sym_POUND] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_EQ] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(462), - [anon_sym_PLUS] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(462), - [anon_sym_GT] = ACTIONS(462), - [anon_sym_COLON_COLON] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(462), - [anon_sym__] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(462), - [anon_sym_ref] = ACTIONS(462), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [sym_mutable_specifier] = ACTIONS(462), - [anon_sym_DOT_DOT] = ACTIONS(462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(462), - [anon_sym_CARET] = ACTIONS(462), - [anon_sym_EQ_EQ] = ACTIONS(460), - [anon_sym_BANG_EQ] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(460), - [anon_sym_GT_EQ] = ACTIONS(460), - [anon_sym_LT_LT] = ACTIONS(462), - [anon_sym_GT_GT] = ACTIONS(462), - [anon_sym_PERCENT] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(460), - [anon_sym_DASH_EQ] = ACTIONS(460), - [anon_sym_STAR_EQ] = ACTIONS(460), - [anon_sym_SLASH_EQ] = ACTIONS(460), - [anon_sym_PERCENT_EQ] = ACTIONS(460), - [anon_sym_AMP_EQ] = ACTIONS(460), - [anon_sym_PIPE_EQ] = ACTIONS(460), - [anon_sym_CARET_EQ] = ACTIONS(460), - [anon_sym_LT_LT_EQ] = ACTIONS(460), - [anon_sym_GT_GT_EQ] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_deref] = ACTIONS(462), - [sym_integer_literal] = ACTIONS(460), - [aux_sym_string_literal_token1] = ACTIONS(460), - [sym_char_literal] = ACTIONS(460), - [anon_sym_true] = ACTIONS(462), - [anon_sym_false] = ACTIONS(462), + [sym_identifier] = ACTIONS(527), + [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_u256] = ACTIONS(527), + [anon_sym_i256] = ACTIONS(527), + [anon_sym_b256] = ACTIONS(527), + [anon_sym_isize] = ACTIONS(527), + [anon_sym_usize] = ACTIONS(527), + [anon_sym_f32] = ACTIONS(527), + [anon_sym_f64] = ACTIONS(527), + [anon_sym_bool] = ACTIONS(527), + [anon_sym_char] = ACTIONS(527), + [anon_sym_str] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_as] = ACTIONS(527), + [anon_sym_const] = ACTIONS(527), + [anon_sym_default] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(525), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(527), + [anon_sym__] = ACTIONS(527), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_ref] = ACTIONS(527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(525), + [sym_mutable_specifier] = ACTIONS(527), + [anon_sym_DOT_DOT] = ACTIONS(527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_PIPE] = ACTIONS(527), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), + [anon_sym_LT_EQ] = ACTIONS(525), + [anon_sym_GT_EQ] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(527), + [anon_sym_GT_GT] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(527), + [anon_sym_PERCENT] = ACTIONS(527), + [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_AMP_EQ] = ACTIONS(525), + [anon_sym_PIPE_EQ] = ACTIONS(525), + [anon_sym_CARET_EQ] = ACTIONS(525), + [anon_sym_LT_LT_EQ] = ACTIONS(525), + [anon_sym_GT_GT_EQ] = ACTIONS(525), + [anon_sym_DOT] = ACTIONS(527), + [anon_sym_deref] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(525), + [aux_sym_string_literal_token1] = ACTIONS(525), + [sym_char_literal] = ACTIONS(525), + [anon_sym_true] = ACTIONS(527), + [anon_sym_false] = ACTIONS(527), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(462), - [sym_metavariable] = ACTIONS(460), - [sym_raw_string_literal] = ACTIONS(460), - [sym_float_literal] = ACTIONS(460), + [sym_self] = ACTIONS(527), + [sym_metavariable] = ACTIONS(525), + [sym_raw_string_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(525), [sym_block_comment] = ACTIONS(3), }, [222] = { - [sym_identifier] = ACTIONS(854), - [anon_sym_u8] = ACTIONS(854), - [anon_sym_i8] = ACTIONS(854), - [anon_sym_u16] = ACTIONS(854), - [anon_sym_i16] = ACTIONS(854), - [anon_sym_u32] = ACTIONS(854), - [anon_sym_i32] = ACTIONS(854), - [anon_sym_u64] = ACTIONS(854), - [anon_sym_i64] = ACTIONS(854), - [anon_sym_u128] = ACTIONS(854), - [anon_sym_i128] = ACTIONS(854), - [anon_sym_isize] = ACTIONS(854), - [anon_sym_usize] = ACTIONS(854), - [anon_sym_f32] = ACTIONS(854), - [anon_sym_f64] = ACTIONS(854), - [anon_sym_bool] = ACTIONS(854), - [anon_sym_char] = ACTIONS(854), - [anon_sym_str] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_as] = ACTIONS(468), - [anon_sym_const] = ACTIONS(854), - [anon_sym_default] = ACTIONS(854), - [anon_sym_POUND] = ACTIONS(856), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(854), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym__] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_ref] = ACTIONS(854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [sym_mutable_specifier] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [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_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(468), - [anon_sym_deref] = ACTIONS(854), - [sym_integer_literal] = ACTIONS(856), - [aux_sym_string_literal_token1] = ACTIONS(856), - [sym_char_literal] = ACTIONS(856), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), + [sym_identifier] = ACTIONS(477), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_u256] = ACTIONS(477), + [anon_sym_i256] = ACTIONS(477), + [anon_sym_b256] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_as] = ACTIONS(477), + [anon_sym_const] = ACTIONS(477), + [anon_sym_default] = ACTIONS(477), + [anon_sym_POUND] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(477), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_STAR] = ACTIONS(477), + [anon_sym__] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(477), + [anon_sym_ref] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(475), + [sym_mutable_specifier] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(475), + [anon_sym_BANG_EQ] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(475), + [anon_sym_GT_EQ] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(475), + [anon_sym_DASH_EQ] = ACTIONS(475), + [anon_sym_STAR_EQ] = ACTIONS(475), + [anon_sym_SLASH_EQ] = ACTIONS(475), + [anon_sym_PERCENT_EQ] = ACTIONS(475), + [anon_sym_AMP_EQ] = ACTIONS(475), + [anon_sym_PIPE_EQ] = ACTIONS(475), + [anon_sym_CARET_EQ] = ACTIONS(475), + [anon_sym_LT_LT_EQ] = ACTIONS(475), + [anon_sym_GT_GT_EQ] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(477), + [anon_sym_deref] = ACTIONS(477), + [sym_integer_literal] = ACTIONS(475), + [aux_sym_string_literal_token1] = ACTIONS(475), + [sym_char_literal] = ACTIONS(475), + [anon_sym_true] = ACTIONS(477), + [anon_sym_false] = ACTIONS(477), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(854), - [sym_metavariable] = ACTIONS(856), - [sym_raw_string_literal] = ACTIONS(856), - [sym_float_literal] = ACTIONS(856), + [sym_self] = ACTIONS(477), + [sym_metavariable] = ACTIONS(475), + [sym_raw_string_literal] = ACTIONS(475), + [sym_float_literal] = ACTIONS(475), [sym_block_comment] = ACTIONS(3), }, [223] = { - [sym_identifier] = ACTIONS(528), - [anon_sym_u8] = ACTIONS(528), - [anon_sym_i8] = ACTIONS(528), - [anon_sym_u16] = ACTIONS(528), - [anon_sym_i16] = ACTIONS(528), - [anon_sym_u32] = ACTIONS(528), - [anon_sym_i32] = ACTIONS(528), - [anon_sym_u64] = ACTIONS(528), - [anon_sym_i64] = ACTIONS(528), - [anon_sym_u128] = ACTIONS(528), - [anon_sym_i128] = ACTIONS(528), - [anon_sym_isize] = ACTIONS(528), - [anon_sym_usize] = ACTIONS(528), - [anon_sym_f32] = ACTIONS(528), - [anon_sym_f64] = ACTIONS(528), - [anon_sym_bool] = ACTIONS(528), - [anon_sym_char] = ACTIONS(528), - [anon_sym_str] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_as] = ACTIONS(528), - [anon_sym_const] = ACTIONS(528), - [anon_sym_default] = ACTIONS(528), - [anon_sym_POUND] = ACTIONS(526), - [anon_sym_COMMA] = ACTIONS(526), - [anon_sym_EQ] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(528), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_LT] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(528), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym__] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_ref] = ACTIONS(528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(526), - [sym_mutable_specifier] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(526), - [anon_sym_PIPE_PIPE] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(528), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(526), - [anon_sym_BANG_EQ] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(528), - [anon_sym_deref] = ACTIONS(528), - [sym_integer_literal] = ACTIONS(526), - [aux_sym_string_literal_token1] = ACTIONS(526), - [sym_char_literal] = ACTIONS(526), - [anon_sym_true] = ACTIONS(528), - [anon_sym_false] = ACTIONS(528), + [sym_identifier] = ACTIONS(499), + [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_u256] = ACTIONS(499), + [anon_sym_i256] = ACTIONS(499), + [anon_sym_b256] = ACTIONS(499), + [anon_sym_isize] = ACTIONS(499), + [anon_sym_usize] = ACTIONS(499), + [anon_sym_f32] = ACTIONS(499), + [anon_sym_f64] = ACTIONS(499), + [anon_sym_bool] = ACTIONS(499), + [anon_sym_char] = ACTIONS(499), + [anon_sym_str] = ACTIONS(499), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_as] = ACTIONS(499), + [anon_sym_const] = ACTIONS(499), + [anon_sym_default] = ACTIONS(499), + [anon_sym_POUND] = ACTIONS(497), + [anon_sym_COMMA] = ACTIONS(497), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym__] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_ref] = ACTIONS(499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(497), + [sym_mutable_specifier] = ACTIONS(499), + [anon_sym_DOT_DOT] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(499), + [anon_sym_GT_GT] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [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_AMP_EQ] = ACTIONS(497), + [anon_sym_PIPE_EQ] = ACTIONS(497), + [anon_sym_CARET_EQ] = ACTIONS(497), + [anon_sym_LT_LT_EQ] = ACTIONS(497), + [anon_sym_GT_GT_EQ] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(499), + [anon_sym_deref] = ACTIONS(499), + [sym_integer_literal] = ACTIONS(497), + [aux_sym_string_literal_token1] = ACTIONS(497), + [sym_char_literal] = ACTIONS(497), + [anon_sym_true] = ACTIONS(499), + [anon_sym_false] = ACTIONS(499), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(528), - [sym_metavariable] = ACTIONS(526), - [sym_raw_string_literal] = ACTIONS(526), - [sym_float_literal] = ACTIONS(526), + [sym_self] = ACTIONS(499), + [sym_metavariable] = ACTIONS(497), + [sym_raw_string_literal] = ACTIONS(497), + [sym_float_literal] = ACTIONS(497), [sym_block_comment] = ACTIONS(3), }, [224] = { - [sym_identifier] = ACTIONS(492), - [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_isize] = ACTIONS(492), - [anon_sym_usize] = ACTIONS(492), - [anon_sym_f32] = ACTIONS(492), - [anon_sym_f64] = ACTIONS(492), - [anon_sym_bool] = ACTIONS(492), - [anon_sym_char] = ACTIONS(492), - [anon_sym_str] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_as] = ACTIONS(492), - [anon_sym_const] = ACTIONS(492), - [anon_sym_default] = ACTIONS(492), - [anon_sym_POUND] = ACTIONS(490), - [anon_sym_COMMA] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_COLON_COLON] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym__] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_ref] = ACTIONS(492), - [anon_sym_DOT_DOT_DOT] = ACTIONS(490), - [sym_mutable_specifier] = ACTIONS(492), - [anon_sym_DOT_DOT] = ACTIONS(492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(490), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_EQ_EQ] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_GT_GT] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [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_AMP_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(492), - [anon_sym_deref] = ACTIONS(492), - [sym_integer_literal] = ACTIONS(490), - [aux_sym_string_literal_token1] = ACTIONS(490), - [sym_char_literal] = ACTIONS(490), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), + [sym_identifier] = ACTIONS(859), + [anon_sym_u8] = ACTIONS(859), + [anon_sym_i8] = ACTIONS(859), + [anon_sym_u16] = ACTIONS(859), + [anon_sym_i16] = ACTIONS(859), + [anon_sym_u32] = ACTIONS(859), + [anon_sym_i32] = ACTIONS(859), + [anon_sym_u64] = ACTIONS(859), + [anon_sym_i64] = ACTIONS(859), + [anon_sym_u128] = ACTIONS(859), + [anon_sym_i128] = ACTIONS(859), + [anon_sym_u256] = ACTIONS(859), + [anon_sym_i256] = ACTIONS(859), + [anon_sym_b256] = ACTIONS(859), + [anon_sym_isize] = ACTIONS(859), + [anon_sym_usize] = ACTIONS(859), + [anon_sym_f32] = ACTIONS(859), + [anon_sym_f64] = ACTIONS(859), + [anon_sym_bool] = ACTIONS(859), + [anon_sym_char] = ACTIONS(859), + [anon_sym_str] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_as] = ACTIONS(493), + [anon_sym_const] = ACTIONS(859), + [anon_sym_default] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(495), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_COLON_COLON] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym__] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_ref] = ACTIONS(859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(495), + [sym_mutable_specifier] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT_EQ] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_PIPE] = ACTIONS(493), + [anon_sym_CARET] = ACTIONS(493), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_BANG_EQ] = ACTIONS(495), + [anon_sym_LT_EQ] = ACTIONS(495), + [anon_sym_GT_EQ] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(495), + [anon_sym_DASH_EQ] = ACTIONS(495), + [anon_sym_STAR_EQ] = ACTIONS(495), + [anon_sym_SLASH_EQ] = ACTIONS(495), + [anon_sym_PERCENT_EQ] = ACTIONS(495), + [anon_sym_AMP_EQ] = ACTIONS(495), + [anon_sym_PIPE_EQ] = ACTIONS(495), + [anon_sym_CARET_EQ] = ACTIONS(495), + [anon_sym_LT_LT_EQ] = ACTIONS(495), + [anon_sym_GT_GT_EQ] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(493), + [anon_sym_deref] = ACTIONS(859), + [sym_integer_literal] = ACTIONS(861), + [aux_sym_string_literal_token1] = ACTIONS(861), + [sym_char_literal] = ACTIONS(861), + [anon_sym_true] = ACTIONS(859), + [anon_sym_false] = ACTIONS(859), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(492), - [sym_metavariable] = ACTIONS(490), - [sym_raw_string_literal] = ACTIONS(490), - [sym_float_literal] = ACTIONS(490), + [sym_self] = ACTIONS(859), + [sym_metavariable] = ACTIONS(861), + [sym_raw_string_literal] = ACTIONS(861), + [sym_float_literal] = ACTIONS(861), [sym_block_comment] = ACTIONS(3), }, [225] = { - [sym_primitive_type] = STATE(1036), - [sym_attribute_item] = STATE(417), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_match_arm] = STATE(233), - [sym_last_match_arm] = STATE(2067), - [sym_match_pattern] = STATE(2074), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1764), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_enum_variant_list_repeat1] = STATE(417), - [aux_sym_match_block_repeat1] = STATE(233), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_identifier] = ACTIONS(531), + [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_u256] = ACTIONS(531), + [anon_sym_i256] = ACTIONS(531), + [anon_sym_b256] = ACTIONS(531), + [anon_sym_isize] = ACTIONS(531), + [anon_sym_usize] = ACTIONS(531), + [anon_sym_f32] = ACTIONS(531), + [anon_sym_f64] = ACTIONS(531), + [anon_sym_bool] = ACTIONS(531), + [anon_sym_char] = ACTIONS(531), + [anon_sym_str] = ACTIONS(531), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(529), + [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_as] = ACTIONS(531), + [anon_sym_const] = ACTIONS(531), + [anon_sym_default] = ACTIONS(531), + [anon_sym_POUND] = ACTIONS(529), + [anon_sym_COMMA] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_QMARK] = ACTIONS(529), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_GT] = ACTIONS(531), + [anon_sym_COLON_COLON] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym__] = ACTIONS(531), + [anon_sym_AMP] = ACTIONS(531), + [anon_sym_ref] = ACTIONS(531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(529), + [sym_mutable_specifier] = ACTIONS(531), + [anon_sym_DOT_DOT] = ACTIONS(531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_AMP_AMP] = ACTIONS(529), + [anon_sym_PIPE_PIPE] = ACTIONS(529), + [anon_sym_PIPE] = ACTIONS(531), + [anon_sym_CARET] = ACTIONS(531), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_BANG_EQ] = ACTIONS(529), + [anon_sym_LT_EQ] = ACTIONS(529), + [anon_sym_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_GT_GT] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(531), + [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_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(531), + [anon_sym_deref] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(529), + [aux_sym_string_literal_token1] = ACTIONS(529), + [sym_char_literal] = ACTIONS(529), + [anon_sym_true] = ACTIONS(531), + [anon_sym_false] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(531), + [sym_metavariable] = ACTIONS(529), + [sym_raw_string_literal] = ACTIONS(529), + [sym_float_literal] = ACTIONS(529), [sym_block_comment] = ACTIONS(3), }, [226] = { - [sym_primitive_type] = STATE(1036), - [sym_attribute_item] = STATE(417), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_match_arm] = STATE(335), - [sym_last_match_arm] = STATE(1992), - [sym_match_pattern] = STATE(2074), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1764), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_enum_variant_list_repeat1] = STATE(417), - [aux_sym_match_block_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(878), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [ts_builtin_sym_end] = ACTIONS(863), + [sym_identifier] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_u8] = ACTIONS(865), + [anon_sym_i8] = ACTIONS(865), + [anon_sym_u16] = ACTIONS(865), + [anon_sym_i16] = ACTIONS(865), + [anon_sym_u32] = ACTIONS(865), + [anon_sym_i32] = ACTIONS(865), + [anon_sym_u64] = ACTIONS(865), + [anon_sym_i64] = ACTIONS(865), + [anon_sym_u128] = ACTIONS(865), + [anon_sym_i128] = ACTIONS(865), + [anon_sym_u256] = ACTIONS(865), + [anon_sym_i256] = ACTIONS(865), + [anon_sym_b256] = ACTIONS(865), + [anon_sym_isize] = ACTIONS(865), + [anon_sym_usize] = ACTIONS(865), + [anon_sym_f32] = ACTIONS(865), + [anon_sym_f64] = ACTIONS(865), + [anon_sym_bool] = ACTIONS(865), + [anon_sym_char] = ACTIONS(865), + [anon_sym_str] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_contract] = ACTIONS(865), + [anon_sym_script] = ACTIONS(865), + [anon_sym_predicate] = ACTIONS(865), + [anon_sym_library] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_abi] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_configurable] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_default] = ACTIONS(865), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_impl] = ACTIONS(865), + [anon_sym_let] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_pub] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_storage] = ACTIONS(865), + [anon_sym_struct] = ACTIONS(865), + [anon_sym_trait] = ACTIONS(865), + [anon_sym_type] = ACTIONS(865), + [anon_sym_use] = ACTIONS(865), + [anon_sym_while] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_asm] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_COLON_COLON] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_yield] = ACTIONS(865), + [anon_sym_move] = ACTIONS(865), + [sym_integer_literal] = ACTIONS(863), + [aux_sym_string_literal_token1] = ACTIONS(863), + [sym_char_literal] = ACTIONS(863), + [anon_sym_true] = ACTIONS(865), + [anon_sym_false] = ACTIONS(865), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(865), + [sym_metavariable] = ACTIONS(863), + [sym_raw_string_literal] = ACTIONS(863), + [sym_float_literal] = ACTIONS(863), [sym_block_comment] = ACTIONS(3), }, [227] = { - [sym_primitive_type] = STATE(1036), - [sym_attribute_item] = STATE(417), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_match_arm] = STATE(333), - [sym_last_match_arm] = STATE(2078), - [sym_match_pattern] = STATE(2074), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1764), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_enum_variant_list_repeat1] = STATE(417), - [aux_sym_match_block_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [ts_builtin_sym_end] = ACTIONS(867), + [sym_identifier] = ACTIONS(869), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_u8] = ACTIONS(869), + [anon_sym_i8] = ACTIONS(869), + [anon_sym_u16] = ACTIONS(869), + [anon_sym_i16] = ACTIONS(869), + [anon_sym_u32] = ACTIONS(869), + [anon_sym_i32] = ACTIONS(869), + [anon_sym_u64] = ACTIONS(869), + [anon_sym_i64] = ACTIONS(869), + [anon_sym_u128] = ACTIONS(869), + [anon_sym_i128] = ACTIONS(869), + [anon_sym_u256] = ACTIONS(869), + [anon_sym_i256] = ACTIONS(869), + [anon_sym_b256] = ACTIONS(869), + [anon_sym_isize] = ACTIONS(869), + [anon_sym_usize] = ACTIONS(869), + [anon_sym_f32] = ACTIONS(869), + [anon_sym_f64] = ACTIONS(869), + [anon_sym_bool] = ACTIONS(869), + [anon_sym_char] = ACTIONS(869), + [anon_sym_str] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_contract] = ACTIONS(869), + [anon_sym_script] = ACTIONS(869), + [anon_sym_predicate] = ACTIONS(869), + [anon_sym_library] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_SQUOTE] = ACTIONS(869), + [anon_sym_abi] = ACTIONS(869), + [anon_sym_break] = ACTIONS(869), + [anon_sym_configurable] = ACTIONS(869), + [anon_sym_const] = ACTIONS(869), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_default] = ACTIONS(869), + [anon_sym_mod] = ACTIONS(869), + [anon_sym_enum] = ACTIONS(869), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_for] = ACTIONS(869), + [anon_sym_if] = ACTIONS(869), + [anon_sym_impl] = ACTIONS(869), + [anon_sym_let] = ACTIONS(869), + [anon_sym_match] = ACTIONS(869), + [anon_sym_pub] = ACTIONS(869), + [anon_sym_return] = ACTIONS(869), + [anon_sym_storage] = ACTIONS(869), + [anon_sym_struct] = ACTIONS(869), + [anon_sym_trait] = ACTIONS(869), + [anon_sym_type] = ACTIONS(869), + [anon_sym_use] = ACTIONS(869), + [anon_sym_while] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_asm] = ACTIONS(869), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_AMP] = ACTIONS(867), + [anon_sym_DOT_DOT] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_yield] = ACTIONS(869), + [anon_sym_move] = ACTIONS(869), + [sym_integer_literal] = ACTIONS(867), + [aux_sym_string_literal_token1] = ACTIONS(867), + [sym_char_literal] = ACTIONS(867), + [anon_sym_true] = ACTIONS(869), + [anon_sym_false] = ACTIONS(869), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(869), + [sym_metavariable] = ACTIONS(867), + [sym_raw_string_literal] = ACTIONS(867), + [sym_float_literal] = ACTIONS(867), [sym_block_comment] = ACTIONS(3), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(882), - [sym_identifier] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_u8] = ACTIONS(884), - [anon_sym_i8] = ACTIONS(884), - [anon_sym_u16] = ACTIONS(884), - [anon_sym_i16] = ACTIONS(884), - [anon_sym_u32] = ACTIONS(884), - [anon_sym_i32] = ACTIONS(884), - [anon_sym_u64] = ACTIONS(884), - [anon_sym_i64] = ACTIONS(884), - [anon_sym_u128] = ACTIONS(884), - [anon_sym_i128] = ACTIONS(884), - [anon_sym_isize] = ACTIONS(884), - [anon_sym_usize] = ACTIONS(884), - [anon_sym_f32] = ACTIONS(884), - [anon_sym_f64] = ACTIONS(884), - [anon_sym_bool] = ACTIONS(884), - [anon_sym_char] = ACTIONS(884), - [anon_sym_str] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(882), - [anon_sym_contract] = ACTIONS(884), - [anon_sym_script] = ACTIONS(884), - [anon_sym_predicate] = ACTIONS(884), - [anon_sym_library] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(882), - [anon_sym_RBRACE] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(884), - [anon_sym_abi] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_configurable] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_default] = ACTIONS(884), - [anon_sym_dep] = ACTIONS(884), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_fn] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_impl] = ACTIONS(884), - [anon_sym_let] = ACTIONS(884), - [anon_sym_match] = ACTIONS(884), - [anon_sym_pub] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_storage] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(884), - [anon_sym_trait] = ACTIONS(884), - [anon_sym_use] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_POUND] = ACTIONS(882), - [anon_sym_BANG] = ACTIONS(882), - [anon_sym_asm] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_DOT_DOT] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_yield] = ACTIONS(884), - [anon_sym_move] = ACTIONS(884), - [sym_integer_literal] = ACTIONS(882), - [aux_sym_string_literal_token1] = ACTIONS(882), - [sym_char_literal] = ACTIONS(882), - [anon_sym_true] = ACTIONS(884), - [anon_sym_false] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(871), + [sym_identifier] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_u8] = ACTIONS(873), + [anon_sym_i8] = ACTIONS(873), + [anon_sym_u16] = ACTIONS(873), + [anon_sym_i16] = ACTIONS(873), + [anon_sym_u32] = ACTIONS(873), + [anon_sym_i32] = ACTIONS(873), + [anon_sym_u64] = ACTIONS(873), + [anon_sym_i64] = ACTIONS(873), + [anon_sym_u128] = ACTIONS(873), + [anon_sym_i128] = ACTIONS(873), + [anon_sym_u256] = ACTIONS(873), + [anon_sym_i256] = ACTIONS(873), + [anon_sym_b256] = ACTIONS(873), + [anon_sym_isize] = ACTIONS(873), + [anon_sym_usize] = ACTIONS(873), + [anon_sym_f32] = ACTIONS(873), + [anon_sym_f64] = ACTIONS(873), + [anon_sym_bool] = ACTIONS(873), + [anon_sym_char] = ACTIONS(873), + [anon_sym_str] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(871), + [anon_sym_contract] = ACTIONS(873), + [anon_sym_script] = ACTIONS(873), + [anon_sym_predicate] = ACTIONS(873), + [anon_sym_library] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_abi] = ACTIONS(873), + [anon_sym_break] = ACTIONS(873), + [anon_sym_configurable] = ACTIONS(873), + [anon_sym_const] = ACTIONS(873), + [anon_sym_continue] = ACTIONS(873), + [anon_sym_default] = ACTIONS(873), + [anon_sym_mod] = ACTIONS(873), + [anon_sym_enum] = ACTIONS(873), + [anon_sym_fn] = ACTIONS(873), + [anon_sym_for] = ACTIONS(873), + [anon_sym_if] = ACTIONS(873), + [anon_sym_impl] = ACTIONS(873), + [anon_sym_let] = ACTIONS(873), + [anon_sym_match] = ACTIONS(873), + [anon_sym_pub] = ACTIONS(873), + [anon_sym_return] = ACTIONS(873), + [anon_sym_storage] = ACTIONS(873), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_trait] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_use] = ACTIONS(873), + [anon_sym_while] = ACTIONS(873), + [anon_sym_POUND] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_asm] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(871), + [anon_sym_COLON_COLON] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_AMP] = ACTIONS(871), + [anon_sym_DOT_DOT] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [sym_integer_literal] = ACTIONS(871), + [aux_sym_string_literal_token1] = ACTIONS(871), + [sym_char_literal] = ACTIONS(871), + [anon_sym_true] = ACTIONS(873), + [anon_sym_false] = ACTIONS(873), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(884), - [sym_metavariable] = ACTIONS(882), - [sym_raw_string_literal] = ACTIONS(882), - [sym_float_literal] = ACTIONS(882), + [sym_self] = ACTIONS(873), + [sym_metavariable] = ACTIONS(871), + [sym_raw_string_literal] = ACTIONS(871), + [sym_float_literal] = ACTIONS(871), [sym_block_comment] = ACTIONS(3), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(886), - [sym_identifier] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_contract] = ACTIONS(888), - [anon_sym_script] = ACTIONS(888), - [anon_sym_predicate] = ACTIONS(888), - [anon_sym_library] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_SQUOTE] = ACTIONS(888), - [anon_sym_abi] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [anon_sym_configurable] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_dep] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_if] = ACTIONS(888), - [anon_sym_impl] = ACTIONS(888), - [anon_sym_let] = ACTIONS(888), - [anon_sym_match] = ACTIONS(888), - [anon_sym_pub] = ACTIONS(888), - [anon_sym_return] = ACTIONS(888), - [anon_sym_storage] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(888), - [anon_sym_trait] = ACTIONS(888), - [anon_sym_use] = ACTIONS(888), - [anon_sym_while] = ACTIONS(888), - [anon_sym_POUND] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_asm] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_DOT_DOT] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_yield] = ACTIONS(888), - [anon_sym_move] = ACTIONS(888), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(886), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(888), - [anon_sym_false] = ACTIONS(888), + [sym_primitive_type] = STATE(1174), + [sym_attribute_item] = STATE(414), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_match_arm] = STATE(408), + [sym_last_match_arm] = STATE(2014), + [sym_match_pattern] = STATE(2033), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_enum_variant_list_repeat1] = STATE(414), + [aux_sym_match_block_repeat1] = STATE(408), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_metavariable] = ACTIONS(886), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(890), - [sym_identifier] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_contract] = ACTIONS(892), - [anon_sym_script] = ACTIONS(892), - [anon_sym_predicate] = ACTIONS(892), - [anon_sym_library] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_abi] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_configurable] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_default] = ACTIONS(892), - [anon_sym_dep] = ACTIONS(892), - [anon_sym_enum] = ACTIONS(892), - [anon_sym_fn] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_if] = ACTIONS(892), - [anon_sym_impl] = ACTIONS(892), - [anon_sym_let] = ACTIONS(892), - [anon_sym_match] = ACTIONS(892), - [anon_sym_pub] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_storage] = ACTIONS(892), - [anon_sym_struct] = ACTIONS(892), - [anon_sym_trait] = ACTIONS(892), - [anon_sym_use] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [anon_sym_POUND] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(890), - [anon_sym_asm] = ACTIONS(892), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_COLON_COLON] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(890), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_yield] = ACTIONS(892), - [anon_sym_move] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(890), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(892), - [anon_sym_false] = ACTIONS(892), + [ts_builtin_sym_end] = ACTIONS(895), + [sym_identifier] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_u8] = ACTIONS(897), + [anon_sym_i8] = ACTIONS(897), + [anon_sym_u16] = ACTIONS(897), + [anon_sym_i16] = ACTIONS(897), + [anon_sym_u32] = ACTIONS(897), + [anon_sym_i32] = ACTIONS(897), + [anon_sym_u64] = ACTIONS(897), + [anon_sym_i64] = ACTIONS(897), + [anon_sym_u128] = ACTIONS(897), + [anon_sym_i128] = ACTIONS(897), + [anon_sym_u256] = ACTIONS(897), + [anon_sym_i256] = ACTIONS(897), + [anon_sym_b256] = ACTIONS(897), + [anon_sym_isize] = ACTIONS(897), + [anon_sym_usize] = ACTIONS(897), + [anon_sym_f32] = ACTIONS(897), + [anon_sym_f64] = ACTIONS(897), + [anon_sym_bool] = ACTIONS(897), + [anon_sym_char] = ACTIONS(897), + [anon_sym_str] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_contract] = ACTIONS(897), + [anon_sym_script] = ACTIONS(897), + [anon_sym_predicate] = ACTIONS(897), + [anon_sym_library] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_abi] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_configurable] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_default] = ACTIONS(897), + [anon_sym_mod] = ACTIONS(897), + [anon_sym_enum] = ACTIONS(897), + [anon_sym_fn] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_impl] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_pub] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_storage] = ACTIONS(897), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_trait] = ACTIONS(897), + [anon_sym_type] = ACTIONS(897), + [anon_sym_use] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(895), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_asm] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_COLON_COLON] = ACTIONS(895), + [anon_sym_STAR] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(897), + [anon_sym_move] = ACTIONS(897), + [sym_integer_literal] = ACTIONS(895), + [aux_sym_string_literal_token1] = ACTIONS(895), + [sym_char_literal] = ACTIONS(895), + [anon_sym_true] = ACTIONS(897), + [anon_sym_false] = ACTIONS(897), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [sym_self] = ACTIONS(897), + [sym_metavariable] = ACTIONS(895), + [sym_raw_string_literal] = ACTIONS(895), + [sym_float_literal] = ACTIONS(895), [sym_block_comment] = ACTIONS(3), }, [231] = { - [ts_builtin_sym_end] = ACTIONS(894), - [sym_identifier] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(896), - [anon_sym_i8] = ACTIONS(896), - [anon_sym_u16] = ACTIONS(896), - [anon_sym_i16] = ACTIONS(896), - [anon_sym_u32] = ACTIONS(896), - [anon_sym_i32] = ACTIONS(896), - [anon_sym_u64] = ACTIONS(896), - [anon_sym_i64] = ACTIONS(896), - [anon_sym_u128] = ACTIONS(896), - [anon_sym_i128] = ACTIONS(896), - [anon_sym_isize] = ACTIONS(896), - [anon_sym_usize] = ACTIONS(896), - [anon_sym_f32] = ACTIONS(896), - [anon_sym_f64] = ACTIONS(896), - [anon_sym_bool] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), - [anon_sym_str] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_contract] = ACTIONS(896), - [anon_sym_script] = ACTIONS(896), - [anon_sym_predicate] = ACTIONS(896), - [anon_sym_library] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(894), - [anon_sym_SQUOTE] = ACTIONS(896), - [anon_sym_abi] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_configurable] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_dep] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [anon_sym_fn] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_impl] = ACTIONS(896), - [anon_sym_let] = ACTIONS(896), - [anon_sym_match] = ACTIONS(896), - [anon_sym_pub] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_storage] = ACTIONS(896), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_trait] = ACTIONS(896), - [anon_sym_use] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_POUND] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_asm] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(894), - [anon_sym_COLON_COLON] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(894), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_yield] = ACTIONS(896), - [anon_sym_move] = ACTIONS(896), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(894), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(896), - [anon_sym_false] = ACTIONS(896), + [ts_builtin_sym_end] = ACTIONS(899), + [sym_identifier] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_u8] = ACTIONS(901), + [anon_sym_i8] = ACTIONS(901), + [anon_sym_u16] = ACTIONS(901), + [anon_sym_i16] = ACTIONS(901), + [anon_sym_u32] = ACTIONS(901), + [anon_sym_i32] = ACTIONS(901), + [anon_sym_u64] = ACTIONS(901), + [anon_sym_i64] = ACTIONS(901), + [anon_sym_u128] = ACTIONS(901), + [anon_sym_i128] = ACTIONS(901), + [anon_sym_u256] = ACTIONS(901), + [anon_sym_i256] = ACTIONS(901), + [anon_sym_b256] = ACTIONS(901), + [anon_sym_isize] = ACTIONS(901), + [anon_sym_usize] = ACTIONS(901), + [anon_sym_f32] = ACTIONS(901), + [anon_sym_f64] = ACTIONS(901), + [anon_sym_bool] = ACTIONS(901), + [anon_sym_char] = ACTIONS(901), + [anon_sym_str] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_contract] = ACTIONS(901), + [anon_sym_script] = ACTIONS(901), + [anon_sym_predicate] = ACTIONS(901), + [anon_sym_library] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_abi] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_configurable] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_enum] = ACTIONS(901), + [anon_sym_fn] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_impl] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_pub] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_storage] = ACTIONS(901), + [anon_sym_struct] = ACTIONS(901), + [anon_sym_trait] = ACTIONS(901), + [anon_sym_type] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_asm] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(899), + [anon_sym_COLON_COLON] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_AMP] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_move] = ACTIONS(901), + [sym_integer_literal] = ACTIONS(899), + [aux_sym_string_literal_token1] = ACTIONS(899), + [sym_char_literal] = ACTIONS(899), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(896), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), + [sym_self] = ACTIONS(901), + [sym_metavariable] = ACTIONS(899), + [sym_raw_string_literal] = ACTIONS(899), + [sym_float_literal] = ACTIONS(899), [sym_block_comment] = ACTIONS(3), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(898), - [sym_identifier] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(898), - [anon_sym_contract] = ACTIONS(900), - [anon_sym_script] = ACTIONS(900), - [anon_sym_predicate] = ACTIONS(900), - [anon_sym_library] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(898), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_abi] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_configurable] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_default] = ACTIONS(900), - [anon_sym_dep] = ACTIONS(900), - [anon_sym_enum] = ACTIONS(900), - [anon_sym_fn] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_impl] = ACTIONS(900), - [anon_sym_let] = ACTIONS(900), - [anon_sym_match] = ACTIONS(900), - [anon_sym_pub] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_storage] = ACTIONS(900), - [anon_sym_struct] = ACTIONS(900), - [anon_sym_trait] = ACTIONS(900), - [anon_sym_use] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_POUND] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_asm] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_yield] = ACTIONS(900), - [anon_sym_move] = ACTIONS(900), - [sym_integer_literal] = ACTIONS(898), - [aux_sym_string_literal_token1] = ACTIONS(898), - [sym_char_literal] = ACTIONS(898), - [anon_sym_true] = ACTIONS(900), - [anon_sym_false] = ACTIONS(900), + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(905), + [anon_sym_i8] = ACTIONS(905), + [anon_sym_u16] = ACTIONS(905), + [anon_sym_i16] = ACTIONS(905), + [anon_sym_u32] = ACTIONS(905), + [anon_sym_i32] = ACTIONS(905), + [anon_sym_u64] = ACTIONS(905), + [anon_sym_i64] = ACTIONS(905), + [anon_sym_u128] = ACTIONS(905), + [anon_sym_i128] = ACTIONS(905), + [anon_sym_u256] = ACTIONS(905), + [anon_sym_i256] = ACTIONS(905), + [anon_sym_b256] = ACTIONS(905), + [anon_sym_isize] = ACTIONS(905), + [anon_sym_usize] = ACTIONS(905), + [anon_sym_f32] = ACTIONS(905), + [anon_sym_f64] = ACTIONS(905), + [anon_sym_bool] = ACTIONS(905), + [anon_sym_char] = ACTIONS(905), + [anon_sym_str] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_contract] = ACTIONS(905), + [anon_sym_script] = ACTIONS(905), + [anon_sym_predicate] = ACTIONS(905), + [anon_sym_library] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(905), + [anon_sym_abi] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_configurable] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_fn] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_impl] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_match] = ACTIONS(905), + [anon_sym_pub] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_storage] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_trait] = ACTIONS(905), + [anon_sym_type] = ACTIONS(905), + [anon_sym_use] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_POUND] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_asm] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_yield] = ACTIONS(905), + [anon_sym_move] = ACTIONS(905), + [sym_integer_literal] = ACTIONS(903), + [aux_sym_string_literal_token1] = ACTIONS(903), + [sym_char_literal] = ACTIONS(903), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(900), - [sym_metavariable] = ACTIONS(898), - [sym_raw_string_literal] = ACTIONS(898), - [sym_float_literal] = ACTIONS(898), + [sym_self] = ACTIONS(905), + [sym_metavariable] = ACTIONS(903), + [sym_raw_string_literal] = ACTIONS(903), + [sym_float_literal] = ACTIONS(903), [sym_block_comment] = ACTIONS(3), }, [233] = { - [sym_primitive_type] = STATE(1036), - [sym_attribute_item] = STATE(417), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_match_arm] = STATE(416), - [sym_last_match_arm] = STATE(2057), - [sym_match_pattern] = STATE(2074), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1764), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_enum_variant_list_repeat1] = STATE(417), - [aux_sym_match_block_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [ts_builtin_sym_end] = ACTIONS(907), + [sym_identifier] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(909), + [anon_sym_i8] = ACTIONS(909), + [anon_sym_u16] = ACTIONS(909), + [anon_sym_i16] = ACTIONS(909), + [anon_sym_u32] = ACTIONS(909), + [anon_sym_i32] = ACTIONS(909), + [anon_sym_u64] = ACTIONS(909), + [anon_sym_i64] = ACTIONS(909), + [anon_sym_u128] = ACTIONS(909), + [anon_sym_i128] = ACTIONS(909), + [anon_sym_u256] = ACTIONS(909), + [anon_sym_i256] = ACTIONS(909), + [anon_sym_b256] = ACTIONS(909), + [anon_sym_isize] = ACTIONS(909), + [anon_sym_usize] = ACTIONS(909), + [anon_sym_f32] = ACTIONS(909), + [anon_sym_f64] = ACTIONS(909), + [anon_sym_bool] = ACTIONS(909), + [anon_sym_char] = ACTIONS(909), + [anon_sym_str] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_contract] = ACTIONS(909), + [anon_sym_script] = ACTIONS(909), + [anon_sym_predicate] = ACTIONS(909), + [anon_sym_library] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_SQUOTE] = ACTIONS(909), + [anon_sym_abi] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_configurable] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_default] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_fn] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_impl] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_pub] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_storage] = ACTIONS(909), + [anon_sym_struct] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_asm] = ACTIONS(909), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_yield] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [sym_integer_literal] = ACTIONS(907), + [aux_sym_string_literal_token1] = ACTIONS(907), + [sym_char_literal] = ACTIONS(907), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(909), + [sym_metavariable] = ACTIONS(907), + [sym_raw_string_literal] = ACTIONS(907), + [sym_float_literal] = ACTIONS(907), [sym_block_comment] = ACTIONS(3), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(902), - [sym_identifier] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_u8] = ACTIONS(904), - [anon_sym_i8] = ACTIONS(904), - [anon_sym_u16] = ACTIONS(904), - [anon_sym_i16] = ACTIONS(904), - [anon_sym_u32] = ACTIONS(904), - [anon_sym_i32] = ACTIONS(904), - [anon_sym_u64] = ACTIONS(904), - [anon_sym_i64] = ACTIONS(904), - [anon_sym_u128] = ACTIONS(904), - [anon_sym_i128] = ACTIONS(904), - [anon_sym_isize] = ACTIONS(904), - [anon_sym_usize] = ACTIONS(904), - [anon_sym_f32] = ACTIONS(904), - [anon_sym_f64] = ACTIONS(904), - [anon_sym_bool] = ACTIONS(904), - [anon_sym_char] = ACTIONS(904), - [anon_sym_str] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_contract] = ACTIONS(904), - [anon_sym_script] = ACTIONS(904), - [anon_sym_predicate] = ACTIONS(904), - [anon_sym_library] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_abi] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_configurable] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_default] = ACTIONS(904), - [anon_sym_dep] = ACTIONS(904), - [anon_sym_enum] = ACTIONS(904), - [anon_sym_fn] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_impl] = ACTIONS(904), - [anon_sym_let] = ACTIONS(904), - [anon_sym_match] = ACTIONS(904), - [anon_sym_pub] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_storage] = ACTIONS(904), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_trait] = ACTIONS(904), - [anon_sym_use] = ACTIONS(904), - [anon_sym_while] = ACTIONS(904), - [anon_sym_POUND] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_asm] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_COLON_COLON] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_DOT_DOT] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_yield] = ACTIONS(904), - [anon_sym_move] = ACTIONS(904), - [sym_integer_literal] = ACTIONS(902), - [aux_sym_string_literal_token1] = ACTIONS(902), - [sym_char_literal] = ACTIONS(902), - [anon_sym_true] = ACTIONS(904), - [anon_sym_false] = ACTIONS(904), + [ts_builtin_sym_end] = ACTIONS(911), + [sym_identifier] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_u8] = ACTIONS(913), + [anon_sym_i8] = ACTIONS(913), + [anon_sym_u16] = ACTIONS(913), + [anon_sym_i16] = ACTIONS(913), + [anon_sym_u32] = ACTIONS(913), + [anon_sym_i32] = ACTIONS(913), + [anon_sym_u64] = ACTIONS(913), + [anon_sym_i64] = ACTIONS(913), + [anon_sym_u128] = ACTIONS(913), + [anon_sym_i128] = ACTIONS(913), + [anon_sym_u256] = ACTIONS(913), + [anon_sym_i256] = ACTIONS(913), + [anon_sym_b256] = ACTIONS(913), + [anon_sym_isize] = ACTIONS(913), + [anon_sym_usize] = ACTIONS(913), + [anon_sym_f32] = ACTIONS(913), + [anon_sym_f64] = ACTIONS(913), + [anon_sym_bool] = ACTIONS(913), + [anon_sym_char] = ACTIONS(913), + [anon_sym_str] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_contract] = ACTIONS(913), + [anon_sym_script] = ACTIONS(913), + [anon_sym_predicate] = ACTIONS(913), + [anon_sym_library] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_SQUOTE] = ACTIONS(913), + [anon_sym_abi] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_configurable] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(913), + [anon_sym_fn] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_impl] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_pub] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_storage] = ACTIONS(913), + [anon_sym_struct] = ACTIONS(913), + [anon_sym_trait] = ACTIONS(913), + [anon_sym_type] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_asm] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_yield] = ACTIONS(913), + [anon_sym_move] = ACTIONS(913), + [sym_integer_literal] = ACTIONS(911), + [aux_sym_string_literal_token1] = ACTIONS(911), + [sym_char_literal] = ACTIONS(911), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(904), - [sym_metavariable] = ACTIONS(902), - [sym_raw_string_literal] = ACTIONS(902), - [sym_float_literal] = ACTIONS(902), + [sym_self] = ACTIONS(913), + [sym_metavariable] = ACTIONS(911), + [sym_raw_string_literal] = ACTIONS(911), + [sym_float_literal] = ACTIONS(911), [sym_block_comment] = ACTIONS(3), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(906), - [sym_identifier] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_contract] = ACTIONS(908), - [anon_sym_script] = ACTIONS(908), - [anon_sym_predicate] = ACTIONS(908), - [anon_sym_library] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_abi] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_configurable] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_default] = ACTIONS(908), - [anon_sym_dep] = ACTIONS(908), - [anon_sym_enum] = ACTIONS(908), - [anon_sym_fn] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_impl] = ACTIONS(908), - [anon_sym_let] = ACTIONS(908), - [anon_sym_match] = ACTIONS(908), - [anon_sym_pub] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_storage] = ACTIONS(908), - [anon_sym_struct] = ACTIONS(908), - [anon_sym_trait] = ACTIONS(908), - [anon_sym_use] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_asm] = ACTIONS(908), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_COLON_COLON] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_DOT_DOT] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(908), - [anon_sym_move] = ACTIONS(908), - [sym_integer_literal] = ACTIONS(906), - [aux_sym_string_literal_token1] = ACTIONS(906), - [sym_char_literal] = ACTIONS(906), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), + [ts_builtin_sym_end] = ACTIONS(915), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_u8] = ACTIONS(917), + [anon_sym_i8] = ACTIONS(917), + [anon_sym_u16] = ACTIONS(917), + [anon_sym_i16] = ACTIONS(917), + [anon_sym_u32] = ACTIONS(917), + [anon_sym_i32] = ACTIONS(917), + [anon_sym_u64] = ACTIONS(917), + [anon_sym_i64] = ACTIONS(917), + [anon_sym_u128] = ACTIONS(917), + [anon_sym_i128] = ACTIONS(917), + [anon_sym_u256] = ACTIONS(917), + [anon_sym_i256] = ACTIONS(917), + [anon_sym_b256] = ACTIONS(917), + [anon_sym_isize] = ACTIONS(917), + [anon_sym_usize] = ACTIONS(917), + [anon_sym_f32] = ACTIONS(917), + [anon_sym_f64] = ACTIONS(917), + [anon_sym_bool] = ACTIONS(917), + [anon_sym_char] = ACTIONS(917), + [anon_sym_str] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(915), + [anon_sym_contract] = ACTIONS(917), + [anon_sym_script] = ACTIONS(917), + [anon_sym_predicate] = ACTIONS(917), + [anon_sym_library] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_SQUOTE] = ACTIONS(917), + [anon_sym_abi] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_configurable] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(917), + [anon_sym_fn] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_impl] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_pub] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_storage] = ACTIONS(917), + [anon_sym_struct] = ACTIONS(917), + [anon_sym_trait] = ACTIONS(917), + [anon_sym_type] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_asm] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_yield] = ACTIONS(917), + [anon_sym_move] = ACTIONS(917), + [sym_integer_literal] = ACTIONS(915), + [aux_sym_string_literal_token1] = ACTIONS(915), + [sym_char_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(908), - [sym_metavariable] = ACTIONS(906), - [sym_raw_string_literal] = ACTIONS(906), - [sym_float_literal] = ACTIONS(906), + [sym_self] = ACTIONS(917), + [sym_metavariable] = ACTIONS(915), + [sym_raw_string_literal] = ACTIONS(915), + [sym_float_literal] = ACTIONS(915), [sym_block_comment] = ACTIONS(3), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(910), - [sym_identifier] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(910), - [anon_sym_u8] = ACTIONS(912), - [anon_sym_i8] = ACTIONS(912), - [anon_sym_u16] = ACTIONS(912), - [anon_sym_i16] = ACTIONS(912), - [anon_sym_u32] = ACTIONS(912), - [anon_sym_i32] = ACTIONS(912), - [anon_sym_u64] = ACTIONS(912), - [anon_sym_i64] = ACTIONS(912), - [anon_sym_u128] = ACTIONS(912), - [anon_sym_i128] = ACTIONS(912), - [anon_sym_isize] = ACTIONS(912), - [anon_sym_usize] = ACTIONS(912), - [anon_sym_f32] = ACTIONS(912), - [anon_sym_f64] = ACTIONS(912), - [anon_sym_bool] = ACTIONS(912), - [anon_sym_char] = ACTIONS(912), - [anon_sym_str] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(910), - [anon_sym_contract] = ACTIONS(912), - [anon_sym_script] = ACTIONS(912), - [anon_sym_predicate] = ACTIONS(912), - [anon_sym_library] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(910), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_abi] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_configurable] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_dep] = ACTIONS(912), - [anon_sym_enum] = ACTIONS(912), - [anon_sym_fn] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_impl] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_match] = ACTIONS(912), - [anon_sym_pub] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_storage] = ACTIONS(912), - [anon_sym_struct] = ACTIONS(912), - [anon_sym_trait] = ACTIONS(912), - [anon_sym_use] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_POUND] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(910), - [anon_sym_asm] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(910), - [anon_sym_COLON_COLON] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(910), - [anon_sym_DOT_DOT] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(910), - [anon_sym_yield] = ACTIONS(912), - [anon_sym_move] = ACTIONS(912), - [sym_integer_literal] = ACTIONS(910), - [aux_sym_string_literal_token1] = ACTIONS(910), - [sym_char_literal] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), + [ts_builtin_sym_end] = ACTIONS(919), + [sym_identifier] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_u8] = ACTIONS(921), + [anon_sym_i8] = ACTIONS(921), + [anon_sym_u16] = ACTIONS(921), + [anon_sym_i16] = ACTIONS(921), + [anon_sym_u32] = ACTIONS(921), + [anon_sym_i32] = ACTIONS(921), + [anon_sym_u64] = ACTIONS(921), + [anon_sym_i64] = ACTIONS(921), + [anon_sym_u128] = ACTIONS(921), + [anon_sym_i128] = ACTIONS(921), + [anon_sym_u256] = ACTIONS(921), + [anon_sym_i256] = ACTIONS(921), + [anon_sym_b256] = ACTIONS(921), + [anon_sym_isize] = ACTIONS(921), + [anon_sym_usize] = ACTIONS(921), + [anon_sym_f32] = ACTIONS(921), + [anon_sym_f64] = ACTIONS(921), + [anon_sym_bool] = ACTIONS(921), + [anon_sym_char] = ACTIONS(921), + [anon_sym_str] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(919), + [anon_sym_contract] = ACTIONS(921), + [anon_sym_script] = ACTIONS(921), + [anon_sym_predicate] = ACTIONS(921), + [anon_sym_library] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_abi] = ACTIONS(921), + [anon_sym_break] = ACTIONS(921), + [anon_sym_configurable] = ACTIONS(921), + [anon_sym_const] = ACTIONS(921), + [anon_sym_continue] = ACTIONS(921), + [anon_sym_default] = ACTIONS(921), + [anon_sym_mod] = ACTIONS(921), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_fn] = ACTIONS(921), + [anon_sym_for] = ACTIONS(921), + [anon_sym_if] = ACTIONS(921), + [anon_sym_impl] = ACTIONS(921), + [anon_sym_let] = ACTIONS(921), + [anon_sym_match] = ACTIONS(921), + [anon_sym_pub] = ACTIONS(921), + [anon_sym_return] = ACTIONS(921), + [anon_sym_storage] = ACTIONS(921), + [anon_sym_struct] = ACTIONS(921), + [anon_sym_trait] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_use] = ACTIONS(921), + [anon_sym_while] = ACTIONS(921), + [anon_sym_POUND] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_asm] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_COLON_COLON] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_AMP] = ACTIONS(919), + [anon_sym_DOT_DOT] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(921), + [anon_sym_move] = ACTIONS(921), + [sym_integer_literal] = ACTIONS(919), + [aux_sym_string_literal_token1] = ACTIONS(919), + [sym_char_literal] = ACTIONS(919), + [anon_sym_true] = ACTIONS(921), + [anon_sym_false] = ACTIONS(921), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(912), - [sym_metavariable] = ACTIONS(910), - [sym_raw_string_literal] = ACTIONS(910), - [sym_float_literal] = ACTIONS(910), + [sym_self] = ACTIONS(921), + [sym_metavariable] = ACTIONS(919), + [sym_raw_string_literal] = ACTIONS(919), + [sym_float_literal] = ACTIONS(919), [sym_block_comment] = ACTIONS(3), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(914), - [sym_identifier] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_u8] = ACTIONS(916), - [anon_sym_i8] = ACTIONS(916), - [anon_sym_u16] = ACTIONS(916), - [anon_sym_i16] = ACTIONS(916), - [anon_sym_u32] = ACTIONS(916), - [anon_sym_i32] = ACTIONS(916), - [anon_sym_u64] = ACTIONS(916), - [anon_sym_i64] = ACTIONS(916), - [anon_sym_u128] = ACTIONS(916), - [anon_sym_i128] = ACTIONS(916), - [anon_sym_isize] = ACTIONS(916), - [anon_sym_usize] = ACTIONS(916), - [anon_sym_f32] = ACTIONS(916), - [anon_sym_f64] = ACTIONS(916), - [anon_sym_bool] = ACTIONS(916), - [anon_sym_char] = ACTIONS(916), - [anon_sym_str] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_contract] = ACTIONS(916), - [anon_sym_script] = ACTIONS(916), - [anon_sym_predicate] = ACTIONS(916), - [anon_sym_library] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_abi] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_configurable] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_dep] = ACTIONS(916), - [anon_sym_enum] = ACTIONS(916), - [anon_sym_fn] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_impl] = ACTIONS(916), - [anon_sym_let] = ACTIONS(916), - [anon_sym_match] = ACTIONS(916), - [anon_sym_pub] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_storage] = ACTIONS(916), - [anon_sym_struct] = ACTIONS(916), - [anon_sym_trait] = ACTIONS(916), - [anon_sym_use] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_asm] = ACTIONS(916), - [anon_sym_LT] = ACTIONS(914), - [anon_sym_COLON_COLON] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_move] = ACTIONS(916), - [sym_integer_literal] = ACTIONS(914), - [aux_sym_string_literal_token1] = ACTIONS(914), - [sym_char_literal] = ACTIONS(914), - [anon_sym_true] = ACTIONS(916), - [anon_sym_false] = ACTIONS(916), + [ts_builtin_sym_end] = ACTIONS(923), + [sym_identifier] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(925), + [anon_sym_i8] = ACTIONS(925), + [anon_sym_u16] = ACTIONS(925), + [anon_sym_i16] = ACTIONS(925), + [anon_sym_u32] = ACTIONS(925), + [anon_sym_i32] = ACTIONS(925), + [anon_sym_u64] = ACTIONS(925), + [anon_sym_i64] = ACTIONS(925), + [anon_sym_u128] = ACTIONS(925), + [anon_sym_i128] = ACTIONS(925), + [anon_sym_u256] = ACTIONS(925), + [anon_sym_i256] = ACTIONS(925), + [anon_sym_b256] = ACTIONS(925), + [anon_sym_isize] = ACTIONS(925), + [anon_sym_usize] = ACTIONS(925), + [anon_sym_f32] = ACTIONS(925), + [anon_sym_f64] = ACTIONS(925), + [anon_sym_bool] = ACTIONS(925), + [anon_sym_char] = ACTIONS(925), + [anon_sym_str] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_contract] = ACTIONS(925), + [anon_sym_script] = ACTIONS(925), + [anon_sym_predicate] = ACTIONS(925), + [anon_sym_library] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_abi] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_configurable] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_default] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_enum] = ACTIONS(925), + [anon_sym_fn] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_impl] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_pub] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_storage] = ACTIONS(925), + [anon_sym_struct] = ACTIONS(925), + [anon_sym_trait] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_asm] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_COLON_COLON] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_yield] = ACTIONS(925), + [anon_sym_move] = ACTIONS(925), + [sym_integer_literal] = ACTIONS(923), + [aux_sym_string_literal_token1] = ACTIONS(923), + [sym_char_literal] = ACTIONS(923), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(916), - [sym_metavariable] = ACTIONS(914), - [sym_raw_string_literal] = ACTIONS(914), - [sym_float_literal] = ACTIONS(914), + [sym_self] = ACTIONS(925), + [sym_metavariable] = ACTIONS(923), + [sym_raw_string_literal] = ACTIONS(923), + [sym_float_literal] = ACTIONS(923), [sym_block_comment] = ACTIONS(3), }, [238] = { - [ts_builtin_sym_end] = ACTIONS(918), - [sym_identifier] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_u8] = ACTIONS(920), - [anon_sym_i8] = ACTIONS(920), - [anon_sym_u16] = ACTIONS(920), - [anon_sym_i16] = ACTIONS(920), - [anon_sym_u32] = ACTIONS(920), - [anon_sym_i32] = ACTIONS(920), - [anon_sym_u64] = ACTIONS(920), - [anon_sym_i64] = ACTIONS(920), - [anon_sym_u128] = ACTIONS(920), - [anon_sym_i128] = ACTIONS(920), - [anon_sym_isize] = ACTIONS(920), - [anon_sym_usize] = ACTIONS(920), - [anon_sym_f32] = ACTIONS(920), - [anon_sym_f64] = ACTIONS(920), - [anon_sym_bool] = ACTIONS(920), - [anon_sym_char] = ACTIONS(920), - [anon_sym_str] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_contract] = ACTIONS(920), - [anon_sym_script] = ACTIONS(920), - [anon_sym_predicate] = ACTIONS(920), - [anon_sym_library] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_abi] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_configurable] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_dep] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_fn] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_impl] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_pub] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_storage] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_trait] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_asm] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(918), - [anon_sym_COLON_COLON] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_DOT_DOT] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_yield] = ACTIONS(920), - [anon_sym_move] = ACTIONS(920), - [sym_integer_literal] = ACTIONS(918), - [aux_sym_string_literal_token1] = ACTIONS(918), - [sym_char_literal] = ACTIONS(918), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u128] = ACTIONS(929), + [anon_sym_i128] = ACTIONS(929), + [anon_sym_u256] = ACTIONS(929), + [anon_sym_i256] = ACTIONS(929), + [anon_sym_b256] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_char] = ACTIONS(929), + [anon_sym_str] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_contract] = ACTIONS(929), + [anon_sym_script] = ACTIONS(929), + [anon_sym_predicate] = ACTIONS(929), + [anon_sym_library] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_abi] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_configurable] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_default] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(929), + [anon_sym_fn] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_impl] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_pub] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_storage] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_trait] = ACTIONS(929), + [anon_sym_type] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_asm] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_move] = ACTIONS(929), + [sym_integer_literal] = ACTIONS(927), + [aux_sym_string_literal_token1] = ACTIONS(927), + [sym_char_literal] = ACTIONS(927), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(920), - [sym_metavariable] = ACTIONS(918), - [sym_raw_string_literal] = ACTIONS(918), - [sym_float_literal] = ACTIONS(918), + [sym_self] = ACTIONS(929), + [sym_metavariable] = ACTIONS(927), + [sym_raw_string_literal] = ACTIONS(927), + [sym_float_literal] = ACTIONS(927), [sym_block_comment] = ACTIONS(3), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(922), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_u8] = ACTIONS(924), - [anon_sym_i8] = ACTIONS(924), - [anon_sym_u16] = ACTIONS(924), - [anon_sym_i16] = ACTIONS(924), - [anon_sym_u32] = ACTIONS(924), - [anon_sym_i32] = ACTIONS(924), - [anon_sym_u64] = ACTIONS(924), - [anon_sym_i64] = ACTIONS(924), - [anon_sym_u128] = ACTIONS(924), - [anon_sym_i128] = ACTIONS(924), - [anon_sym_isize] = ACTIONS(924), - [anon_sym_usize] = ACTIONS(924), - [anon_sym_f32] = ACTIONS(924), - [anon_sym_f64] = ACTIONS(924), - [anon_sym_bool] = ACTIONS(924), - [anon_sym_char] = ACTIONS(924), - [anon_sym_str] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_contract] = ACTIONS(924), - [anon_sym_script] = ACTIONS(924), - [anon_sym_predicate] = ACTIONS(924), - [anon_sym_library] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_abi] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_configurable] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_dep] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_fn] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_pub] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_storage] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_trait] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_asm] = ACTIONS(924), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_DOT_DOT] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_yield] = ACTIONS(924), - [anon_sym_move] = ACTIONS(924), - [sym_integer_literal] = ACTIONS(922), - [aux_sym_string_literal_token1] = ACTIONS(922), - [sym_char_literal] = ACTIONS(922), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), + [ts_builtin_sym_end] = ACTIONS(931), + [sym_identifier] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_u8] = ACTIONS(933), + [anon_sym_i8] = ACTIONS(933), + [anon_sym_u16] = ACTIONS(933), + [anon_sym_i16] = ACTIONS(933), + [anon_sym_u32] = ACTIONS(933), + [anon_sym_i32] = ACTIONS(933), + [anon_sym_u64] = ACTIONS(933), + [anon_sym_i64] = ACTIONS(933), + [anon_sym_u128] = ACTIONS(933), + [anon_sym_i128] = ACTIONS(933), + [anon_sym_u256] = ACTIONS(933), + [anon_sym_i256] = ACTIONS(933), + [anon_sym_b256] = ACTIONS(933), + [anon_sym_isize] = ACTIONS(933), + [anon_sym_usize] = ACTIONS(933), + [anon_sym_f32] = ACTIONS(933), + [anon_sym_f64] = ACTIONS(933), + [anon_sym_bool] = ACTIONS(933), + [anon_sym_char] = ACTIONS(933), + [anon_sym_str] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_contract] = ACTIONS(933), + [anon_sym_script] = ACTIONS(933), + [anon_sym_predicate] = ACTIONS(933), + [anon_sym_library] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_abi] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_configurable] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_default] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [anon_sym_fn] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_impl] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_pub] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_storage] = ACTIONS(933), + [anon_sym_struct] = ACTIONS(933), + [anon_sym_trait] = ACTIONS(933), + [anon_sym_type] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_asm] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_COLON_COLON] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_move] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(931), + [aux_sym_string_literal_token1] = ACTIONS(931), + [sym_char_literal] = ACTIONS(931), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(924), - [sym_metavariable] = ACTIONS(922), - [sym_raw_string_literal] = ACTIONS(922), - [sym_float_literal] = ACTIONS(922), + [sym_self] = ACTIONS(933), + [sym_metavariable] = ACTIONS(931), + [sym_raw_string_literal] = ACTIONS(931), + [sym_float_literal] = ACTIONS(931), [sym_block_comment] = ACTIONS(3), }, [240] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_u8] = ACTIONS(928), - [anon_sym_i8] = ACTIONS(928), - [anon_sym_u16] = ACTIONS(928), - [anon_sym_i16] = ACTIONS(928), - [anon_sym_u32] = ACTIONS(928), - [anon_sym_i32] = ACTIONS(928), - [anon_sym_u64] = ACTIONS(928), - [anon_sym_i64] = ACTIONS(928), - [anon_sym_u128] = ACTIONS(928), - [anon_sym_i128] = ACTIONS(928), - [anon_sym_isize] = ACTIONS(928), - [anon_sym_usize] = ACTIONS(928), - [anon_sym_f32] = ACTIONS(928), - [anon_sym_f64] = ACTIONS(928), - [anon_sym_bool] = ACTIONS(928), - [anon_sym_char] = ACTIONS(928), - [anon_sym_str] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_contract] = ACTIONS(928), - [anon_sym_script] = ACTIONS(928), - [anon_sym_predicate] = ACTIONS(928), - [anon_sym_library] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_abi] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_configurable] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_dep] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_fn] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_impl] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_pub] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_storage] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_trait] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_asm] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(926), - [anon_sym_COLON_COLON] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_move] = ACTIONS(928), - [sym_integer_literal] = ACTIONS(926), - [aux_sym_string_literal_token1] = ACTIONS(926), - [sym_char_literal] = ACTIONS(926), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), + [ts_builtin_sym_end] = ACTIONS(935), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_u8] = ACTIONS(937), + [anon_sym_i8] = ACTIONS(937), + [anon_sym_u16] = ACTIONS(937), + [anon_sym_i16] = ACTIONS(937), + [anon_sym_u32] = ACTIONS(937), + [anon_sym_i32] = ACTIONS(937), + [anon_sym_u64] = ACTIONS(937), + [anon_sym_i64] = ACTIONS(937), + [anon_sym_u128] = ACTIONS(937), + [anon_sym_i128] = ACTIONS(937), + [anon_sym_u256] = ACTIONS(937), + [anon_sym_i256] = ACTIONS(937), + [anon_sym_b256] = ACTIONS(937), + [anon_sym_isize] = ACTIONS(937), + [anon_sym_usize] = ACTIONS(937), + [anon_sym_f32] = ACTIONS(937), + [anon_sym_f64] = ACTIONS(937), + [anon_sym_bool] = ACTIONS(937), + [anon_sym_char] = ACTIONS(937), + [anon_sym_str] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_contract] = ACTIONS(937), + [anon_sym_script] = ACTIONS(937), + [anon_sym_predicate] = ACTIONS(937), + [anon_sym_library] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_SQUOTE] = ACTIONS(937), + [anon_sym_abi] = ACTIONS(937), + [anon_sym_break] = ACTIONS(937), + [anon_sym_configurable] = ACTIONS(937), + [anon_sym_const] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(937), + [anon_sym_default] = ACTIONS(937), + [anon_sym_mod] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(937), + [anon_sym_fn] = ACTIONS(937), + [anon_sym_for] = ACTIONS(937), + [anon_sym_if] = ACTIONS(937), + [anon_sym_impl] = ACTIONS(937), + [anon_sym_let] = ACTIONS(937), + [anon_sym_match] = ACTIONS(937), + [anon_sym_pub] = ACTIONS(937), + [anon_sym_return] = ACTIONS(937), + [anon_sym_storage] = ACTIONS(937), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_trait] = ACTIONS(937), + [anon_sym_type] = ACTIONS(937), + [anon_sym_use] = ACTIONS(937), + [anon_sym_while] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_asm] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_COLON_COLON] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_move] = ACTIONS(937), + [sym_integer_literal] = ACTIONS(935), + [aux_sym_string_literal_token1] = ACTIONS(935), + [sym_char_literal] = ACTIONS(935), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(928), - [sym_metavariable] = ACTIONS(926), - [sym_raw_string_literal] = ACTIONS(926), - [sym_float_literal] = ACTIONS(926), + [sym_self] = ACTIONS(937), + [sym_metavariable] = ACTIONS(935), + [sym_raw_string_literal] = ACTIONS(935), + [sym_float_literal] = ACTIONS(935), [sym_block_comment] = ACTIONS(3), }, [241] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_u8] = ACTIONS(932), - [anon_sym_i8] = ACTIONS(932), - [anon_sym_u16] = ACTIONS(932), - [anon_sym_i16] = ACTIONS(932), - [anon_sym_u32] = ACTIONS(932), - [anon_sym_i32] = ACTIONS(932), - [anon_sym_u64] = ACTIONS(932), - [anon_sym_i64] = ACTIONS(932), - [anon_sym_u128] = ACTIONS(932), - [anon_sym_i128] = ACTIONS(932), - [anon_sym_isize] = ACTIONS(932), - [anon_sym_usize] = ACTIONS(932), - [anon_sym_f32] = ACTIONS(932), - [anon_sym_f64] = ACTIONS(932), - [anon_sym_bool] = ACTIONS(932), - [anon_sym_char] = ACTIONS(932), - [anon_sym_str] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_contract] = ACTIONS(932), - [anon_sym_script] = ACTIONS(932), - [anon_sym_predicate] = ACTIONS(932), - [anon_sym_library] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_abi] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_configurable] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_dep] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_impl] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_pub] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_storage] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_asm] = ACTIONS(932), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_COLON_COLON] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_DOT_DOT] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_yield] = ACTIONS(932), - [anon_sym_move] = ACTIONS(932), - [sym_integer_literal] = ACTIONS(930), - [aux_sym_string_literal_token1] = ACTIONS(930), - [sym_char_literal] = ACTIONS(930), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), + [ts_builtin_sym_end] = ACTIONS(939), + [sym_identifier] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_u8] = ACTIONS(941), + [anon_sym_i8] = ACTIONS(941), + [anon_sym_u16] = ACTIONS(941), + [anon_sym_i16] = ACTIONS(941), + [anon_sym_u32] = ACTIONS(941), + [anon_sym_i32] = ACTIONS(941), + [anon_sym_u64] = ACTIONS(941), + [anon_sym_i64] = ACTIONS(941), + [anon_sym_u128] = ACTIONS(941), + [anon_sym_i128] = ACTIONS(941), + [anon_sym_u256] = ACTIONS(941), + [anon_sym_i256] = ACTIONS(941), + [anon_sym_b256] = ACTIONS(941), + [anon_sym_isize] = ACTIONS(941), + [anon_sym_usize] = ACTIONS(941), + [anon_sym_f32] = ACTIONS(941), + [anon_sym_f64] = ACTIONS(941), + [anon_sym_bool] = ACTIONS(941), + [anon_sym_char] = ACTIONS(941), + [anon_sym_str] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_contract] = ACTIONS(941), + [anon_sym_script] = ACTIONS(941), + [anon_sym_predicate] = ACTIONS(941), + [anon_sym_library] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_abi] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_configurable] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_default] = ACTIONS(941), + [anon_sym_mod] = ACTIONS(941), + [anon_sym_enum] = ACTIONS(941), + [anon_sym_fn] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_impl] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_pub] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_storage] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_trait] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_asm] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_COLON_COLON] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [sym_integer_literal] = ACTIONS(939), + [aux_sym_string_literal_token1] = ACTIONS(939), + [sym_char_literal] = ACTIONS(939), + [anon_sym_true] = ACTIONS(941), + [anon_sym_false] = ACTIONS(941), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(932), - [sym_metavariable] = ACTIONS(930), - [sym_raw_string_literal] = ACTIONS(930), - [sym_float_literal] = ACTIONS(930), + [sym_self] = ACTIONS(941), + [sym_metavariable] = ACTIONS(939), + [sym_raw_string_literal] = ACTIONS(939), + [sym_float_literal] = ACTIONS(939), [sym_block_comment] = ACTIONS(3), }, [242] = { - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_u8] = ACTIONS(936), - [anon_sym_i8] = ACTIONS(936), - [anon_sym_u16] = ACTIONS(936), - [anon_sym_i16] = ACTIONS(936), - [anon_sym_u32] = ACTIONS(936), - [anon_sym_i32] = ACTIONS(936), - [anon_sym_u64] = ACTIONS(936), - [anon_sym_i64] = ACTIONS(936), - [anon_sym_u128] = ACTIONS(936), - [anon_sym_i128] = ACTIONS(936), - [anon_sym_isize] = ACTIONS(936), - [anon_sym_usize] = ACTIONS(936), - [anon_sym_f32] = ACTIONS(936), - [anon_sym_f64] = ACTIONS(936), - [anon_sym_bool] = ACTIONS(936), - [anon_sym_char] = ACTIONS(936), - [anon_sym_str] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_contract] = ACTIONS(936), - [anon_sym_script] = ACTIONS(936), - [anon_sym_predicate] = ACTIONS(936), - [anon_sym_library] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_abi] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_configurable] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_dep] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_fn] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_impl] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_pub] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_storage] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_trait] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_asm] = ACTIONS(936), - [anon_sym_LT] = ACTIONS(934), - [anon_sym_COLON_COLON] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_yield] = ACTIONS(936), - [anon_sym_move] = ACTIONS(936), - [sym_integer_literal] = ACTIONS(934), - [aux_sym_string_literal_token1] = ACTIONS(934), - [sym_char_literal] = ACTIONS(934), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), + [ts_builtin_sym_end] = ACTIONS(943), + [sym_identifier] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_u8] = ACTIONS(945), + [anon_sym_i8] = ACTIONS(945), + [anon_sym_u16] = ACTIONS(945), + [anon_sym_i16] = ACTIONS(945), + [anon_sym_u32] = ACTIONS(945), + [anon_sym_i32] = ACTIONS(945), + [anon_sym_u64] = ACTIONS(945), + [anon_sym_i64] = ACTIONS(945), + [anon_sym_u128] = ACTIONS(945), + [anon_sym_i128] = ACTIONS(945), + [anon_sym_u256] = ACTIONS(945), + [anon_sym_i256] = ACTIONS(945), + [anon_sym_b256] = ACTIONS(945), + [anon_sym_isize] = ACTIONS(945), + [anon_sym_usize] = ACTIONS(945), + [anon_sym_f32] = ACTIONS(945), + [anon_sym_f64] = ACTIONS(945), + [anon_sym_bool] = ACTIONS(945), + [anon_sym_char] = ACTIONS(945), + [anon_sym_str] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_contract] = ACTIONS(945), + [anon_sym_script] = ACTIONS(945), + [anon_sym_predicate] = ACTIONS(945), + [anon_sym_library] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_abi] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_configurable] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_default] = ACTIONS(945), + [anon_sym_mod] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_fn] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_impl] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_pub] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_storage] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_asm] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(943), + [anon_sym_COLON_COLON] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_yield] = ACTIONS(945), + [anon_sym_move] = ACTIONS(945), + [sym_integer_literal] = ACTIONS(943), + [aux_sym_string_literal_token1] = ACTIONS(943), + [sym_char_literal] = ACTIONS(943), + [anon_sym_true] = ACTIONS(945), + [anon_sym_false] = ACTIONS(945), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(936), - [sym_metavariable] = ACTIONS(934), - [sym_raw_string_literal] = ACTIONS(934), - [sym_float_literal] = ACTIONS(934), + [sym_self] = ACTIONS(945), + [sym_metavariable] = ACTIONS(943), + [sym_raw_string_literal] = ACTIONS(943), + [sym_float_literal] = ACTIONS(943), [sym_block_comment] = ACTIONS(3), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(938), - [sym_identifier] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_u8] = ACTIONS(940), - [anon_sym_i8] = ACTIONS(940), - [anon_sym_u16] = ACTIONS(940), - [anon_sym_i16] = ACTIONS(940), - [anon_sym_u32] = ACTIONS(940), - [anon_sym_i32] = ACTIONS(940), - [anon_sym_u64] = ACTIONS(940), - [anon_sym_i64] = ACTIONS(940), - [anon_sym_u128] = ACTIONS(940), - [anon_sym_i128] = ACTIONS(940), - [anon_sym_isize] = ACTIONS(940), - [anon_sym_usize] = ACTIONS(940), - [anon_sym_f32] = ACTIONS(940), - [anon_sym_f64] = ACTIONS(940), - [anon_sym_bool] = ACTIONS(940), - [anon_sym_char] = ACTIONS(940), - [anon_sym_str] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_contract] = ACTIONS(940), - [anon_sym_script] = ACTIONS(940), - [anon_sym_predicate] = ACTIONS(940), - [anon_sym_library] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_abi] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_configurable] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_dep] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_impl] = ACTIONS(940), - [anon_sym_let] = ACTIONS(940), - [anon_sym_match] = ACTIONS(940), - [anon_sym_pub] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_storage] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_trait] = ACTIONS(940), - [anon_sym_use] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_POUND] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_asm] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(938), - [anon_sym_COLON_COLON] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_yield] = ACTIONS(940), - [anon_sym_move] = ACTIONS(940), - [sym_integer_literal] = ACTIONS(938), - [aux_sym_string_literal_token1] = ACTIONS(938), - [sym_char_literal] = ACTIONS(938), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = ACTIONS(940), + [ts_builtin_sym_end] = ACTIONS(947), + [sym_identifier] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_u8] = ACTIONS(949), + [anon_sym_i8] = ACTIONS(949), + [anon_sym_u16] = ACTIONS(949), + [anon_sym_i16] = ACTIONS(949), + [anon_sym_u32] = ACTIONS(949), + [anon_sym_i32] = ACTIONS(949), + [anon_sym_u64] = ACTIONS(949), + [anon_sym_i64] = ACTIONS(949), + [anon_sym_u128] = ACTIONS(949), + [anon_sym_i128] = ACTIONS(949), + [anon_sym_u256] = ACTIONS(949), + [anon_sym_i256] = ACTIONS(949), + [anon_sym_b256] = ACTIONS(949), + [anon_sym_isize] = ACTIONS(949), + [anon_sym_usize] = ACTIONS(949), + [anon_sym_f32] = ACTIONS(949), + [anon_sym_f64] = ACTIONS(949), + [anon_sym_bool] = ACTIONS(949), + [anon_sym_char] = ACTIONS(949), + [anon_sym_str] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_contract] = ACTIONS(949), + [anon_sym_script] = ACTIONS(949), + [anon_sym_predicate] = ACTIONS(949), + [anon_sym_library] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_abi] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_configurable] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_default] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_fn] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_impl] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_pub] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_storage] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_trait] = ACTIONS(949), + [anon_sym_type] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_asm] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_COLON_COLON] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_DOT_DOT] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_yield] = ACTIONS(949), + [anon_sym_move] = ACTIONS(949), + [sym_integer_literal] = ACTIONS(947), + [aux_sym_string_literal_token1] = ACTIONS(947), + [sym_char_literal] = ACTIONS(947), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(940), - [sym_metavariable] = ACTIONS(938), - [sym_raw_string_literal] = ACTIONS(938), - [sym_float_literal] = ACTIONS(938), + [sym_self] = ACTIONS(949), + [sym_metavariable] = ACTIONS(947), + [sym_raw_string_literal] = ACTIONS(947), + [sym_float_literal] = ACTIONS(947), [sym_block_comment] = ACTIONS(3), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_contract] = ACTIONS(944), - [anon_sym_script] = ACTIONS(944), - [anon_sym_predicate] = ACTIONS(944), - [anon_sym_library] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_abi] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_configurable] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_dep] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_fn] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_impl] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_pub] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_storage] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_trait] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_asm] = ACTIONS(944), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_COLON_COLON] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(942), - [anon_sym_yield] = ACTIONS(944), - [anon_sym_move] = ACTIONS(944), - [sym_integer_literal] = ACTIONS(942), - [aux_sym_string_literal_token1] = ACTIONS(942), - [sym_char_literal] = ACTIONS(942), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = ACTIONS(944), + [ts_builtin_sym_end] = ACTIONS(951), + [sym_identifier] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_u8] = ACTIONS(953), + [anon_sym_i8] = ACTIONS(953), + [anon_sym_u16] = ACTIONS(953), + [anon_sym_i16] = ACTIONS(953), + [anon_sym_u32] = ACTIONS(953), + [anon_sym_i32] = ACTIONS(953), + [anon_sym_u64] = ACTIONS(953), + [anon_sym_i64] = ACTIONS(953), + [anon_sym_u128] = ACTIONS(953), + [anon_sym_i128] = ACTIONS(953), + [anon_sym_u256] = ACTIONS(953), + [anon_sym_i256] = ACTIONS(953), + [anon_sym_b256] = ACTIONS(953), + [anon_sym_isize] = ACTIONS(953), + [anon_sym_usize] = ACTIONS(953), + [anon_sym_f32] = ACTIONS(953), + [anon_sym_f64] = ACTIONS(953), + [anon_sym_bool] = ACTIONS(953), + [anon_sym_char] = ACTIONS(953), + [anon_sym_str] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_contract] = ACTIONS(953), + [anon_sym_script] = ACTIONS(953), + [anon_sym_predicate] = ACTIONS(953), + [anon_sym_library] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(953), + [anon_sym_abi] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_configurable] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_default] = ACTIONS(953), + [anon_sym_mod] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_impl] = ACTIONS(953), + [anon_sym_let] = ACTIONS(953), + [anon_sym_match] = ACTIONS(953), + [anon_sym_pub] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_storage] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_trait] = ACTIONS(953), + [anon_sym_type] = ACTIONS(953), + [anon_sym_use] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_asm] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(951), + [anon_sym_COLON_COLON] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_DOT_DOT] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_yield] = ACTIONS(953), + [anon_sym_move] = ACTIONS(953), + [sym_integer_literal] = ACTIONS(951), + [aux_sym_string_literal_token1] = ACTIONS(951), + [sym_char_literal] = ACTIONS(951), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(944), - [sym_metavariable] = ACTIONS(942), - [sym_raw_string_literal] = ACTIONS(942), - [sym_float_literal] = ACTIONS(942), + [sym_self] = ACTIONS(953), + [sym_metavariable] = ACTIONS(951), + [sym_raw_string_literal] = ACTIONS(951), + [sym_float_literal] = ACTIONS(951), [sym_block_comment] = ACTIONS(3), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(946), - [sym_identifier] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_u8] = ACTIONS(948), - [anon_sym_i8] = ACTIONS(948), - [anon_sym_u16] = ACTIONS(948), - [anon_sym_i16] = ACTIONS(948), - [anon_sym_u32] = ACTIONS(948), - [anon_sym_i32] = ACTIONS(948), - [anon_sym_u64] = ACTIONS(948), - [anon_sym_i64] = ACTIONS(948), - [anon_sym_u128] = ACTIONS(948), - [anon_sym_i128] = ACTIONS(948), - [anon_sym_isize] = ACTIONS(948), - [anon_sym_usize] = ACTIONS(948), - [anon_sym_f32] = ACTIONS(948), - [anon_sym_f64] = ACTIONS(948), - [anon_sym_bool] = ACTIONS(948), - [anon_sym_char] = ACTIONS(948), - [anon_sym_str] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_contract] = ACTIONS(948), - [anon_sym_script] = ACTIONS(948), - [anon_sym_predicate] = ACTIONS(948), - [anon_sym_library] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_abi] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_configurable] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_dep] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_fn] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_impl] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_pub] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_storage] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_trait] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_asm] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(946), - [anon_sym_COLON_COLON] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_DOT_DOT] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(946), - [anon_sym_yield] = ACTIONS(948), - [anon_sym_move] = ACTIONS(948), - [sym_integer_literal] = ACTIONS(946), - [aux_sym_string_literal_token1] = ACTIONS(946), - [sym_char_literal] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), + [ts_builtin_sym_end] = ACTIONS(955), + [sym_identifier] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_u8] = ACTIONS(957), + [anon_sym_i8] = ACTIONS(957), + [anon_sym_u16] = ACTIONS(957), + [anon_sym_i16] = ACTIONS(957), + [anon_sym_u32] = ACTIONS(957), + [anon_sym_i32] = ACTIONS(957), + [anon_sym_u64] = ACTIONS(957), + [anon_sym_i64] = ACTIONS(957), + [anon_sym_u128] = ACTIONS(957), + [anon_sym_i128] = ACTIONS(957), + [anon_sym_u256] = ACTIONS(957), + [anon_sym_i256] = ACTIONS(957), + [anon_sym_b256] = ACTIONS(957), + [anon_sym_isize] = ACTIONS(957), + [anon_sym_usize] = ACTIONS(957), + [anon_sym_f32] = ACTIONS(957), + [anon_sym_f64] = ACTIONS(957), + [anon_sym_bool] = ACTIONS(957), + [anon_sym_char] = ACTIONS(957), + [anon_sym_str] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_contract] = ACTIONS(957), + [anon_sym_script] = ACTIONS(957), + [anon_sym_predicate] = ACTIONS(957), + [anon_sym_library] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_abi] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_configurable] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_default] = ACTIONS(957), + [anon_sym_mod] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(957), + [anon_sym_fn] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_impl] = ACTIONS(957), + [anon_sym_let] = ACTIONS(957), + [anon_sym_match] = ACTIONS(957), + [anon_sym_pub] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_storage] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_trait] = ACTIONS(957), + [anon_sym_type] = ACTIONS(957), + [anon_sym_use] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [anon_sym_POUND] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_asm] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(955), + [anon_sym_COLON_COLON] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_DOT_DOT] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(955), + [anon_sym_yield] = ACTIONS(957), + [anon_sym_move] = ACTIONS(957), + [sym_integer_literal] = ACTIONS(955), + [aux_sym_string_literal_token1] = ACTIONS(955), + [sym_char_literal] = ACTIONS(955), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(948), - [sym_metavariable] = ACTIONS(946), - [sym_raw_string_literal] = ACTIONS(946), - [sym_float_literal] = ACTIONS(946), + [sym_self] = ACTIONS(957), + [sym_metavariable] = ACTIONS(955), + [sym_raw_string_literal] = ACTIONS(955), + [sym_float_literal] = ACTIONS(955), [sym_block_comment] = ACTIONS(3), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_u8] = ACTIONS(952), - [anon_sym_i8] = ACTIONS(952), - [anon_sym_u16] = ACTIONS(952), - [anon_sym_i16] = ACTIONS(952), - [anon_sym_u32] = ACTIONS(952), - [anon_sym_i32] = ACTIONS(952), - [anon_sym_u64] = ACTIONS(952), - [anon_sym_i64] = ACTIONS(952), - [anon_sym_u128] = ACTIONS(952), - [anon_sym_i128] = ACTIONS(952), - [anon_sym_isize] = ACTIONS(952), - [anon_sym_usize] = ACTIONS(952), - [anon_sym_f32] = ACTIONS(952), - [anon_sym_f64] = ACTIONS(952), - [anon_sym_bool] = ACTIONS(952), - [anon_sym_char] = ACTIONS(952), - [anon_sym_str] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_contract] = ACTIONS(952), - [anon_sym_script] = ACTIONS(952), - [anon_sym_predicate] = ACTIONS(952), - [anon_sym_library] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_abi] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_configurable] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_dep] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(952), - [anon_sym_let] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [anon_sym_pub] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_storage] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_trait] = ACTIONS(952), - [anon_sym_use] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_asm] = ACTIONS(952), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_COLON_COLON] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_yield] = ACTIONS(952), - [anon_sym_move] = ACTIONS(952), - [sym_integer_literal] = ACTIONS(950), - [aux_sym_string_literal_token1] = ACTIONS(950), - [sym_char_literal] = ACTIONS(950), - [anon_sym_true] = ACTIONS(952), - [anon_sym_false] = ACTIONS(952), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u128] = ACTIONS(961), + [anon_sym_i128] = ACTIONS(961), + [anon_sym_u256] = ACTIONS(961), + [anon_sym_i256] = ACTIONS(961), + [anon_sym_b256] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_char] = ACTIONS(961), + [anon_sym_str] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_contract] = ACTIONS(961), + [anon_sym_script] = ACTIONS(961), + [anon_sym_predicate] = ACTIONS(961), + [anon_sym_library] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(961), + [anon_sym_abi] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_configurable] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_mod] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_impl] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_pub] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_storage] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_asm] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_COLON_COLON] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_DOT_DOT] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_yield] = ACTIONS(961), + [anon_sym_move] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(959), + [aux_sym_string_literal_token1] = ACTIONS(959), + [sym_char_literal] = ACTIONS(959), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(952), - [sym_metavariable] = ACTIONS(950), - [sym_raw_string_literal] = ACTIONS(950), - [sym_float_literal] = ACTIONS(950), + [sym_self] = ACTIONS(961), + [sym_metavariable] = ACTIONS(959), + [sym_raw_string_literal] = ACTIONS(959), + [sym_float_literal] = ACTIONS(959), [sym_block_comment] = ACTIONS(3), }, [247] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_identifier] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_u8] = ACTIONS(956), - [anon_sym_i8] = ACTIONS(956), - [anon_sym_u16] = ACTIONS(956), - [anon_sym_i16] = ACTIONS(956), - [anon_sym_u32] = ACTIONS(956), - [anon_sym_i32] = ACTIONS(956), - [anon_sym_u64] = ACTIONS(956), - [anon_sym_i64] = ACTIONS(956), - [anon_sym_u128] = ACTIONS(956), - [anon_sym_i128] = ACTIONS(956), - [anon_sym_isize] = ACTIONS(956), - [anon_sym_usize] = ACTIONS(956), - [anon_sym_f32] = ACTIONS(956), - [anon_sym_f64] = ACTIONS(956), - [anon_sym_bool] = ACTIONS(956), - [anon_sym_char] = ACTIONS(956), - [anon_sym_str] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_contract] = ACTIONS(956), - [anon_sym_script] = ACTIONS(956), - [anon_sym_predicate] = ACTIONS(956), - [anon_sym_library] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_abi] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_configurable] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_dep] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_impl] = ACTIONS(956), - [anon_sym_let] = ACTIONS(956), - [anon_sym_match] = ACTIONS(956), - [anon_sym_pub] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_storage] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_trait] = ACTIONS(956), - [anon_sym_use] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_asm] = ACTIONS(956), - [anon_sym_LT] = ACTIONS(954), - [anon_sym_COLON_COLON] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_yield] = ACTIONS(956), - [anon_sym_move] = ACTIONS(956), - [sym_integer_literal] = ACTIONS(954), - [aux_sym_string_literal_token1] = ACTIONS(954), - [sym_char_literal] = ACTIONS(954), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = ACTIONS(956), + [ts_builtin_sym_end] = ACTIONS(963), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u128] = ACTIONS(965), + [anon_sym_i128] = ACTIONS(965), + [anon_sym_u256] = ACTIONS(965), + [anon_sym_i256] = ACTIONS(965), + [anon_sym_b256] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_char] = ACTIONS(965), + [anon_sym_str] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_contract] = ACTIONS(965), + [anon_sym_script] = ACTIONS(965), + [anon_sym_predicate] = ACTIONS(965), + [anon_sym_library] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_abi] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_configurable] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_mod] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_storage] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_trait] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_use] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_asm] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_COLON_COLON] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_yield] = ACTIONS(965), + [anon_sym_move] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(956), - [sym_metavariable] = ACTIONS(954), - [sym_raw_string_literal] = ACTIONS(954), - [sym_float_literal] = ACTIONS(954), + [sym_self] = ACTIONS(965), + [sym_metavariable] = ACTIONS(963), + [sym_raw_string_literal] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), [sym_block_comment] = ACTIONS(3), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_u8] = ACTIONS(960), - [anon_sym_i8] = ACTIONS(960), - [anon_sym_u16] = ACTIONS(960), - [anon_sym_i16] = ACTIONS(960), - [anon_sym_u32] = ACTIONS(960), - [anon_sym_i32] = ACTIONS(960), - [anon_sym_u64] = ACTIONS(960), - [anon_sym_i64] = ACTIONS(960), - [anon_sym_u128] = ACTIONS(960), - [anon_sym_i128] = ACTIONS(960), - [anon_sym_isize] = ACTIONS(960), - [anon_sym_usize] = ACTIONS(960), - [anon_sym_f32] = ACTIONS(960), - [anon_sym_f64] = ACTIONS(960), - [anon_sym_bool] = ACTIONS(960), - [anon_sym_char] = ACTIONS(960), - [anon_sym_str] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(958), - [anon_sym_contract] = ACTIONS(960), - [anon_sym_script] = ACTIONS(960), - [anon_sym_predicate] = ACTIONS(960), - [anon_sym_library] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_abi] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_configurable] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_dep] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_fn] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_impl] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_match] = ACTIONS(960), - [anon_sym_pub] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_storage] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_trait] = ACTIONS(960), - [anon_sym_use] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_asm] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_COLON_COLON] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PIPE] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_move] = ACTIONS(960), - [sym_integer_literal] = ACTIONS(958), - [aux_sym_string_literal_token1] = ACTIONS(958), - [sym_char_literal] = ACTIONS(958), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = ACTIONS(960), + [ts_builtin_sym_end] = ACTIONS(967), + [sym_identifier] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(969), + [anon_sym_i8] = ACTIONS(969), + [anon_sym_u16] = ACTIONS(969), + [anon_sym_i16] = ACTIONS(969), + [anon_sym_u32] = ACTIONS(969), + [anon_sym_i32] = ACTIONS(969), + [anon_sym_u64] = ACTIONS(969), + [anon_sym_i64] = ACTIONS(969), + [anon_sym_u128] = ACTIONS(969), + [anon_sym_i128] = ACTIONS(969), + [anon_sym_u256] = ACTIONS(969), + [anon_sym_i256] = ACTIONS(969), + [anon_sym_b256] = ACTIONS(969), + [anon_sym_isize] = ACTIONS(969), + [anon_sym_usize] = ACTIONS(969), + [anon_sym_f32] = ACTIONS(969), + [anon_sym_f64] = ACTIONS(969), + [anon_sym_bool] = ACTIONS(969), + [anon_sym_char] = ACTIONS(969), + [anon_sym_str] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_contract] = ACTIONS(969), + [anon_sym_script] = ACTIONS(969), + [anon_sym_predicate] = ACTIONS(969), + [anon_sym_library] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(969), + [anon_sym_abi] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_configurable] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_default] = ACTIONS(969), + [anon_sym_mod] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_impl] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_pub] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_storage] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_trait] = ACTIONS(969), + [anon_sym_type] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_asm] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_COLON_COLON] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_yield] = ACTIONS(969), + [anon_sym_move] = ACTIONS(969), + [sym_integer_literal] = ACTIONS(967), + [aux_sym_string_literal_token1] = ACTIONS(967), + [sym_char_literal] = ACTIONS(967), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(960), - [sym_metavariable] = ACTIONS(958), - [sym_raw_string_literal] = ACTIONS(958), - [sym_float_literal] = ACTIONS(958), + [sym_self] = ACTIONS(969), + [sym_metavariable] = ACTIONS(967), + [sym_raw_string_literal] = ACTIONS(967), + [sym_float_literal] = ACTIONS(967), [sym_block_comment] = ACTIONS(3), }, [249] = { - [ts_builtin_sym_end] = ACTIONS(962), - [sym_identifier] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_u8] = ACTIONS(964), - [anon_sym_i8] = ACTIONS(964), - [anon_sym_u16] = ACTIONS(964), - [anon_sym_i16] = ACTIONS(964), - [anon_sym_u32] = ACTIONS(964), - [anon_sym_i32] = ACTIONS(964), - [anon_sym_u64] = ACTIONS(964), - [anon_sym_i64] = ACTIONS(964), - [anon_sym_u128] = ACTIONS(964), - [anon_sym_i128] = ACTIONS(964), - [anon_sym_isize] = ACTIONS(964), - [anon_sym_usize] = ACTIONS(964), - [anon_sym_f32] = ACTIONS(964), - [anon_sym_f64] = ACTIONS(964), - [anon_sym_bool] = ACTIONS(964), - [anon_sym_char] = ACTIONS(964), - [anon_sym_str] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_contract] = ACTIONS(964), - [anon_sym_script] = ACTIONS(964), - [anon_sym_predicate] = ACTIONS(964), - [anon_sym_library] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_abi] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_configurable] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_dep] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_fn] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_impl] = ACTIONS(964), - [anon_sym_let] = ACTIONS(964), - [anon_sym_match] = ACTIONS(964), - [anon_sym_pub] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_storage] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_use] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_asm] = ACTIONS(964), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(964), - [anon_sym_move] = ACTIONS(964), - [sym_integer_literal] = ACTIONS(962), - [aux_sym_string_literal_token1] = ACTIONS(962), - [sym_char_literal] = ACTIONS(962), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), + [ts_builtin_sym_end] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_u8] = ACTIONS(973), + [anon_sym_i8] = ACTIONS(973), + [anon_sym_u16] = ACTIONS(973), + [anon_sym_i16] = ACTIONS(973), + [anon_sym_u32] = ACTIONS(973), + [anon_sym_i32] = ACTIONS(973), + [anon_sym_u64] = ACTIONS(973), + [anon_sym_i64] = ACTIONS(973), + [anon_sym_u128] = ACTIONS(973), + [anon_sym_i128] = ACTIONS(973), + [anon_sym_u256] = ACTIONS(973), + [anon_sym_i256] = ACTIONS(973), + [anon_sym_b256] = ACTIONS(973), + [anon_sym_isize] = ACTIONS(973), + [anon_sym_usize] = ACTIONS(973), + [anon_sym_f32] = ACTIONS(973), + [anon_sym_f64] = ACTIONS(973), + [anon_sym_bool] = ACTIONS(973), + [anon_sym_char] = ACTIONS(973), + [anon_sym_str] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_contract] = ACTIONS(973), + [anon_sym_script] = ACTIONS(973), + [anon_sym_predicate] = ACTIONS(973), + [anon_sym_library] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_abi] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_configurable] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_default] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_fn] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_impl] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_pub] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_storage] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_trait] = ACTIONS(973), + [anon_sym_type] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_asm] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_move] = ACTIONS(973), + [sym_integer_literal] = ACTIONS(971), + [aux_sym_string_literal_token1] = ACTIONS(971), + [sym_char_literal] = ACTIONS(971), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(964), - [sym_metavariable] = ACTIONS(962), - [sym_raw_string_literal] = ACTIONS(962), - [sym_float_literal] = ACTIONS(962), + [sym_self] = ACTIONS(973), + [sym_metavariable] = ACTIONS(971), + [sym_raw_string_literal] = ACTIONS(971), + [sym_float_literal] = ACTIONS(971), [sym_block_comment] = ACTIONS(3), }, [250] = { - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_u8] = ACTIONS(968), - [anon_sym_i8] = ACTIONS(968), - [anon_sym_u16] = ACTIONS(968), - [anon_sym_i16] = ACTIONS(968), - [anon_sym_u32] = ACTIONS(968), - [anon_sym_i32] = ACTIONS(968), - [anon_sym_u64] = ACTIONS(968), - [anon_sym_i64] = ACTIONS(968), - [anon_sym_u128] = ACTIONS(968), - [anon_sym_i128] = ACTIONS(968), - [anon_sym_isize] = ACTIONS(968), - [anon_sym_usize] = ACTIONS(968), - [anon_sym_f32] = ACTIONS(968), - [anon_sym_f64] = ACTIONS(968), - [anon_sym_bool] = ACTIONS(968), - [anon_sym_char] = ACTIONS(968), - [anon_sym_str] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_contract] = ACTIONS(968), - [anon_sym_script] = ACTIONS(968), - [anon_sym_predicate] = ACTIONS(968), - [anon_sym_library] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_abi] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_configurable] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_dep] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_fn] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_impl] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_match] = ACTIONS(968), - [anon_sym_pub] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_storage] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_trait] = ACTIONS(968), - [anon_sym_use] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_asm] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_yield] = ACTIONS(968), - [anon_sym_move] = ACTIONS(968), - [sym_integer_literal] = ACTIONS(966), - [aux_sym_string_literal_token1] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), + [ts_builtin_sym_end] = ACTIONS(975), + [sym_identifier] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_u8] = ACTIONS(977), + [anon_sym_i8] = ACTIONS(977), + [anon_sym_u16] = ACTIONS(977), + [anon_sym_i16] = ACTIONS(977), + [anon_sym_u32] = ACTIONS(977), + [anon_sym_i32] = ACTIONS(977), + [anon_sym_u64] = ACTIONS(977), + [anon_sym_i64] = ACTIONS(977), + [anon_sym_u128] = ACTIONS(977), + [anon_sym_i128] = ACTIONS(977), + [anon_sym_u256] = ACTIONS(977), + [anon_sym_i256] = ACTIONS(977), + [anon_sym_b256] = ACTIONS(977), + [anon_sym_isize] = ACTIONS(977), + [anon_sym_usize] = ACTIONS(977), + [anon_sym_f32] = ACTIONS(977), + [anon_sym_f64] = ACTIONS(977), + [anon_sym_bool] = ACTIONS(977), + [anon_sym_char] = ACTIONS(977), + [anon_sym_str] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_contract] = ACTIONS(977), + [anon_sym_script] = ACTIONS(977), + [anon_sym_predicate] = ACTIONS(977), + [anon_sym_library] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_abi] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_configurable] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_default] = ACTIONS(977), + [anon_sym_mod] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_fn] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_impl] = ACTIONS(977), + [anon_sym_let] = ACTIONS(977), + [anon_sym_match] = ACTIONS(977), + [anon_sym_pub] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_storage] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_trait] = ACTIONS(977), + [anon_sym_type] = ACTIONS(977), + [anon_sym_use] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_asm] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_COLON_COLON] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_yield] = ACTIONS(977), + [anon_sym_move] = ACTIONS(977), + [sym_integer_literal] = ACTIONS(975), + [aux_sym_string_literal_token1] = ACTIONS(975), + [sym_char_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(968), - [sym_metavariable] = ACTIONS(966), - [sym_raw_string_literal] = ACTIONS(966), - [sym_float_literal] = ACTIONS(966), + [sym_self] = ACTIONS(977), + [sym_metavariable] = ACTIONS(975), + [sym_raw_string_literal] = ACTIONS(975), + [sym_float_literal] = ACTIONS(975), [sym_block_comment] = ACTIONS(3), }, [251] = { - [ts_builtin_sym_end] = ACTIONS(970), - [sym_identifier] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_u8] = ACTIONS(972), - [anon_sym_i8] = ACTIONS(972), - [anon_sym_u16] = ACTIONS(972), - [anon_sym_i16] = ACTIONS(972), - [anon_sym_u32] = ACTIONS(972), - [anon_sym_i32] = ACTIONS(972), - [anon_sym_u64] = ACTIONS(972), - [anon_sym_i64] = ACTIONS(972), - [anon_sym_u128] = ACTIONS(972), - [anon_sym_i128] = ACTIONS(972), - [anon_sym_isize] = ACTIONS(972), - [anon_sym_usize] = ACTIONS(972), - [anon_sym_f32] = ACTIONS(972), - [anon_sym_f64] = ACTIONS(972), - [anon_sym_bool] = ACTIONS(972), - [anon_sym_char] = ACTIONS(972), - [anon_sym_str] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_contract] = ACTIONS(972), - [anon_sym_script] = ACTIONS(972), - [anon_sym_predicate] = ACTIONS(972), - [anon_sym_library] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_abi] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_configurable] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_dep] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_fn] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_impl] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_pub] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_storage] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_trait] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_asm] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_COLON_COLON] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_move] = ACTIONS(972), - [sym_integer_literal] = ACTIONS(970), - [aux_sym_string_literal_token1] = ACTIONS(970), - [sym_char_literal] = ACTIONS(970), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u128] = ACTIONS(981), + [anon_sym_i128] = ACTIONS(981), + [anon_sym_u256] = ACTIONS(981), + [anon_sym_i256] = ACTIONS(981), + [anon_sym_b256] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_char] = ACTIONS(981), + [anon_sym_str] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_contract] = ACTIONS(981), + [anon_sym_script] = ACTIONS(981), + [anon_sym_predicate] = ACTIONS(981), + [anon_sym_library] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_abi] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_configurable] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_mod] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_fn] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_impl] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_pub] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_storage] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_use] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_asm] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_COLON_COLON] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_DOT_DOT] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_move] = ACTIONS(981), + [sym_integer_literal] = ACTIONS(979), + [aux_sym_string_literal_token1] = ACTIONS(979), + [sym_char_literal] = ACTIONS(979), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(972), - [sym_metavariable] = ACTIONS(970), - [sym_raw_string_literal] = ACTIONS(970), - [sym_float_literal] = ACTIONS(970), + [sym_self] = ACTIONS(981), + [sym_metavariable] = ACTIONS(979), + [sym_raw_string_literal] = ACTIONS(979), + [sym_float_literal] = ACTIONS(979), [sym_block_comment] = ACTIONS(3), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(974), - [sym_identifier] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_u8] = ACTIONS(976), - [anon_sym_i8] = ACTIONS(976), - [anon_sym_u16] = ACTIONS(976), - [anon_sym_i16] = ACTIONS(976), - [anon_sym_u32] = ACTIONS(976), - [anon_sym_i32] = ACTIONS(976), - [anon_sym_u64] = ACTIONS(976), - [anon_sym_i64] = ACTIONS(976), - [anon_sym_u128] = ACTIONS(976), - [anon_sym_i128] = ACTIONS(976), - [anon_sym_isize] = ACTIONS(976), - [anon_sym_usize] = ACTIONS(976), - [anon_sym_f32] = ACTIONS(976), - [anon_sym_f64] = ACTIONS(976), - [anon_sym_bool] = ACTIONS(976), - [anon_sym_char] = ACTIONS(976), - [anon_sym_str] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_contract] = ACTIONS(976), - [anon_sym_script] = ACTIONS(976), - [anon_sym_predicate] = ACTIONS(976), - [anon_sym_library] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_abi] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_configurable] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_dep] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_fn] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_impl] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_pub] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_storage] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_trait] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_asm] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_COLON_COLON] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_yield] = ACTIONS(976), - [anon_sym_move] = ACTIONS(976), - [sym_integer_literal] = ACTIONS(974), - [aux_sym_string_literal_token1] = ACTIONS(974), - [sym_char_literal] = ACTIONS(974), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = ACTIONS(976), + [ts_builtin_sym_end] = ACTIONS(983), + [sym_identifier] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u128] = ACTIONS(985), + [anon_sym_i128] = ACTIONS(985), + [anon_sym_u256] = ACTIONS(985), + [anon_sym_i256] = ACTIONS(985), + [anon_sym_b256] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_char] = ACTIONS(985), + [anon_sym_str] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_contract] = ACTIONS(985), + [anon_sym_script] = ACTIONS(985), + [anon_sym_predicate] = ACTIONS(985), + [anon_sym_library] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_abi] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_configurable] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_fn] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_impl] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_pub] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_storage] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_trait] = ACTIONS(985), + [anon_sym_type] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_asm] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_COLON_COLON] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_DOT_DOT] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_yield] = ACTIONS(985), + [anon_sym_move] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(983), + [aux_sym_string_literal_token1] = ACTIONS(983), + [sym_char_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(976), - [sym_metavariable] = ACTIONS(974), - [sym_raw_string_literal] = ACTIONS(974), - [sym_float_literal] = ACTIONS(974), + [sym_self] = ACTIONS(985), + [sym_metavariable] = ACTIONS(983), + [sym_raw_string_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(983), [sym_block_comment] = ACTIONS(3), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(978), - [sym_identifier] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_u8] = ACTIONS(980), - [anon_sym_i8] = ACTIONS(980), - [anon_sym_u16] = ACTIONS(980), - [anon_sym_i16] = ACTIONS(980), - [anon_sym_u32] = ACTIONS(980), - [anon_sym_i32] = ACTIONS(980), - [anon_sym_u64] = ACTIONS(980), - [anon_sym_i64] = ACTIONS(980), - [anon_sym_u128] = ACTIONS(980), - [anon_sym_i128] = ACTIONS(980), - [anon_sym_isize] = ACTIONS(980), - [anon_sym_usize] = ACTIONS(980), - [anon_sym_f32] = ACTIONS(980), - [anon_sym_f64] = ACTIONS(980), - [anon_sym_bool] = ACTIONS(980), - [anon_sym_char] = ACTIONS(980), - [anon_sym_str] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_contract] = ACTIONS(980), - [anon_sym_script] = ACTIONS(980), - [anon_sym_predicate] = ACTIONS(980), - [anon_sym_library] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_abi] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_configurable] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_dep] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_fn] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_impl] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_pub] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_storage] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_trait] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_asm] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(978), - [anon_sym_COLON_COLON] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_yield] = ACTIONS(980), - [anon_sym_move] = ACTIONS(980), - [sym_integer_literal] = ACTIONS(978), - [aux_sym_string_literal_token1] = ACTIONS(978), - [sym_char_literal] = ACTIONS(978), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), + [ts_builtin_sym_end] = ACTIONS(987), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(989), + [anon_sym_i8] = ACTIONS(989), + [anon_sym_u16] = ACTIONS(989), + [anon_sym_i16] = ACTIONS(989), + [anon_sym_u32] = ACTIONS(989), + [anon_sym_i32] = ACTIONS(989), + [anon_sym_u64] = ACTIONS(989), + [anon_sym_i64] = ACTIONS(989), + [anon_sym_u128] = ACTIONS(989), + [anon_sym_i128] = ACTIONS(989), + [anon_sym_u256] = ACTIONS(989), + [anon_sym_i256] = ACTIONS(989), + [anon_sym_b256] = ACTIONS(989), + [anon_sym_isize] = ACTIONS(989), + [anon_sym_usize] = ACTIONS(989), + [anon_sym_f32] = ACTIONS(989), + [anon_sym_f64] = ACTIONS(989), + [anon_sym_bool] = ACTIONS(989), + [anon_sym_char] = ACTIONS(989), + [anon_sym_str] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_contract] = ACTIONS(989), + [anon_sym_script] = ACTIONS(989), + [anon_sym_predicate] = ACTIONS(989), + [anon_sym_library] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_abi] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_configurable] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_mod] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_fn] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_impl] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_pub] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_storage] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_trait] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_use] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_POUND] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_asm] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_COLON_COLON] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_DOT_DOT] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_yield] = ACTIONS(989), + [anon_sym_move] = ACTIONS(989), + [sym_integer_literal] = ACTIONS(987), + [aux_sym_string_literal_token1] = ACTIONS(987), + [sym_char_literal] = ACTIONS(987), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(980), - [sym_metavariable] = ACTIONS(978), - [sym_raw_string_literal] = ACTIONS(978), - [sym_float_literal] = ACTIONS(978), + [sym_self] = ACTIONS(989), + [sym_metavariable] = ACTIONS(987), + [sym_raw_string_literal] = ACTIONS(987), + [sym_float_literal] = ACTIONS(987), [sym_block_comment] = ACTIONS(3), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_u8] = ACTIONS(456), - [anon_sym_i8] = ACTIONS(456), - [anon_sym_u16] = ACTIONS(456), - [anon_sym_i16] = ACTIONS(456), - [anon_sym_u32] = ACTIONS(456), - [anon_sym_i32] = ACTIONS(456), - [anon_sym_u64] = ACTIONS(456), - [anon_sym_i64] = ACTIONS(456), - [anon_sym_u128] = ACTIONS(456), - [anon_sym_i128] = ACTIONS(456), - [anon_sym_isize] = ACTIONS(456), - [anon_sym_usize] = ACTIONS(456), - [anon_sym_f32] = ACTIONS(456), - [anon_sym_f64] = ACTIONS(456), - [anon_sym_bool] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_str] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_contract] = ACTIONS(456), - [anon_sym_script] = ACTIONS(456), - [anon_sym_predicate] = ACTIONS(456), - [anon_sym_library] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_SQUOTE] = ACTIONS(456), - [anon_sym_abi] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_configurable] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_dep] = ACTIONS(456), - [anon_sym_enum] = ACTIONS(456), - [anon_sym_fn] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_impl] = ACTIONS(456), - [anon_sym_let] = ACTIONS(456), - [anon_sym_match] = ACTIONS(456), - [anon_sym_pub] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_storage] = ACTIONS(456), - [anon_sym_struct] = ACTIONS(456), - [anon_sym_trait] = ACTIONS(456), - [anon_sym_use] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_POUND] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_asm] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_COLON_COLON] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(454), - [anon_sym_DOT_DOT] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(454), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_move] = ACTIONS(456), - [sym_integer_literal] = ACTIONS(454), - [aux_sym_string_literal_token1] = ACTIONS(454), - [sym_char_literal] = ACTIONS(454), - [anon_sym_true] = ACTIONS(456), - [anon_sym_false] = ACTIONS(456), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u128] = ACTIONS(993), + [anon_sym_i128] = ACTIONS(993), + [anon_sym_u256] = ACTIONS(993), + [anon_sym_i256] = ACTIONS(993), + [anon_sym_b256] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_char] = ACTIONS(993), + [anon_sym_str] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_contract] = ACTIONS(993), + [anon_sym_script] = ACTIONS(993), + [anon_sym_predicate] = ACTIONS(993), + [anon_sym_library] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_abi] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_configurable] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_mod] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_fn] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_impl] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_pub] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_storage] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_trait] = ACTIONS(993), + [anon_sym_type] = ACTIONS(993), + [anon_sym_use] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_asm] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_move] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(991), + [aux_sym_string_literal_token1] = ACTIONS(991), + [sym_char_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(456), - [sym_metavariable] = ACTIONS(454), - [sym_raw_string_literal] = ACTIONS(454), - [sym_float_literal] = ACTIONS(454), + [sym_self] = ACTIONS(993), + [sym_metavariable] = ACTIONS(991), + [sym_raw_string_literal] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), [sym_block_comment] = ACTIONS(3), }, [255] = { - [ts_builtin_sym_end] = ACTIONS(982), - [sym_identifier] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_u8] = ACTIONS(984), - [anon_sym_i8] = ACTIONS(984), - [anon_sym_u16] = ACTIONS(984), - [anon_sym_i16] = ACTIONS(984), - [anon_sym_u32] = ACTIONS(984), - [anon_sym_i32] = ACTIONS(984), - [anon_sym_u64] = ACTIONS(984), - [anon_sym_i64] = ACTIONS(984), - [anon_sym_u128] = ACTIONS(984), - [anon_sym_i128] = ACTIONS(984), - [anon_sym_isize] = ACTIONS(984), - [anon_sym_usize] = ACTIONS(984), - [anon_sym_f32] = ACTIONS(984), - [anon_sym_f64] = ACTIONS(984), - [anon_sym_bool] = ACTIONS(984), - [anon_sym_char] = ACTIONS(984), - [anon_sym_str] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_contract] = ACTIONS(984), - [anon_sym_script] = ACTIONS(984), - [anon_sym_predicate] = ACTIONS(984), - [anon_sym_library] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_abi] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_configurable] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_dep] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_fn] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_impl] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_pub] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_storage] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_trait] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_asm] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_yield] = ACTIONS(984), - [anon_sym_move] = ACTIONS(984), - [sym_integer_literal] = ACTIONS(982), - [aux_sym_string_literal_token1] = ACTIONS(982), - [sym_char_literal] = ACTIONS(982), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = ACTIONS(984), + [ts_builtin_sym_end] = ACTIONS(995), + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u128] = ACTIONS(997), + [anon_sym_i128] = ACTIONS(997), + [anon_sym_u256] = ACTIONS(997), + [anon_sym_i256] = ACTIONS(997), + [anon_sym_b256] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_char] = ACTIONS(997), + [anon_sym_str] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_contract] = ACTIONS(997), + [anon_sym_script] = ACTIONS(997), + [anon_sym_predicate] = ACTIONS(997), + [anon_sym_library] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_abi] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_configurable] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_mod] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_fn] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_impl] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_pub] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_storage] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_trait] = ACTIONS(997), + [anon_sym_type] = ACTIONS(997), + [anon_sym_use] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_POUND] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_asm] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_COLON_COLON] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_DOT_DOT] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(995), + [anon_sym_yield] = ACTIONS(997), + [anon_sym_move] = ACTIONS(997), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(995), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(984), - [sym_metavariable] = ACTIONS(982), - [sym_raw_string_literal] = ACTIONS(982), - [sym_float_literal] = ACTIONS(982), + [sym_self] = ACTIONS(997), + [sym_metavariable] = ACTIONS(995), + [sym_raw_string_literal] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), [sym_block_comment] = ACTIONS(3), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_u8] = ACTIONS(988), - [anon_sym_i8] = ACTIONS(988), - [anon_sym_u16] = ACTIONS(988), - [anon_sym_i16] = ACTIONS(988), - [anon_sym_u32] = ACTIONS(988), - [anon_sym_i32] = ACTIONS(988), - [anon_sym_u64] = ACTIONS(988), - [anon_sym_i64] = ACTIONS(988), - [anon_sym_u128] = ACTIONS(988), - [anon_sym_i128] = ACTIONS(988), - [anon_sym_isize] = ACTIONS(988), - [anon_sym_usize] = ACTIONS(988), - [anon_sym_f32] = ACTIONS(988), - [anon_sym_f64] = ACTIONS(988), - [anon_sym_bool] = ACTIONS(988), - [anon_sym_char] = ACTIONS(988), - [anon_sym_str] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_contract] = ACTIONS(988), - [anon_sym_script] = ACTIONS(988), - [anon_sym_predicate] = ACTIONS(988), - [anon_sym_library] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_abi] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_configurable] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_dep] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_fn] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_impl] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_pub] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_storage] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_trait] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_asm] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_yield] = ACTIONS(988), - [anon_sym_move] = ACTIONS(988), - [sym_integer_literal] = ACTIONS(986), - [aux_sym_string_literal_token1] = ACTIONS(986), - [sym_char_literal] = ACTIONS(986), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), + [ts_builtin_sym_end] = ACTIONS(999), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(1001), + [anon_sym_i8] = ACTIONS(1001), + [anon_sym_u16] = ACTIONS(1001), + [anon_sym_i16] = ACTIONS(1001), + [anon_sym_u32] = ACTIONS(1001), + [anon_sym_i32] = ACTIONS(1001), + [anon_sym_u64] = ACTIONS(1001), + [anon_sym_i64] = ACTIONS(1001), + [anon_sym_u128] = ACTIONS(1001), + [anon_sym_i128] = ACTIONS(1001), + [anon_sym_u256] = ACTIONS(1001), + [anon_sym_i256] = ACTIONS(1001), + [anon_sym_b256] = ACTIONS(1001), + [anon_sym_isize] = ACTIONS(1001), + [anon_sym_usize] = ACTIONS(1001), + [anon_sym_f32] = ACTIONS(1001), + [anon_sym_f64] = ACTIONS(1001), + [anon_sym_bool] = ACTIONS(1001), + [anon_sym_char] = ACTIONS(1001), + [anon_sym_str] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_contract] = ACTIONS(1001), + [anon_sym_script] = ACTIONS(1001), + [anon_sym_predicate] = ACTIONS(1001), + [anon_sym_library] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_abi] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_configurable] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_mod] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_fn] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_impl] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(1001), + [anon_sym_pub] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_storage] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_trait] = ACTIONS(1001), + [anon_sym_type] = ACTIONS(1001), + [anon_sym_use] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [anon_sym_POUND] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_asm] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_DOT_DOT] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_yield] = ACTIONS(1001), + [anon_sym_move] = ACTIONS(1001), + [sym_integer_literal] = ACTIONS(999), + [aux_sym_string_literal_token1] = ACTIONS(999), + [sym_char_literal] = ACTIONS(999), + [anon_sym_true] = ACTIONS(1001), + [anon_sym_false] = ACTIONS(1001), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(988), - [sym_metavariable] = ACTIONS(986), - [sym_raw_string_literal] = ACTIONS(986), - [sym_float_literal] = ACTIONS(986), + [sym_self] = ACTIONS(1001), + [sym_metavariable] = ACTIONS(999), + [sym_raw_string_literal] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), [sym_block_comment] = ACTIONS(3), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_u8] = ACTIONS(992), - [anon_sym_i8] = ACTIONS(992), - [anon_sym_u16] = ACTIONS(992), - [anon_sym_i16] = ACTIONS(992), - [anon_sym_u32] = ACTIONS(992), - [anon_sym_i32] = ACTIONS(992), - [anon_sym_u64] = ACTIONS(992), - [anon_sym_i64] = ACTIONS(992), - [anon_sym_u128] = ACTIONS(992), - [anon_sym_i128] = ACTIONS(992), - [anon_sym_isize] = ACTIONS(992), - [anon_sym_usize] = ACTIONS(992), - [anon_sym_f32] = ACTIONS(992), - [anon_sym_f64] = ACTIONS(992), - [anon_sym_bool] = ACTIONS(992), - [anon_sym_char] = ACTIONS(992), - [anon_sym_str] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_contract] = ACTIONS(992), - [anon_sym_script] = ACTIONS(992), - [anon_sym_predicate] = ACTIONS(992), - [anon_sym_library] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_abi] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_configurable] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_dep] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_fn] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_impl] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_pub] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_storage] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_trait] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_asm] = ACTIONS(992), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_move] = ACTIONS(992), - [sym_integer_literal] = ACTIONS(990), - [aux_sym_string_literal_token1] = ACTIONS(990), - [sym_char_literal] = ACTIONS(990), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1005), + [anon_sym_i8] = ACTIONS(1005), + [anon_sym_u16] = ACTIONS(1005), + [anon_sym_i16] = ACTIONS(1005), + [anon_sym_u32] = ACTIONS(1005), + [anon_sym_i32] = ACTIONS(1005), + [anon_sym_u64] = ACTIONS(1005), + [anon_sym_i64] = ACTIONS(1005), + [anon_sym_u128] = ACTIONS(1005), + [anon_sym_i128] = ACTIONS(1005), + [anon_sym_u256] = ACTIONS(1005), + [anon_sym_i256] = ACTIONS(1005), + [anon_sym_b256] = ACTIONS(1005), + [anon_sym_isize] = ACTIONS(1005), + [anon_sym_usize] = ACTIONS(1005), + [anon_sym_f32] = ACTIONS(1005), + [anon_sym_f64] = ACTIONS(1005), + [anon_sym_bool] = ACTIONS(1005), + [anon_sym_char] = ACTIONS(1005), + [anon_sym_str] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_contract] = ACTIONS(1005), + [anon_sym_script] = ACTIONS(1005), + [anon_sym_predicate] = ACTIONS(1005), + [anon_sym_library] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1005), + [anon_sym_abi] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_configurable] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1005), + [anon_sym_mod] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [anon_sym_fn] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_impl] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_pub] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_storage] = ACTIONS(1005), + [anon_sym_struct] = ACTIONS(1005), + [anon_sym_trait] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_asm] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_COLON_COLON] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_move] = ACTIONS(1005), + [sym_integer_literal] = ACTIONS(1003), + [aux_sym_string_literal_token1] = ACTIONS(1003), + [sym_char_literal] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1005), + [anon_sym_false] = ACTIONS(1005), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(992), - [sym_metavariable] = ACTIONS(990), - [sym_raw_string_literal] = ACTIONS(990), - [sym_float_literal] = ACTIONS(990), + [sym_self] = ACTIONS(1005), + [sym_metavariable] = ACTIONS(1003), + [sym_raw_string_literal] = ACTIONS(1003), + [sym_float_literal] = ACTIONS(1003), [sym_block_comment] = ACTIONS(3), }, [258] = { - [ts_builtin_sym_end] = ACTIONS(430), - [sym_identifier] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_u8] = ACTIONS(432), - [anon_sym_i8] = ACTIONS(432), - [anon_sym_u16] = ACTIONS(432), - [anon_sym_i16] = ACTIONS(432), - [anon_sym_u32] = ACTIONS(432), - [anon_sym_i32] = ACTIONS(432), - [anon_sym_u64] = ACTIONS(432), - [anon_sym_i64] = ACTIONS(432), - [anon_sym_u128] = ACTIONS(432), - [anon_sym_i128] = ACTIONS(432), - [anon_sym_isize] = ACTIONS(432), - [anon_sym_usize] = ACTIONS(432), - [anon_sym_f32] = ACTIONS(432), - [anon_sym_f64] = ACTIONS(432), - [anon_sym_bool] = ACTIONS(432), - [anon_sym_char] = ACTIONS(432), - [anon_sym_str] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(430), - [anon_sym_contract] = ACTIONS(432), - [anon_sym_script] = ACTIONS(432), - [anon_sym_predicate] = ACTIONS(432), - [anon_sym_library] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_abi] = ACTIONS(432), - [anon_sym_break] = ACTIONS(432), - [anon_sym_configurable] = ACTIONS(432), - [anon_sym_const] = ACTIONS(432), - [anon_sym_continue] = ACTIONS(432), - [anon_sym_default] = ACTIONS(432), - [anon_sym_dep] = ACTIONS(432), - [anon_sym_enum] = ACTIONS(432), - [anon_sym_fn] = ACTIONS(432), - [anon_sym_for] = ACTIONS(432), - [anon_sym_if] = ACTIONS(432), - [anon_sym_impl] = ACTIONS(432), - [anon_sym_let] = ACTIONS(432), - [anon_sym_match] = ACTIONS(432), - [anon_sym_pub] = ACTIONS(432), - [anon_sym_return] = ACTIONS(432), - [anon_sym_storage] = ACTIONS(432), - [anon_sym_struct] = ACTIONS(432), - [anon_sym_trait] = ACTIONS(432), - [anon_sym_use] = ACTIONS(432), - [anon_sym_while] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(430), - [anon_sym_asm] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_COLON_COLON] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(430), - [anon_sym_DOT_DOT] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(430), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(432), - [anon_sym_move] = ACTIONS(432), - [sym_integer_literal] = ACTIONS(430), - [aux_sym_string_literal_token1] = ACTIONS(430), - [sym_char_literal] = ACTIONS(430), - [anon_sym_true] = ACTIONS(432), - [anon_sym_false] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_u8] = ACTIONS(1009), + [anon_sym_i8] = ACTIONS(1009), + [anon_sym_u16] = ACTIONS(1009), + [anon_sym_i16] = ACTIONS(1009), + [anon_sym_u32] = ACTIONS(1009), + [anon_sym_i32] = ACTIONS(1009), + [anon_sym_u64] = ACTIONS(1009), + [anon_sym_i64] = ACTIONS(1009), + [anon_sym_u128] = ACTIONS(1009), + [anon_sym_i128] = ACTIONS(1009), + [anon_sym_u256] = ACTIONS(1009), + [anon_sym_i256] = ACTIONS(1009), + [anon_sym_b256] = ACTIONS(1009), + [anon_sym_isize] = ACTIONS(1009), + [anon_sym_usize] = ACTIONS(1009), + [anon_sym_f32] = ACTIONS(1009), + [anon_sym_f64] = ACTIONS(1009), + [anon_sym_bool] = ACTIONS(1009), + [anon_sym_char] = ACTIONS(1009), + [anon_sym_str] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_contract] = ACTIONS(1009), + [anon_sym_script] = ACTIONS(1009), + [anon_sym_predicate] = ACTIONS(1009), + [anon_sym_library] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1009), + [anon_sym_abi] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_configurable] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_fn] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_impl] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_match] = ACTIONS(1009), + [anon_sym_pub] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_storage] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_trait] = ACTIONS(1009), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_use] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_POUND] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_asm] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_COLON_COLON] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_yield] = ACTIONS(1009), + [anon_sym_move] = ACTIONS(1009), + [sym_integer_literal] = ACTIONS(1007), + [aux_sym_string_literal_token1] = ACTIONS(1007), + [sym_char_literal] = ACTIONS(1007), + [anon_sym_true] = ACTIONS(1009), + [anon_sym_false] = ACTIONS(1009), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(432), - [sym_metavariable] = ACTIONS(430), - [sym_raw_string_literal] = ACTIONS(430), - [sym_float_literal] = ACTIONS(430), + [sym_self] = ACTIONS(1009), + [sym_metavariable] = ACTIONS(1007), + [sym_raw_string_literal] = ACTIONS(1007), + [sym_float_literal] = ACTIONS(1007), [sym_block_comment] = ACTIONS(3), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(994), - [sym_identifier] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_u8] = ACTIONS(996), - [anon_sym_i8] = ACTIONS(996), - [anon_sym_u16] = ACTIONS(996), - [anon_sym_i16] = ACTIONS(996), - [anon_sym_u32] = ACTIONS(996), - [anon_sym_i32] = ACTIONS(996), - [anon_sym_u64] = ACTIONS(996), - [anon_sym_i64] = ACTIONS(996), - [anon_sym_u128] = ACTIONS(996), - [anon_sym_i128] = ACTIONS(996), - [anon_sym_isize] = ACTIONS(996), - [anon_sym_usize] = ACTIONS(996), - [anon_sym_f32] = ACTIONS(996), - [anon_sym_f64] = ACTIONS(996), - [anon_sym_bool] = ACTIONS(996), - [anon_sym_char] = ACTIONS(996), - [anon_sym_str] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_contract] = ACTIONS(996), - [anon_sym_script] = ACTIONS(996), - [anon_sym_predicate] = ACTIONS(996), - [anon_sym_library] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_abi] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_configurable] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_dep] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_fn] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_impl] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_pub] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_storage] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_trait] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_asm] = ACTIONS(996), - [anon_sym_LT] = ACTIONS(994), - [anon_sym_COLON_COLON] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_yield] = ACTIONS(996), - [anon_sym_move] = ACTIONS(996), - [sym_integer_literal] = ACTIONS(994), - [aux_sym_string_literal_token1] = ACTIONS(994), - [sym_char_literal] = ACTIONS(994), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1011), + [sym_identifier] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_u8] = ACTIONS(1013), + [anon_sym_i8] = ACTIONS(1013), + [anon_sym_u16] = ACTIONS(1013), + [anon_sym_i16] = ACTIONS(1013), + [anon_sym_u32] = ACTIONS(1013), + [anon_sym_i32] = ACTIONS(1013), + [anon_sym_u64] = ACTIONS(1013), + [anon_sym_i64] = ACTIONS(1013), + [anon_sym_u128] = ACTIONS(1013), + [anon_sym_i128] = ACTIONS(1013), + [anon_sym_u256] = ACTIONS(1013), + [anon_sym_i256] = ACTIONS(1013), + [anon_sym_b256] = ACTIONS(1013), + [anon_sym_isize] = ACTIONS(1013), + [anon_sym_usize] = ACTIONS(1013), + [anon_sym_f32] = ACTIONS(1013), + [anon_sym_f64] = ACTIONS(1013), + [anon_sym_bool] = ACTIONS(1013), + [anon_sym_char] = ACTIONS(1013), + [anon_sym_str] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_contract] = ACTIONS(1013), + [anon_sym_script] = ACTIONS(1013), + [anon_sym_predicate] = ACTIONS(1013), + [anon_sym_library] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1013), + [anon_sym_abi] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_configurable] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_mod] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_fn] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_impl] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_pub] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_storage] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_trait] = ACTIONS(1013), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_use] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_asm] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1011), + [anon_sym_COLON_COLON] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_move] = ACTIONS(1013), + [sym_integer_literal] = ACTIONS(1011), + [aux_sym_string_literal_token1] = ACTIONS(1011), + [sym_char_literal] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(996), - [sym_metavariable] = ACTIONS(994), - [sym_raw_string_literal] = ACTIONS(994), - [sym_float_literal] = ACTIONS(994), + [sym_self] = ACTIONS(1013), + [sym_metavariable] = ACTIONS(1011), + [sym_raw_string_literal] = ACTIONS(1011), + [sym_float_literal] = ACTIONS(1011), [sym_block_comment] = ACTIONS(3), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(998), - [sym_identifier] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_u8] = ACTIONS(1000), - [anon_sym_i8] = ACTIONS(1000), - [anon_sym_u16] = ACTIONS(1000), - [anon_sym_i16] = ACTIONS(1000), - [anon_sym_u32] = ACTIONS(1000), - [anon_sym_i32] = ACTIONS(1000), - [anon_sym_u64] = ACTIONS(1000), - [anon_sym_i64] = ACTIONS(1000), - [anon_sym_u128] = ACTIONS(1000), - [anon_sym_i128] = ACTIONS(1000), - [anon_sym_isize] = ACTIONS(1000), - [anon_sym_usize] = ACTIONS(1000), - [anon_sym_f32] = ACTIONS(1000), - [anon_sym_f64] = ACTIONS(1000), - [anon_sym_bool] = ACTIONS(1000), - [anon_sym_char] = ACTIONS(1000), - [anon_sym_str] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_contract] = ACTIONS(1000), - [anon_sym_script] = ACTIONS(1000), - [anon_sym_predicate] = ACTIONS(1000), - [anon_sym_library] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_abi] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_configurable] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_dep] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_fn] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_impl] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_pub] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_storage] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_trait] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_asm] = ACTIONS(1000), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_COLON_COLON] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1000), - [anon_sym_move] = ACTIONS(1000), - [sym_integer_literal] = ACTIONS(998), - [aux_sym_string_literal_token1] = ACTIONS(998), - [sym_char_literal] = ACTIONS(998), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), + [ts_builtin_sym_end] = ACTIONS(1015), + [sym_identifier] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_u8] = ACTIONS(1017), + [anon_sym_i8] = ACTIONS(1017), + [anon_sym_u16] = ACTIONS(1017), + [anon_sym_i16] = ACTIONS(1017), + [anon_sym_u32] = ACTIONS(1017), + [anon_sym_i32] = ACTIONS(1017), + [anon_sym_u64] = ACTIONS(1017), + [anon_sym_i64] = ACTIONS(1017), + [anon_sym_u128] = ACTIONS(1017), + [anon_sym_i128] = ACTIONS(1017), + [anon_sym_u256] = ACTIONS(1017), + [anon_sym_i256] = ACTIONS(1017), + [anon_sym_b256] = ACTIONS(1017), + [anon_sym_isize] = ACTIONS(1017), + [anon_sym_usize] = ACTIONS(1017), + [anon_sym_f32] = ACTIONS(1017), + [anon_sym_f64] = ACTIONS(1017), + [anon_sym_bool] = ACTIONS(1017), + [anon_sym_char] = ACTIONS(1017), + [anon_sym_str] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_contract] = ACTIONS(1017), + [anon_sym_script] = ACTIONS(1017), + [anon_sym_predicate] = ACTIONS(1017), + [anon_sym_library] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1017), + [anon_sym_abi] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_configurable] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_default] = ACTIONS(1017), + [anon_sym_mod] = ACTIONS(1017), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_fn] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_impl] = ACTIONS(1017), + [anon_sym_let] = ACTIONS(1017), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_pub] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_storage] = ACTIONS(1017), + [anon_sym_struct] = ACTIONS(1017), + [anon_sym_trait] = ACTIONS(1017), + [anon_sym_type] = ACTIONS(1017), + [anon_sym_use] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_DOT_DOT] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_move] = ACTIONS(1017), + [sym_integer_literal] = ACTIONS(1015), + [aux_sym_string_literal_token1] = ACTIONS(1015), + [sym_char_literal] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1000), - [sym_metavariable] = ACTIONS(998), - [sym_raw_string_literal] = ACTIONS(998), - [sym_float_literal] = ACTIONS(998), + [sym_self] = ACTIONS(1017), + [sym_metavariable] = ACTIONS(1015), + [sym_raw_string_literal] = ACTIONS(1015), + [sym_float_literal] = ACTIONS(1015), [sym_block_comment] = ACTIONS(3), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_identifier] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_u8] = ACTIONS(1004), - [anon_sym_i8] = ACTIONS(1004), - [anon_sym_u16] = ACTIONS(1004), - [anon_sym_i16] = ACTIONS(1004), - [anon_sym_u32] = ACTIONS(1004), - [anon_sym_i32] = ACTIONS(1004), - [anon_sym_u64] = ACTIONS(1004), - [anon_sym_i64] = ACTIONS(1004), - [anon_sym_u128] = ACTIONS(1004), - [anon_sym_i128] = ACTIONS(1004), - [anon_sym_isize] = ACTIONS(1004), - [anon_sym_usize] = ACTIONS(1004), - [anon_sym_f32] = ACTIONS(1004), - [anon_sym_f64] = ACTIONS(1004), - [anon_sym_bool] = ACTIONS(1004), - [anon_sym_char] = ACTIONS(1004), - [anon_sym_str] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_contract] = ACTIONS(1004), - [anon_sym_script] = ACTIONS(1004), - [anon_sym_predicate] = ACTIONS(1004), - [anon_sym_library] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_abi] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_configurable] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_dep] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_fn] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_impl] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_pub] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_storage] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_trait] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_asm] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_COLON_COLON] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_yield] = ACTIONS(1004), - [anon_sym_move] = ACTIONS(1004), - [sym_integer_literal] = ACTIONS(1002), - [aux_sym_string_literal_token1] = ACTIONS(1002), - [sym_char_literal] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), + [ts_builtin_sym_end] = ACTIONS(1019), + [sym_identifier] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(1021), + [anon_sym_i8] = ACTIONS(1021), + [anon_sym_u16] = ACTIONS(1021), + [anon_sym_i16] = ACTIONS(1021), + [anon_sym_u32] = ACTIONS(1021), + [anon_sym_i32] = ACTIONS(1021), + [anon_sym_u64] = ACTIONS(1021), + [anon_sym_i64] = ACTIONS(1021), + [anon_sym_u128] = ACTIONS(1021), + [anon_sym_i128] = ACTIONS(1021), + [anon_sym_u256] = ACTIONS(1021), + [anon_sym_i256] = ACTIONS(1021), + [anon_sym_b256] = ACTIONS(1021), + [anon_sym_isize] = ACTIONS(1021), + [anon_sym_usize] = ACTIONS(1021), + [anon_sym_f32] = ACTIONS(1021), + [anon_sym_f64] = ACTIONS(1021), + [anon_sym_bool] = ACTIONS(1021), + [anon_sym_char] = ACTIONS(1021), + [anon_sym_str] = ACTIONS(1021), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_contract] = ACTIONS(1021), + [anon_sym_script] = ACTIONS(1021), + [anon_sym_predicate] = ACTIONS(1021), + [anon_sym_library] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1021), + [anon_sym_abi] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_configurable] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_default] = ACTIONS(1021), + [anon_sym_mod] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_fn] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_impl] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_pub] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_storage] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_trait] = ACTIONS(1021), + [anon_sym_type] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_asm] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_COLON_COLON] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_yield] = ACTIONS(1021), + [anon_sym_move] = ACTIONS(1021), + [sym_integer_literal] = ACTIONS(1019), + [aux_sym_string_literal_token1] = ACTIONS(1019), + [sym_char_literal] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1004), - [sym_metavariable] = ACTIONS(1002), - [sym_raw_string_literal] = ACTIONS(1002), - [sym_float_literal] = ACTIONS(1002), + [sym_self] = ACTIONS(1021), + [sym_metavariable] = ACTIONS(1019), + [sym_raw_string_literal] = ACTIONS(1019), + [sym_float_literal] = ACTIONS(1019), [sym_block_comment] = ACTIONS(3), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1008), - [anon_sym_i8] = ACTIONS(1008), - [anon_sym_u16] = ACTIONS(1008), - [anon_sym_i16] = ACTIONS(1008), - [anon_sym_u32] = ACTIONS(1008), - [anon_sym_i32] = ACTIONS(1008), - [anon_sym_u64] = ACTIONS(1008), - [anon_sym_i64] = ACTIONS(1008), - [anon_sym_u128] = ACTIONS(1008), - [anon_sym_i128] = ACTIONS(1008), - [anon_sym_isize] = ACTIONS(1008), - [anon_sym_usize] = ACTIONS(1008), - [anon_sym_f32] = ACTIONS(1008), - [anon_sym_f64] = ACTIONS(1008), - [anon_sym_bool] = ACTIONS(1008), - [anon_sym_char] = ACTIONS(1008), - [anon_sym_str] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_contract] = ACTIONS(1008), - [anon_sym_script] = ACTIONS(1008), - [anon_sym_predicate] = ACTIONS(1008), - [anon_sym_library] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1008), - [anon_sym_abi] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_configurable] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_dep] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_fn] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_impl] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_pub] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_storage] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_trait] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_asm] = ACTIONS(1008), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_yield] = ACTIONS(1008), - [anon_sym_move] = ACTIONS(1008), - [sym_integer_literal] = ACTIONS(1006), - [aux_sym_string_literal_token1] = ACTIONS(1006), - [sym_char_literal] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), + [ts_builtin_sym_end] = ACTIONS(1023), + [sym_identifier] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_u8] = ACTIONS(1025), + [anon_sym_i8] = ACTIONS(1025), + [anon_sym_u16] = ACTIONS(1025), + [anon_sym_i16] = ACTIONS(1025), + [anon_sym_u32] = ACTIONS(1025), + [anon_sym_i32] = ACTIONS(1025), + [anon_sym_u64] = ACTIONS(1025), + [anon_sym_i64] = ACTIONS(1025), + [anon_sym_u128] = ACTIONS(1025), + [anon_sym_i128] = ACTIONS(1025), + [anon_sym_u256] = ACTIONS(1025), + [anon_sym_i256] = ACTIONS(1025), + [anon_sym_b256] = ACTIONS(1025), + [anon_sym_isize] = ACTIONS(1025), + [anon_sym_usize] = ACTIONS(1025), + [anon_sym_f32] = ACTIONS(1025), + [anon_sym_f64] = ACTIONS(1025), + [anon_sym_bool] = ACTIONS(1025), + [anon_sym_char] = ACTIONS(1025), + [anon_sym_str] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_contract] = ACTIONS(1025), + [anon_sym_script] = ACTIONS(1025), + [anon_sym_predicate] = ACTIONS(1025), + [anon_sym_library] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_abi] = ACTIONS(1025), + [anon_sym_break] = ACTIONS(1025), + [anon_sym_configurable] = ACTIONS(1025), + [anon_sym_const] = ACTIONS(1025), + [anon_sym_continue] = ACTIONS(1025), + [anon_sym_default] = ACTIONS(1025), + [anon_sym_mod] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1025), + [anon_sym_fn] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1025), + [anon_sym_impl] = ACTIONS(1025), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_match] = ACTIONS(1025), + [anon_sym_pub] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1025), + [anon_sym_storage] = ACTIONS(1025), + [anon_sym_struct] = ACTIONS(1025), + [anon_sym_trait] = ACTIONS(1025), + [anon_sym_type] = ACTIONS(1025), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_POUND] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_asm] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1023), + [anon_sym_COLON_COLON] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1025), + [anon_sym_move] = ACTIONS(1025), + [sym_integer_literal] = ACTIONS(1023), + [aux_sym_string_literal_token1] = ACTIONS(1023), + [sym_char_literal] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1025), + [anon_sym_false] = ACTIONS(1025), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1008), - [sym_metavariable] = ACTIONS(1006), - [sym_raw_string_literal] = ACTIONS(1006), - [sym_float_literal] = ACTIONS(1006), + [sym_self] = ACTIONS(1025), + [sym_metavariable] = ACTIONS(1023), + [sym_raw_string_literal] = ACTIONS(1023), + [sym_float_literal] = ACTIONS(1023), [sym_block_comment] = ACTIONS(3), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_u8] = ACTIONS(1012), - [anon_sym_i8] = ACTIONS(1012), - [anon_sym_u16] = ACTIONS(1012), - [anon_sym_i16] = ACTIONS(1012), - [anon_sym_u32] = ACTIONS(1012), - [anon_sym_i32] = ACTIONS(1012), - [anon_sym_u64] = ACTIONS(1012), - [anon_sym_i64] = ACTIONS(1012), - [anon_sym_u128] = ACTIONS(1012), - [anon_sym_i128] = ACTIONS(1012), - [anon_sym_isize] = ACTIONS(1012), - [anon_sym_usize] = ACTIONS(1012), - [anon_sym_f32] = ACTIONS(1012), - [anon_sym_f64] = ACTIONS(1012), - [anon_sym_bool] = ACTIONS(1012), - [anon_sym_char] = ACTIONS(1012), - [anon_sym_str] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_contract] = ACTIONS(1012), - [anon_sym_script] = ACTIONS(1012), - [anon_sym_predicate] = ACTIONS(1012), - [anon_sym_library] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1012), - [anon_sym_abi] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_configurable] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_dep] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_fn] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_impl] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_pub] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_storage] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_trait] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_asm] = ACTIONS(1012), - [anon_sym_LT] = ACTIONS(1010), - [anon_sym_COLON_COLON] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(1012), - [anon_sym_move] = ACTIONS(1012), - [sym_integer_literal] = ACTIONS(1010), - [aux_sym_string_literal_token1] = ACTIONS(1010), - [sym_char_literal] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), + [ts_builtin_sym_end] = ACTIONS(1027), + [sym_identifier] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_u8] = ACTIONS(1029), + [anon_sym_i8] = ACTIONS(1029), + [anon_sym_u16] = ACTIONS(1029), + [anon_sym_i16] = ACTIONS(1029), + [anon_sym_u32] = ACTIONS(1029), + [anon_sym_i32] = ACTIONS(1029), + [anon_sym_u64] = ACTIONS(1029), + [anon_sym_i64] = ACTIONS(1029), + [anon_sym_u128] = ACTIONS(1029), + [anon_sym_i128] = ACTIONS(1029), + [anon_sym_u256] = ACTIONS(1029), + [anon_sym_i256] = ACTIONS(1029), + [anon_sym_b256] = ACTIONS(1029), + [anon_sym_isize] = ACTIONS(1029), + [anon_sym_usize] = ACTIONS(1029), + [anon_sym_f32] = ACTIONS(1029), + [anon_sym_f64] = ACTIONS(1029), + [anon_sym_bool] = ACTIONS(1029), + [anon_sym_char] = ACTIONS(1029), + [anon_sym_str] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_contract] = ACTIONS(1029), + [anon_sym_script] = ACTIONS(1029), + [anon_sym_predicate] = ACTIONS(1029), + [anon_sym_library] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_abi] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_configurable] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_fn] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_impl] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_pub] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_storage] = ACTIONS(1029), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_trait] = ACTIONS(1029), + [anon_sym_type] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_asm] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_COLON_COLON] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1027), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1027), + [anon_sym_yield] = ACTIONS(1029), + [anon_sym_move] = ACTIONS(1029), + [sym_integer_literal] = ACTIONS(1027), + [aux_sym_string_literal_token1] = ACTIONS(1027), + [sym_char_literal] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1012), - [sym_metavariable] = ACTIONS(1010), - [sym_raw_string_literal] = ACTIONS(1010), - [sym_float_literal] = ACTIONS(1010), + [sym_self] = ACTIONS(1029), + [sym_metavariable] = ACTIONS(1027), + [sym_raw_string_literal] = ACTIONS(1027), + [sym_float_literal] = ACTIONS(1027), [sym_block_comment] = ACTIONS(3), }, [264] = { - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_identifier] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_u8] = ACTIONS(1016), - [anon_sym_i8] = ACTIONS(1016), - [anon_sym_u16] = ACTIONS(1016), - [anon_sym_i16] = ACTIONS(1016), - [anon_sym_u32] = ACTIONS(1016), - [anon_sym_i32] = ACTIONS(1016), - [anon_sym_u64] = ACTIONS(1016), - [anon_sym_i64] = ACTIONS(1016), - [anon_sym_u128] = ACTIONS(1016), - [anon_sym_i128] = ACTIONS(1016), - [anon_sym_isize] = ACTIONS(1016), - [anon_sym_usize] = ACTIONS(1016), - [anon_sym_f32] = ACTIONS(1016), - [anon_sym_f64] = ACTIONS(1016), - [anon_sym_bool] = ACTIONS(1016), - [anon_sym_char] = ACTIONS(1016), - [anon_sym_str] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_contract] = ACTIONS(1016), - [anon_sym_script] = ACTIONS(1016), - [anon_sym_predicate] = ACTIONS(1016), - [anon_sym_library] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1016), - [anon_sym_abi] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_configurable] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_dep] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_fn] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_impl] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_pub] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_storage] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_trait] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1016), - [anon_sym_LT] = ACTIONS(1014), - [anon_sym_COLON_COLON] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_yield] = ACTIONS(1016), - [anon_sym_move] = ACTIONS(1016), - [sym_integer_literal] = ACTIONS(1014), - [aux_sym_string_literal_token1] = ACTIONS(1014), - [sym_char_literal] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), + [ts_builtin_sym_end] = ACTIONS(1031), + [sym_identifier] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(1033), + [anon_sym_i8] = ACTIONS(1033), + [anon_sym_u16] = ACTIONS(1033), + [anon_sym_i16] = ACTIONS(1033), + [anon_sym_u32] = ACTIONS(1033), + [anon_sym_i32] = ACTIONS(1033), + [anon_sym_u64] = ACTIONS(1033), + [anon_sym_i64] = ACTIONS(1033), + [anon_sym_u128] = ACTIONS(1033), + [anon_sym_i128] = ACTIONS(1033), + [anon_sym_u256] = ACTIONS(1033), + [anon_sym_i256] = ACTIONS(1033), + [anon_sym_b256] = ACTIONS(1033), + [anon_sym_isize] = ACTIONS(1033), + [anon_sym_usize] = ACTIONS(1033), + [anon_sym_f32] = ACTIONS(1033), + [anon_sym_f64] = ACTIONS(1033), + [anon_sym_bool] = ACTIONS(1033), + [anon_sym_char] = ACTIONS(1033), + [anon_sym_str] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1031), + [anon_sym_contract] = ACTIONS(1033), + [anon_sym_script] = ACTIONS(1033), + [anon_sym_predicate] = ACTIONS(1033), + [anon_sym_library] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_abi] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_configurable] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_default] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_fn] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_impl] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_pub] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_storage] = ACTIONS(1033), + [anon_sym_struct] = ACTIONS(1033), + [anon_sym_trait] = ACTIONS(1033), + [anon_sym_type] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(1031), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_asm] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_DOT_DOT] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1031), + [anon_sym_yield] = ACTIONS(1033), + [anon_sym_move] = ACTIONS(1033), + [sym_integer_literal] = ACTIONS(1031), + [aux_sym_string_literal_token1] = ACTIONS(1031), + [sym_char_literal] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1016), - [sym_metavariable] = ACTIONS(1014), - [sym_raw_string_literal] = ACTIONS(1014), - [sym_float_literal] = ACTIONS(1014), + [sym_self] = ACTIONS(1033), + [sym_metavariable] = ACTIONS(1031), + [sym_raw_string_literal] = ACTIONS(1031), + [sym_float_literal] = ACTIONS(1031), [sym_block_comment] = ACTIONS(3), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(446), - [sym_identifier] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_u8] = ACTIONS(448), - [anon_sym_i8] = ACTIONS(448), - [anon_sym_u16] = ACTIONS(448), - [anon_sym_i16] = ACTIONS(448), - [anon_sym_u32] = ACTIONS(448), - [anon_sym_i32] = ACTIONS(448), - [anon_sym_u64] = ACTIONS(448), - [anon_sym_i64] = ACTIONS(448), - [anon_sym_u128] = ACTIONS(448), - [anon_sym_i128] = ACTIONS(448), - [anon_sym_isize] = ACTIONS(448), - [anon_sym_usize] = ACTIONS(448), - [anon_sym_f32] = ACTIONS(448), - [anon_sym_f64] = ACTIONS(448), - [anon_sym_bool] = ACTIONS(448), - [anon_sym_char] = ACTIONS(448), - [anon_sym_str] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_contract] = ACTIONS(448), - [anon_sym_script] = ACTIONS(448), - [anon_sym_predicate] = ACTIONS(448), - [anon_sym_library] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_SQUOTE] = ACTIONS(448), - [anon_sym_abi] = ACTIONS(448), - [anon_sym_break] = ACTIONS(448), - [anon_sym_configurable] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(448), - [anon_sym_default] = ACTIONS(448), - [anon_sym_dep] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_fn] = ACTIONS(448), - [anon_sym_for] = ACTIONS(448), - [anon_sym_if] = ACTIONS(448), - [anon_sym_impl] = ACTIONS(448), - [anon_sym_let] = ACTIONS(448), - [anon_sym_match] = ACTIONS(448), - [anon_sym_pub] = ACTIONS(448), - [anon_sym_return] = ACTIONS(448), - [anon_sym_storage] = ACTIONS(448), - [anon_sym_struct] = ACTIONS(448), - [anon_sym_trait] = ACTIONS(448), - [anon_sym_use] = ACTIONS(448), - [anon_sym_while] = ACTIONS(448), - [anon_sym_POUND] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_asm] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_COLON_COLON] = ACTIONS(446), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(446), - [anon_sym_DOT_DOT] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(446), - [anon_sym_yield] = ACTIONS(448), - [anon_sym_move] = ACTIONS(448), - [sym_integer_literal] = ACTIONS(446), - [aux_sym_string_literal_token1] = ACTIONS(446), - [sym_char_literal] = ACTIONS(446), - [anon_sym_true] = ACTIONS(448), - [anon_sym_false] = ACTIONS(448), + [ts_builtin_sym_end] = ACTIONS(1035), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_u256] = ACTIONS(1037), + [anon_sym_i256] = ACTIONS(1037), + [anon_sym_b256] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_contract] = ACTIONS(1037), + [anon_sym_script] = ACTIONS(1037), + [anon_sym_predicate] = ACTIONS(1037), + [anon_sym_library] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_abi] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_configurable] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_storage] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_asm] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1035), + [anon_sym_COLON_COLON] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1035), + [anon_sym_DOT_DOT] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1035), + [anon_sym_yield] = ACTIONS(1037), + [anon_sym_move] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1035), + [aux_sym_string_literal_token1] = ACTIONS(1035), + [sym_char_literal] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(448), - [sym_metavariable] = ACTIONS(446), - [sym_raw_string_literal] = ACTIONS(446), - [sym_float_literal] = ACTIONS(446), + [sym_self] = ACTIONS(1037), + [sym_metavariable] = ACTIONS(1035), + [sym_raw_string_literal] = ACTIONS(1035), + [sym_float_literal] = ACTIONS(1035), [sym_block_comment] = ACTIONS(3), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_identifier] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_u8] = ACTIONS(1020), - [anon_sym_i8] = ACTIONS(1020), - [anon_sym_u16] = ACTIONS(1020), - [anon_sym_i16] = ACTIONS(1020), - [anon_sym_u32] = ACTIONS(1020), - [anon_sym_i32] = ACTIONS(1020), - [anon_sym_u64] = ACTIONS(1020), - [anon_sym_i64] = ACTIONS(1020), - [anon_sym_u128] = ACTIONS(1020), - [anon_sym_i128] = ACTIONS(1020), - [anon_sym_isize] = ACTIONS(1020), - [anon_sym_usize] = ACTIONS(1020), - [anon_sym_f32] = ACTIONS(1020), - [anon_sym_f64] = ACTIONS(1020), - [anon_sym_bool] = ACTIONS(1020), - [anon_sym_char] = ACTIONS(1020), - [anon_sym_str] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_contract] = ACTIONS(1020), - [anon_sym_script] = ACTIONS(1020), - [anon_sym_predicate] = ACTIONS(1020), - [anon_sym_library] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1020), - [anon_sym_abi] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_configurable] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_dep] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_impl] = ACTIONS(1020), - [anon_sym_let] = ACTIONS(1020), - [anon_sym_match] = ACTIONS(1020), - [anon_sym_pub] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_storage] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_trait] = ACTIONS(1020), - [anon_sym_use] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1020), - [anon_sym_LT] = ACTIONS(1018), - [anon_sym_COLON_COLON] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_move] = ACTIONS(1020), - [sym_integer_literal] = ACTIONS(1018), - [aux_sym_string_literal_token1] = ACTIONS(1018), - [sym_char_literal] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1020), - [anon_sym_false] = ACTIONS(1020), + [ts_builtin_sym_end] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_u256] = ACTIONS(1041), + [anon_sym_i256] = ACTIONS(1041), + [anon_sym_b256] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_contract] = ACTIONS(1041), + [anon_sym_script] = ACTIONS(1041), + [anon_sym_predicate] = ACTIONS(1041), + [anon_sym_library] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_abi] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_configurable] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_storage] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_asm] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_yield] = ACTIONS(1041), + [anon_sym_move] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1020), - [sym_metavariable] = ACTIONS(1018), - [sym_raw_string_literal] = ACTIONS(1018), - [sym_float_literal] = ACTIONS(1018), + [sym_self] = ACTIONS(1041), + [sym_metavariable] = ACTIONS(1039), + [sym_raw_string_literal] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), [sym_block_comment] = ACTIONS(3), }, [267] = { - [ts_builtin_sym_end] = ACTIONS(1022), - [sym_identifier] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_u8] = ACTIONS(1024), - [anon_sym_i8] = ACTIONS(1024), - [anon_sym_u16] = ACTIONS(1024), - [anon_sym_i16] = ACTIONS(1024), - [anon_sym_u32] = ACTIONS(1024), - [anon_sym_i32] = ACTIONS(1024), - [anon_sym_u64] = ACTIONS(1024), - [anon_sym_i64] = ACTIONS(1024), - [anon_sym_u128] = ACTIONS(1024), - [anon_sym_i128] = ACTIONS(1024), - [anon_sym_isize] = ACTIONS(1024), - [anon_sym_usize] = ACTIONS(1024), - [anon_sym_f32] = ACTIONS(1024), - [anon_sym_f64] = ACTIONS(1024), - [anon_sym_bool] = ACTIONS(1024), - [anon_sym_char] = ACTIONS(1024), - [anon_sym_str] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1022), - [anon_sym_contract] = ACTIONS(1024), - [anon_sym_script] = ACTIONS(1024), - [anon_sym_predicate] = ACTIONS(1024), - [anon_sym_library] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1024), - [anon_sym_abi] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_configurable] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_dep] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_fn] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_impl] = ACTIONS(1024), - [anon_sym_let] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1024), - [anon_sym_pub] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_storage] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_trait] = ACTIONS(1024), - [anon_sym_use] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_asm] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_COLON_COLON] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_DOT_DOT] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_PIPE] = ACTIONS(1022), - [anon_sym_yield] = ACTIONS(1024), - [anon_sym_move] = ACTIONS(1024), - [sym_integer_literal] = ACTIONS(1022), - [aux_sym_string_literal_token1] = ACTIONS(1022), - [sym_char_literal] = ACTIONS(1022), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_u256] = ACTIONS(1045), + [anon_sym_i256] = ACTIONS(1045), + [anon_sym_b256] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_contract] = ACTIONS(1045), + [anon_sym_script] = ACTIONS(1045), + [anon_sym_predicate] = ACTIONS(1045), + [anon_sym_library] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_abi] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_configurable] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_storage] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_asm] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_DOT_DOT] = ACTIONS(1043), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(1043), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_move] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1024), - [sym_metavariable] = ACTIONS(1022), - [sym_raw_string_literal] = ACTIONS(1022), - [sym_float_literal] = ACTIONS(1022), + [sym_self] = ACTIONS(1045), + [sym_metavariable] = ACTIONS(1043), + [sym_raw_string_literal] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), [sym_block_comment] = ACTIONS(3), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(1026), - [sym_identifier] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1026), - [anon_sym_contract] = ACTIONS(1028), - [anon_sym_script] = ACTIONS(1028), - [anon_sym_predicate] = ACTIONS(1028), - [anon_sym_library] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1028), - [anon_sym_abi] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_configurable] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_dep] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_fn] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_impl] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_pub] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_storage] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_trait] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_asm] = ACTIONS(1028), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_yield] = ACTIONS(1028), - [anon_sym_move] = ACTIONS(1028), - [sym_integer_literal] = ACTIONS(1026), - [aux_sym_string_literal_token1] = ACTIONS(1026), - [sym_char_literal] = ACTIONS(1026), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_u256] = ACTIONS(1049), + [anon_sym_i256] = ACTIONS(1049), + [anon_sym_b256] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_contract] = ACTIONS(1049), + [anon_sym_script] = ACTIONS(1049), + [anon_sym_predicate] = ACTIONS(1049), + [anon_sym_library] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_abi] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_configurable] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_storage] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_asm] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1047), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_move] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1028), - [sym_metavariable] = ACTIONS(1026), - [sym_raw_string_literal] = ACTIONS(1026), - [sym_float_literal] = ACTIONS(1026), + [sym_self] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1047), + [sym_raw_string_literal] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), [sym_block_comment] = ACTIONS(3), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_identifier] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_u8] = ACTIONS(1032), - [anon_sym_i8] = ACTIONS(1032), - [anon_sym_u16] = ACTIONS(1032), - [anon_sym_i16] = ACTIONS(1032), - [anon_sym_u32] = ACTIONS(1032), - [anon_sym_i32] = ACTIONS(1032), - [anon_sym_u64] = ACTIONS(1032), - [anon_sym_i64] = ACTIONS(1032), - [anon_sym_u128] = ACTIONS(1032), - [anon_sym_i128] = ACTIONS(1032), - [anon_sym_isize] = ACTIONS(1032), - [anon_sym_usize] = ACTIONS(1032), - [anon_sym_f32] = ACTIONS(1032), - [anon_sym_f64] = ACTIONS(1032), - [anon_sym_bool] = ACTIONS(1032), - [anon_sym_char] = ACTIONS(1032), - [anon_sym_str] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_contract] = ACTIONS(1032), - [anon_sym_script] = ACTIONS(1032), - [anon_sym_predicate] = ACTIONS(1032), - [anon_sym_library] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1032), - [anon_sym_abi] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_configurable] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_dep] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_fn] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_impl] = ACTIONS(1032), - [anon_sym_let] = ACTIONS(1032), - [anon_sym_match] = ACTIONS(1032), - [anon_sym_pub] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_storage] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_trait] = ACTIONS(1032), - [anon_sym_use] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_asm] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1030), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_DOT_DOT] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_yield] = ACTIONS(1032), - [anon_sym_move] = ACTIONS(1032), - [sym_integer_literal] = ACTIONS(1030), - [aux_sym_string_literal_token1] = ACTIONS(1030), - [sym_char_literal] = ACTIONS(1030), - [anon_sym_true] = ACTIONS(1032), - [anon_sym_false] = ACTIONS(1032), + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_identifier] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1053), + [anon_sym_i8] = ACTIONS(1053), + [anon_sym_u16] = ACTIONS(1053), + [anon_sym_i16] = ACTIONS(1053), + [anon_sym_u32] = ACTIONS(1053), + [anon_sym_i32] = ACTIONS(1053), + [anon_sym_u64] = ACTIONS(1053), + [anon_sym_i64] = ACTIONS(1053), + [anon_sym_u128] = ACTIONS(1053), + [anon_sym_i128] = ACTIONS(1053), + [anon_sym_u256] = ACTIONS(1053), + [anon_sym_i256] = ACTIONS(1053), + [anon_sym_b256] = ACTIONS(1053), + [anon_sym_isize] = ACTIONS(1053), + [anon_sym_usize] = ACTIONS(1053), + [anon_sym_f32] = ACTIONS(1053), + [anon_sym_f64] = ACTIONS(1053), + [anon_sym_bool] = ACTIONS(1053), + [anon_sym_char] = ACTIONS(1053), + [anon_sym_str] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_contract] = ACTIONS(1053), + [anon_sym_script] = ACTIONS(1053), + [anon_sym_predicate] = ACTIONS(1053), + [anon_sym_library] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_abi] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_configurable] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1053), + [anon_sym_fn] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_impl] = ACTIONS(1053), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_match] = ACTIONS(1053), + [anon_sym_pub] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_storage] = ACTIONS(1053), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1053), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_asm] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_PIPE] = ACTIONS(1051), + [anon_sym_yield] = ACTIONS(1053), + [anon_sym_move] = ACTIONS(1053), + [sym_integer_literal] = ACTIONS(1051), + [aux_sym_string_literal_token1] = ACTIONS(1051), + [sym_char_literal] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1032), - [sym_metavariable] = ACTIONS(1030), - [sym_raw_string_literal] = ACTIONS(1030), - [sym_float_literal] = ACTIONS(1030), + [sym_self] = ACTIONS(1053), + [sym_metavariable] = ACTIONS(1051), + [sym_raw_string_literal] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), [sym_block_comment] = ACTIONS(3), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_identifier] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_u8] = ACTIONS(1036), - [anon_sym_i8] = ACTIONS(1036), - [anon_sym_u16] = ACTIONS(1036), - [anon_sym_i16] = ACTIONS(1036), - [anon_sym_u32] = ACTIONS(1036), - [anon_sym_i32] = ACTIONS(1036), - [anon_sym_u64] = ACTIONS(1036), - [anon_sym_i64] = ACTIONS(1036), - [anon_sym_u128] = ACTIONS(1036), - [anon_sym_i128] = ACTIONS(1036), - [anon_sym_isize] = ACTIONS(1036), - [anon_sym_usize] = ACTIONS(1036), - [anon_sym_f32] = ACTIONS(1036), - [anon_sym_f64] = ACTIONS(1036), - [anon_sym_bool] = ACTIONS(1036), - [anon_sym_char] = ACTIONS(1036), - [anon_sym_str] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1034), - [anon_sym_contract] = ACTIONS(1036), - [anon_sym_script] = ACTIONS(1036), - [anon_sym_predicate] = ACTIONS(1036), - [anon_sym_library] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1036), - [anon_sym_abi] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_configurable] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_dep] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_fn] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_impl] = ACTIONS(1036), - [anon_sym_let] = ACTIONS(1036), - [anon_sym_match] = ACTIONS(1036), - [anon_sym_pub] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_storage] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_trait] = ACTIONS(1036), - [anon_sym_use] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_asm] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1034), - [anon_sym_COLON_COLON] = ACTIONS(1034), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1034), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_move] = ACTIONS(1036), - [sym_integer_literal] = ACTIONS(1034), - [aux_sym_string_literal_token1] = ACTIONS(1034), - [sym_char_literal] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), + [ts_builtin_sym_end] = ACTIONS(1055), + [sym_identifier] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1057), + [anon_sym_i8] = ACTIONS(1057), + [anon_sym_u16] = ACTIONS(1057), + [anon_sym_i16] = ACTIONS(1057), + [anon_sym_u32] = ACTIONS(1057), + [anon_sym_i32] = ACTIONS(1057), + [anon_sym_u64] = ACTIONS(1057), + [anon_sym_i64] = ACTIONS(1057), + [anon_sym_u128] = ACTIONS(1057), + [anon_sym_i128] = ACTIONS(1057), + [anon_sym_u256] = ACTIONS(1057), + [anon_sym_i256] = ACTIONS(1057), + [anon_sym_b256] = ACTIONS(1057), + [anon_sym_isize] = ACTIONS(1057), + [anon_sym_usize] = ACTIONS(1057), + [anon_sym_f32] = ACTIONS(1057), + [anon_sym_f64] = ACTIONS(1057), + [anon_sym_bool] = ACTIONS(1057), + [anon_sym_char] = ACTIONS(1057), + [anon_sym_str] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_contract] = ACTIONS(1057), + [anon_sym_script] = ACTIONS(1057), + [anon_sym_predicate] = ACTIONS(1057), + [anon_sym_library] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(1057), + [anon_sym_abi] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1057), + [anon_sym_configurable] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [anon_sym_continue] = ACTIONS(1057), + [anon_sym_default] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1057), + [anon_sym_fn] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_impl] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1057), + [anon_sym_pub] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_storage] = ACTIONS(1057), + [anon_sym_struct] = ACTIONS(1057), + [anon_sym_trait] = ACTIONS(1057), + [anon_sym_type] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_asm] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(1055), + [anon_sym_yield] = ACTIONS(1057), + [anon_sym_move] = ACTIONS(1057), + [sym_integer_literal] = ACTIONS(1055), + [aux_sym_string_literal_token1] = ACTIONS(1055), + [sym_char_literal] = ACTIONS(1055), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1036), - [sym_metavariable] = ACTIONS(1034), - [sym_raw_string_literal] = ACTIONS(1034), - [sym_float_literal] = ACTIONS(1034), + [sym_self] = ACTIONS(1057), + [sym_metavariable] = ACTIONS(1055), + [sym_raw_string_literal] = ACTIONS(1055), + [sym_float_literal] = ACTIONS(1055), [sym_block_comment] = ACTIONS(3), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_identifier] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_u8] = ACTIONS(1040), - [anon_sym_i8] = ACTIONS(1040), - [anon_sym_u16] = ACTIONS(1040), - [anon_sym_i16] = ACTIONS(1040), - [anon_sym_u32] = ACTIONS(1040), - [anon_sym_i32] = ACTIONS(1040), - [anon_sym_u64] = ACTIONS(1040), - [anon_sym_i64] = ACTIONS(1040), - [anon_sym_u128] = ACTIONS(1040), - [anon_sym_i128] = ACTIONS(1040), - [anon_sym_isize] = ACTIONS(1040), - [anon_sym_usize] = ACTIONS(1040), - [anon_sym_f32] = ACTIONS(1040), - [anon_sym_f64] = ACTIONS(1040), - [anon_sym_bool] = ACTIONS(1040), - [anon_sym_char] = ACTIONS(1040), - [anon_sym_str] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_contract] = ACTIONS(1040), - [anon_sym_script] = ACTIONS(1040), - [anon_sym_predicate] = ACTIONS(1040), - [anon_sym_library] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1040), - [anon_sym_abi] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_configurable] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_dep] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_fn] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_impl] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), - [anon_sym_pub] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_storage] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_trait] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_asm] = ACTIONS(1040), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_COLON_COLON] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_DOT_DOT] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1038), - [anon_sym_yield] = ACTIONS(1040), - [anon_sym_move] = ACTIONS(1040), - [sym_integer_literal] = ACTIONS(1038), - [aux_sym_string_literal_token1] = ACTIONS(1038), - [sym_char_literal] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), + [ts_builtin_sym_end] = ACTIONS(1059), + [sym_identifier] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1061), + [anon_sym_i8] = ACTIONS(1061), + [anon_sym_u16] = ACTIONS(1061), + [anon_sym_i16] = ACTIONS(1061), + [anon_sym_u32] = ACTIONS(1061), + [anon_sym_i32] = ACTIONS(1061), + [anon_sym_u64] = ACTIONS(1061), + [anon_sym_i64] = ACTIONS(1061), + [anon_sym_u128] = ACTIONS(1061), + [anon_sym_i128] = ACTIONS(1061), + [anon_sym_u256] = ACTIONS(1061), + [anon_sym_i256] = ACTIONS(1061), + [anon_sym_b256] = ACTIONS(1061), + [anon_sym_isize] = ACTIONS(1061), + [anon_sym_usize] = ACTIONS(1061), + [anon_sym_f32] = ACTIONS(1061), + [anon_sym_f64] = ACTIONS(1061), + [anon_sym_bool] = ACTIONS(1061), + [anon_sym_char] = ACTIONS(1061), + [anon_sym_str] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_contract] = ACTIONS(1061), + [anon_sym_script] = ACTIONS(1061), + [anon_sym_predicate] = ACTIONS(1061), + [anon_sym_library] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1061), + [anon_sym_abi] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_configurable] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_default] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_enum] = ACTIONS(1061), + [anon_sym_fn] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_impl] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_pub] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_storage] = ACTIONS(1061), + [anon_sym_struct] = ACTIONS(1061), + [anon_sym_trait] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_asm] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1061), + [anon_sym_move] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1059), + [aux_sym_string_literal_token1] = ACTIONS(1059), + [sym_char_literal] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1040), - [sym_metavariable] = ACTIONS(1038), - [sym_raw_string_literal] = ACTIONS(1038), - [sym_float_literal] = ACTIONS(1038), + [sym_self] = ACTIONS(1061), + [sym_metavariable] = ACTIONS(1059), + [sym_raw_string_literal] = ACTIONS(1059), + [sym_float_literal] = ACTIONS(1059), [sym_block_comment] = ACTIONS(3), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_u8] = ACTIONS(1044), - [anon_sym_i8] = ACTIONS(1044), - [anon_sym_u16] = ACTIONS(1044), - [anon_sym_i16] = ACTIONS(1044), - [anon_sym_u32] = ACTIONS(1044), - [anon_sym_i32] = ACTIONS(1044), - [anon_sym_u64] = ACTIONS(1044), - [anon_sym_i64] = ACTIONS(1044), - [anon_sym_u128] = ACTIONS(1044), - [anon_sym_i128] = ACTIONS(1044), - [anon_sym_isize] = ACTIONS(1044), - [anon_sym_usize] = ACTIONS(1044), - [anon_sym_f32] = ACTIONS(1044), - [anon_sym_f64] = ACTIONS(1044), - [anon_sym_bool] = ACTIONS(1044), - [anon_sym_char] = ACTIONS(1044), - [anon_sym_str] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_contract] = ACTIONS(1044), - [anon_sym_script] = ACTIONS(1044), - [anon_sym_predicate] = ACTIONS(1044), - [anon_sym_library] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_abi] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_configurable] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_dep] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_impl] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_pub] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_storage] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_trait] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1042), - [anon_sym_COLON_COLON] = ACTIONS(1042), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_DOT_DOT] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_move] = ACTIONS(1044), - [sym_integer_literal] = ACTIONS(1042), - [aux_sym_string_literal_token1] = ACTIONS(1042), - [sym_char_literal] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), + [ts_builtin_sym_end] = ACTIONS(1063), + [sym_identifier] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_u256] = ACTIONS(1065), + [anon_sym_i256] = ACTIONS(1065), + [anon_sym_b256] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_contract] = ACTIONS(1065), + [anon_sym_script] = ACTIONS(1065), + [anon_sym_predicate] = ACTIONS(1065), + [anon_sym_library] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_abi] = ACTIONS(1065), + [anon_sym_break] = ACTIONS(1065), + [anon_sym_configurable] = ACTIONS(1065), + [anon_sym_const] = ACTIONS(1065), + [anon_sym_continue] = ACTIONS(1065), + [anon_sym_default] = ACTIONS(1065), + [anon_sym_mod] = ACTIONS(1065), + [anon_sym_enum] = ACTIONS(1065), + [anon_sym_fn] = ACTIONS(1065), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_if] = ACTIONS(1065), + [anon_sym_impl] = ACTIONS(1065), + [anon_sym_let] = ACTIONS(1065), + [anon_sym_match] = ACTIONS(1065), + [anon_sym_pub] = ACTIONS(1065), + [anon_sym_return] = ACTIONS(1065), + [anon_sym_storage] = ACTIONS(1065), + [anon_sym_struct] = ACTIONS(1065), + [anon_sym_trait] = ACTIONS(1065), + [anon_sym_type] = ACTIONS(1065), + [anon_sym_use] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_asm] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_yield] = ACTIONS(1065), + [anon_sym_move] = ACTIONS(1065), + [sym_integer_literal] = ACTIONS(1063), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1063), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1044), - [sym_metavariable] = ACTIONS(1042), - [sym_raw_string_literal] = ACTIONS(1042), - [sym_float_literal] = ACTIONS(1042), + [sym_self] = ACTIONS(1065), + [sym_metavariable] = ACTIONS(1063), + [sym_raw_string_literal] = ACTIONS(1063), + [sym_float_literal] = ACTIONS(1063), [sym_block_comment] = ACTIONS(3), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_u8] = ACTIONS(1048), - [anon_sym_i8] = ACTIONS(1048), - [anon_sym_u16] = ACTIONS(1048), - [anon_sym_i16] = ACTIONS(1048), - [anon_sym_u32] = ACTIONS(1048), - [anon_sym_i32] = ACTIONS(1048), - [anon_sym_u64] = ACTIONS(1048), - [anon_sym_i64] = ACTIONS(1048), - [anon_sym_u128] = ACTIONS(1048), - [anon_sym_i128] = ACTIONS(1048), - [anon_sym_isize] = ACTIONS(1048), - [anon_sym_usize] = ACTIONS(1048), - [anon_sym_f32] = ACTIONS(1048), - [anon_sym_f64] = ACTIONS(1048), - [anon_sym_bool] = ACTIONS(1048), - [anon_sym_char] = ACTIONS(1048), - [anon_sym_str] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_contract] = ACTIONS(1048), - [anon_sym_script] = ACTIONS(1048), - [anon_sym_predicate] = ACTIONS(1048), - [anon_sym_library] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1048), - [anon_sym_abi] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_configurable] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_dep] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_fn] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_pub] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_storage] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_trait] = ACTIONS(1048), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_asm] = ACTIONS(1048), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_COLON_COLON] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_DOT_DOT] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_yield] = ACTIONS(1048), - [anon_sym_move] = ACTIONS(1048), - [sym_integer_literal] = ACTIONS(1046), - [aux_sym_string_literal_token1] = ACTIONS(1046), - [sym_char_literal] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), + [ts_builtin_sym_end] = ACTIONS(1067), + [sym_identifier] = ACTIONS(1069), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(1069), + [anon_sym_i8] = ACTIONS(1069), + [anon_sym_u16] = ACTIONS(1069), + [anon_sym_i16] = ACTIONS(1069), + [anon_sym_u32] = ACTIONS(1069), + [anon_sym_i32] = ACTIONS(1069), + [anon_sym_u64] = ACTIONS(1069), + [anon_sym_i64] = ACTIONS(1069), + [anon_sym_u128] = ACTIONS(1069), + [anon_sym_i128] = ACTIONS(1069), + [anon_sym_u256] = ACTIONS(1069), + [anon_sym_i256] = ACTIONS(1069), + [anon_sym_b256] = ACTIONS(1069), + [anon_sym_isize] = ACTIONS(1069), + [anon_sym_usize] = ACTIONS(1069), + [anon_sym_f32] = ACTIONS(1069), + [anon_sym_f64] = ACTIONS(1069), + [anon_sym_bool] = ACTIONS(1069), + [anon_sym_char] = ACTIONS(1069), + [anon_sym_str] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_contract] = ACTIONS(1069), + [anon_sym_script] = ACTIONS(1069), + [anon_sym_predicate] = ACTIONS(1069), + [anon_sym_library] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(1067), + [anon_sym_SQUOTE] = ACTIONS(1069), + [anon_sym_abi] = ACTIONS(1069), + [anon_sym_break] = ACTIONS(1069), + [anon_sym_configurable] = ACTIONS(1069), + [anon_sym_const] = ACTIONS(1069), + [anon_sym_continue] = ACTIONS(1069), + [anon_sym_default] = ACTIONS(1069), + [anon_sym_mod] = ACTIONS(1069), + [anon_sym_enum] = ACTIONS(1069), + [anon_sym_fn] = ACTIONS(1069), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1069), + [anon_sym_impl] = ACTIONS(1069), + [anon_sym_let] = ACTIONS(1069), + [anon_sym_match] = ACTIONS(1069), + [anon_sym_pub] = ACTIONS(1069), + [anon_sym_return] = ACTIONS(1069), + [anon_sym_storage] = ACTIONS(1069), + [anon_sym_struct] = ACTIONS(1069), + [anon_sym_trait] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1069), + [anon_sym_use] = ACTIONS(1069), + [anon_sym_while] = ACTIONS(1069), + [anon_sym_POUND] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_asm] = ACTIONS(1069), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_yield] = ACTIONS(1069), + [anon_sym_move] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(1067), + [aux_sym_string_literal_token1] = ACTIONS(1067), + [sym_char_literal] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(1069), + [anon_sym_false] = ACTIONS(1069), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1048), - [sym_metavariable] = ACTIONS(1046), - [sym_raw_string_literal] = ACTIONS(1046), - [sym_float_literal] = ACTIONS(1046), + [sym_self] = ACTIONS(1069), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1067), + [sym_float_literal] = ACTIONS(1067), [sym_block_comment] = ACTIONS(3), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_u8] = ACTIONS(1052), - [anon_sym_i8] = ACTIONS(1052), - [anon_sym_u16] = ACTIONS(1052), - [anon_sym_i16] = ACTIONS(1052), - [anon_sym_u32] = ACTIONS(1052), - [anon_sym_i32] = ACTIONS(1052), - [anon_sym_u64] = ACTIONS(1052), - [anon_sym_i64] = ACTIONS(1052), - [anon_sym_u128] = ACTIONS(1052), - [anon_sym_i128] = ACTIONS(1052), - [anon_sym_isize] = ACTIONS(1052), - [anon_sym_usize] = ACTIONS(1052), - [anon_sym_f32] = ACTIONS(1052), - [anon_sym_f64] = ACTIONS(1052), - [anon_sym_bool] = ACTIONS(1052), - [anon_sym_char] = ACTIONS(1052), - [anon_sym_str] = ACTIONS(1052), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_contract] = ACTIONS(1052), - [anon_sym_script] = ACTIONS(1052), - [anon_sym_predicate] = ACTIONS(1052), - [anon_sym_library] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1052), - [anon_sym_abi] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_configurable] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_dep] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_impl] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_pub] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_storage] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_trait] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_asm] = ACTIONS(1052), - [anon_sym_LT] = ACTIONS(1050), - [anon_sym_COLON_COLON] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_DOT_DOT] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_yield] = ACTIONS(1052), - [anon_sym_move] = ACTIONS(1052), - [sym_integer_literal] = ACTIONS(1050), - [aux_sym_string_literal_token1] = ACTIONS(1050), - [sym_char_literal] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), + [ts_builtin_sym_end] = ACTIONS(1071), + [sym_identifier] = ACTIONS(1073), + [anon_sym_SEMI] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_u256] = ACTIONS(1073), + [anon_sym_i256] = ACTIONS(1073), + [anon_sym_b256] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_contract] = ACTIONS(1073), + [anon_sym_script] = ACTIONS(1073), + [anon_sym_predicate] = ACTIONS(1073), + [anon_sym_library] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1073), + [anon_sym_abi] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1073), + [anon_sym_configurable] = ACTIONS(1073), + [anon_sym_const] = ACTIONS(1073), + [anon_sym_continue] = ACTIONS(1073), + [anon_sym_default] = ACTIONS(1073), + [anon_sym_mod] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1073), + [anon_sym_fn] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1073), + [anon_sym_if] = ACTIONS(1073), + [anon_sym_impl] = ACTIONS(1073), + [anon_sym_let] = ACTIONS(1073), + [anon_sym_match] = ACTIONS(1073), + [anon_sym_pub] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_storage] = ACTIONS(1073), + [anon_sym_struct] = ACTIONS(1073), + [anon_sym_trait] = ACTIONS(1073), + [anon_sym_type] = ACTIONS(1073), + [anon_sym_use] = ACTIONS(1073), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_POUND] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_asm] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_move] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [aux_sym_string_literal_token1] = ACTIONS(1071), + [sym_char_literal] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1052), - [sym_metavariable] = ACTIONS(1050), - [sym_raw_string_literal] = ACTIONS(1050), - [sym_float_literal] = ACTIONS(1050), + [sym_self] = ACTIONS(1073), + [sym_metavariable] = ACTIONS(1071), + [sym_raw_string_literal] = ACTIONS(1071), + [sym_float_literal] = ACTIONS(1071), [sym_block_comment] = ACTIONS(3), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_identifier] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_u8] = ACTIONS(1056), - [anon_sym_i8] = ACTIONS(1056), - [anon_sym_u16] = ACTIONS(1056), - [anon_sym_i16] = ACTIONS(1056), - [anon_sym_u32] = ACTIONS(1056), - [anon_sym_i32] = ACTIONS(1056), - [anon_sym_u64] = ACTIONS(1056), - [anon_sym_i64] = ACTIONS(1056), - [anon_sym_u128] = ACTIONS(1056), - [anon_sym_i128] = ACTIONS(1056), - [anon_sym_isize] = ACTIONS(1056), - [anon_sym_usize] = ACTIONS(1056), - [anon_sym_f32] = ACTIONS(1056), - [anon_sym_f64] = ACTIONS(1056), - [anon_sym_bool] = ACTIONS(1056), - [anon_sym_char] = ACTIONS(1056), - [anon_sym_str] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_contract] = ACTIONS(1056), - [anon_sym_script] = ACTIONS(1056), - [anon_sym_predicate] = ACTIONS(1056), - [anon_sym_library] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1056), - [anon_sym_abi] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_configurable] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_dep] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_fn] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_storage] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_trait] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_asm] = ACTIONS(1056), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_COLON_COLON] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_DOT_DOT] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_move] = ACTIONS(1056), - [sym_integer_literal] = ACTIONS(1054), - [aux_sym_string_literal_token1] = ACTIONS(1054), - [sym_char_literal] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1056), - [anon_sym_false] = ACTIONS(1056), + [ts_builtin_sym_end] = ACTIONS(1075), + [sym_identifier] = ACTIONS(1077), + [anon_sym_SEMI] = ACTIONS(1075), + [anon_sym_u8] = ACTIONS(1077), + [anon_sym_i8] = ACTIONS(1077), + [anon_sym_u16] = ACTIONS(1077), + [anon_sym_i16] = ACTIONS(1077), + [anon_sym_u32] = ACTIONS(1077), + [anon_sym_i32] = ACTIONS(1077), + [anon_sym_u64] = ACTIONS(1077), + [anon_sym_i64] = ACTIONS(1077), + [anon_sym_u128] = ACTIONS(1077), + [anon_sym_i128] = ACTIONS(1077), + [anon_sym_u256] = ACTIONS(1077), + [anon_sym_i256] = ACTIONS(1077), + [anon_sym_b256] = ACTIONS(1077), + [anon_sym_isize] = ACTIONS(1077), + [anon_sym_usize] = ACTIONS(1077), + [anon_sym_f32] = ACTIONS(1077), + [anon_sym_f64] = ACTIONS(1077), + [anon_sym_bool] = ACTIONS(1077), + [anon_sym_char] = ACTIONS(1077), + [anon_sym_str] = ACTIONS(1077), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_contract] = ACTIONS(1077), + [anon_sym_script] = ACTIONS(1077), + [anon_sym_predicate] = ACTIONS(1077), + [anon_sym_library] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_abi] = ACTIONS(1077), + [anon_sym_break] = ACTIONS(1077), + [anon_sym_configurable] = ACTIONS(1077), + [anon_sym_const] = ACTIONS(1077), + [anon_sym_continue] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1077), + [anon_sym_mod] = ACTIONS(1077), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_fn] = ACTIONS(1077), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_if] = ACTIONS(1077), + [anon_sym_impl] = ACTIONS(1077), + [anon_sym_let] = ACTIONS(1077), + [anon_sym_match] = ACTIONS(1077), + [anon_sym_pub] = ACTIONS(1077), + [anon_sym_return] = ACTIONS(1077), + [anon_sym_storage] = ACTIONS(1077), + [anon_sym_struct] = ACTIONS(1077), + [anon_sym_trait] = ACTIONS(1077), + [anon_sym_type] = ACTIONS(1077), + [anon_sym_use] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1077), + [anon_sym_POUND] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_asm] = ACTIONS(1077), + [anon_sym_LT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(1075), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_yield] = ACTIONS(1077), + [anon_sym_move] = ACTIONS(1077), + [sym_integer_literal] = ACTIONS(1075), + [aux_sym_string_literal_token1] = ACTIONS(1075), + [sym_char_literal] = ACTIONS(1075), + [anon_sym_true] = ACTIONS(1077), + [anon_sym_false] = ACTIONS(1077), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1056), - [sym_metavariable] = ACTIONS(1054), - [sym_raw_string_literal] = ACTIONS(1054), - [sym_float_literal] = ACTIONS(1054), + [sym_self] = ACTIONS(1077), + [sym_metavariable] = ACTIONS(1075), + [sym_raw_string_literal] = ACTIONS(1075), + [sym_float_literal] = ACTIONS(1075), [sym_block_comment] = ACTIONS(3), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_u8] = ACTIONS(1060), - [anon_sym_i8] = ACTIONS(1060), - [anon_sym_u16] = ACTIONS(1060), - [anon_sym_i16] = ACTIONS(1060), - [anon_sym_u32] = ACTIONS(1060), - [anon_sym_i32] = ACTIONS(1060), - [anon_sym_u64] = ACTIONS(1060), - [anon_sym_i64] = ACTIONS(1060), - [anon_sym_u128] = ACTIONS(1060), - [anon_sym_i128] = ACTIONS(1060), - [anon_sym_isize] = ACTIONS(1060), - [anon_sym_usize] = ACTIONS(1060), - [anon_sym_f32] = ACTIONS(1060), - [anon_sym_f64] = ACTIONS(1060), - [anon_sym_bool] = ACTIONS(1060), - [anon_sym_char] = ACTIONS(1060), - [anon_sym_str] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_contract] = ACTIONS(1060), - [anon_sym_script] = ACTIONS(1060), - [anon_sym_predicate] = ACTIONS(1060), - [anon_sym_library] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1060), - [anon_sym_abi] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_configurable] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_dep] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_fn] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_impl] = ACTIONS(1060), - [anon_sym_let] = ACTIONS(1060), - [anon_sym_match] = ACTIONS(1060), - [anon_sym_pub] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_storage] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_trait] = ACTIONS(1060), - [anon_sym_use] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1058), - [anon_sym_COLON_COLON] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_DOT_DOT] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_yield] = ACTIONS(1060), - [anon_sym_move] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1058), - [aux_sym_string_literal_token1] = ACTIONS(1058), - [sym_char_literal] = ACTIONS(1058), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), + [ts_builtin_sym_end] = ACTIONS(1079), + [sym_identifier] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1079), + [anon_sym_u8] = ACTIONS(1081), + [anon_sym_i8] = ACTIONS(1081), + [anon_sym_u16] = ACTIONS(1081), + [anon_sym_i16] = ACTIONS(1081), + [anon_sym_u32] = ACTIONS(1081), + [anon_sym_i32] = ACTIONS(1081), + [anon_sym_u64] = ACTIONS(1081), + [anon_sym_i64] = ACTIONS(1081), + [anon_sym_u128] = ACTIONS(1081), + [anon_sym_i128] = ACTIONS(1081), + [anon_sym_u256] = ACTIONS(1081), + [anon_sym_i256] = ACTIONS(1081), + [anon_sym_b256] = ACTIONS(1081), + [anon_sym_isize] = ACTIONS(1081), + [anon_sym_usize] = ACTIONS(1081), + [anon_sym_f32] = ACTIONS(1081), + [anon_sym_f64] = ACTIONS(1081), + [anon_sym_bool] = ACTIONS(1081), + [anon_sym_char] = ACTIONS(1081), + [anon_sym_str] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1079), + [anon_sym_contract] = ACTIONS(1081), + [anon_sym_script] = ACTIONS(1081), + [anon_sym_predicate] = ACTIONS(1081), + [anon_sym_library] = ACTIONS(1081), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_abi] = ACTIONS(1081), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_configurable] = ACTIONS(1081), + [anon_sym_const] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1081), + [anon_sym_default] = ACTIONS(1081), + [anon_sym_mod] = ACTIONS(1081), + [anon_sym_enum] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_for] = ACTIONS(1081), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_impl] = ACTIONS(1081), + [anon_sym_let] = ACTIONS(1081), + [anon_sym_match] = ACTIONS(1081), + [anon_sym_pub] = ACTIONS(1081), + [anon_sym_return] = ACTIONS(1081), + [anon_sym_storage] = ACTIONS(1081), + [anon_sym_struct] = ACTIONS(1081), + [anon_sym_trait] = ACTIONS(1081), + [anon_sym_type] = ACTIONS(1081), + [anon_sym_use] = ACTIONS(1081), + [anon_sym_while] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_asm] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1079), + [anon_sym_yield] = ACTIONS(1081), + [anon_sym_move] = ACTIONS(1081), + [sym_integer_literal] = ACTIONS(1079), + [aux_sym_string_literal_token1] = ACTIONS(1079), + [sym_char_literal] = ACTIONS(1079), + [anon_sym_true] = ACTIONS(1081), + [anon_sym_false] = ACTIONS(1081), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1060), - [sym_metavariable] = ACTIONS(1058), - [sym_raw_string_literal] = ACTIONS(1058), - [sym_float_literal] = ACTIONS(1058), + [sym_self] = ACTIONS(1081), + [sym_metavariable] = ACTIONS(1079), + [sym_raw_string_literal] = ACTIONS(1079), + [sym_float_literal] = ACTIONS(1079), [sym_block_comment] = ACTIONS(3), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_u8] = ACTIONS(1064), - [anon_sym_i8] = ACTIONS(1064), - [anon_sym_u16] = ACTIONS(1064), - [anon_sym_i16] = ACTIONS(1064), - [anon_sym_u32] = ACTIONS(1064), - [anon_sym_i32] = ACTIONS(1064), - [anon_sym_u64] = ACTIONS(1064), - [anon_sym_i64] = ACTIONS(1064), - [anon_sym_u128] = ACTIONS(1064), - [anon_sym_i128] = ACTIONS(1064), - [anon_sym_isize] = ACTIONS(1064), - [anon_sym_usize] = ACTIONS(1064), - [anon_sym_f32] = ACTIONS(1064), - [anon_sym_f64] = ACTIONS(1064), - [anon_sym_bool] = ACTIONS(1064), - [anon_sym_char] = ACTIONS(1064), - [anon_sym_str] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1062), - [anon_sym_contract] = ACTIONS(1064), - [anon_sym_script] = ACTIONS(1064), - [anon_sym_predicate] = ACTIONS(1064), - [anon_sym_library] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_abi] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_configurable] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_dep] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_fn] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_impl] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(1064), - [anon_sym_pub] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_storage] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_trait] = ACTIONS(1064), - [anon_sym_use] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_asm] = ACTIONS(1064), - [anon_sym_LT] = ACTIONS(1062), - [anon_sym_COLON_COLON] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_yield] = ACTIONS(1064), - [anon_sym_move] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1062), - [aux_sym_string_literal_token1] = ACTIONS(1062), - [sym_char_literal] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(1064), - [anon_sym_false] = ACTIONS(1064), + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_u256] = ACTIONS(1085), + [anon_sym_i256] = ACTIONS(1085), + [anon_sym_b256] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_contract] = ACTIONS(1085), + [anon_sym_script] = ACTIONS(1085), + [anon_sym_predicate] = ACTIONS(1085), + [anon_sym_library] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1085), + [anon_sym_abi] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_configurable] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1085), + [anon_sym_enum] = ACTIONS(1085), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_impl] = ACTIONS(1085), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1085), + [anon_sym_pub] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_storage] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1085), + [anon_sym_trait] = ACTIONS(1085), + [anon_sym_type] = ACTIONS(1085), + [anon_sym_use] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_asm] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_yield] = ACTIONS(1085), + [anon_sym_move] = ACTIONS(1085), + [sym_integer_literal] = ACTIONS(1083), + [aux_sym_string_literal_token1] = ACTIONS(1083), + [sym_char_literal] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1064), - [sym_metavariable] = ACTIONS(1062), - [sym_raw_string_literal] = ACTIONS(1062), - [sym_float_literal] = ACTIONS(1062), + [sym_self] = ACTIONS(1085), + [sym_metavariable] = ACTIONS(1083), + [sym_raw_string_literal] = ACTIONS(1083), + [sym_float_literal] = ACTIONS(1083), [sym_block_comment] = ACTIONS(3), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_u8] = ACTIONS(1068), - [anon_sym_i8] = ACTIONS(1068), - [anon_sym_u16] = ACTIONS(1068), - [anon_sym_i16] = ACTIONS(1068), - [anon_sym_u32] = ACTIONS(1068), - [anon_sym_i32] = ACTIONS(1068), - [anon_sym_u64] = ACTIONS(1068), - [anon_sym_i64] = ACTIONS(1068), - [anon_sym_u128] = ACTIONS(1068), - [anon_sym_i128] = ACTIONS(1068), - [anon_sym_isize] = ACTIONS(1068), - [anon_sym_usize] = ACTIONS(1068), - [anon_sym_f32] = ACTIONS(1068), - [anon_sym_f64] = ACTIONS(1068), - [anon_sym_bool] = ACTIONS(1068), - [anon_sym_char] = ACTIONS(1068), - [anon_sym_str] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_contract] = ACTIONS(1068), - [anon_sym_script] = ACTIONS(1068), - [anon_sym_predicate] = ACTIONS(1068), - [anon_sym_library] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1068), - [anon_sym_abi] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_configurable] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_dep] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_fn] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_impl] = ACTIONS(1068), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_match] = ACTIONS(1068), - [anon_sym_pub] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_storage] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_trait] = ACTIONS(1068), - [anon_sym_use] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_asm] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1066), - [anon_sym_COLON_COLON] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_yield] = ACTIONS(1068), - [anon_sym_move] = ACTIONS(1068), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1066), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), + [ts_builtin_sym_end] = ACTIONS(1087), + [sym_identifier] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_u8] = ACTIONS(1089), + [anon_sym_i8] = ACTIONS(1089), + [anon_sym_u16] = ACTIONS(1089), + [anon_sym_i16] = ACTIONS(1089), + [anon_sym_u32] = ACTIONS(1089), + [anon_sym_i32] = ACTIONS(1089), + [anon_sym_u64] = ACTIONS(1089), + [anon_sym_i64] = ACTIONS(1089), + [anon_sym_u128] = ACTIONS(1089), + [anon_sym_i128] = ACTIONS(1089), + [anon_sym_u256] = ACTIONS(1089), + [anon_sym_i256] = ACTIONS(1089), + [anon_sym_b256] = ACTIONS(1089), + [anon_sym_isize] = ACTIONS(1089), + [anon_sym_usize] = ACTIONS(1089), + [anon_sym_f32] = ACTIONS(1089), + [anon_sym_f64] = ACTIONS(1089), + [anon_sym_bool] = ACTIONS(1089), + [anon_sym_char] = ACTIONS(1089), + [anon_sym_str] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_contract] = ACTIONS(1089), + [anon_sym_script] = ACTIONS(1089), + [anon_sym_predicate] = ACTIONS(1089), + [anon_sym_library] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_abi] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_configurable] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_default] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_enum] = ACTIONS(1089), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_impl] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_pub] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_storage] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1089), + [anon_sym_trait] = ACTIONS(1089), + [anon_sym_type] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_asm] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1087), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_yield] = ACTIONS(1089), + [anon_sym_move] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(1087), + [aux_sym_string_literal_token1] = ACTIONS(1087), + [sym_char_literal] = ACTIONS(1087), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1068), - [sym_metavariable] = ACTIONS(1066), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), + [sym_self] = ACTIONS(1089), + [sym_metavariable] = ACTIONS(1087), + [sym_raw_string_literal] = ACTIONS(1087), + [sym_float_literal] = ACTIONS(1087), [sym_block_comment] = ACTIONS(3), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1070), - [sym_identifier] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_u8] = ACTIONS(1072), - [anon_sym_i8] = ACTIONS(1072), - [anon_sym_u16] = ACTIONS(1072), - [anon_sym_i16] = ACTIONS(1072), - [anon_sym_u32] = ACTIONS(1072), - [anon_sym_i32] = ACTIONS(1072), - [anon_sym_u64] = ACTIONS(1072), - [anon_sym_i64] = ACTIONS(1072), - [anon_sym_u128] = ACTIONS(1072), - [anon_sym_i128] = ACTIONS(1072), - [anon_sym_isize] = ACTIONS(1072), - [anon_sym_usize] = ACTIONS(1072), - [anon_sym_f32] = ACTIONS(1072), - [anon_sym_f64] = ACTIONS(1072), - [anon_sym_bool] = ACTIONS(1072), - [anon_sym_char] = ACTIONS(1072), - [anon_sym_str] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_contract] = ACTIONS(1072), - [anon_sym_script] = ACTIONS(1072), - [anon_sym_predicate] = ACTIONS(1072), - [anon_sym_library] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1072), - [anon_sym_abi] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_configurable] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_dep] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_fn] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_impl] = ACTIONS(1072), - [anon_sym_let] = ACTIONS(1072), - [anon_sym_match] = ACTIONS(1072), - [anon_sym_pub] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_storage] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_trait] = ACTIONS(1072), - [anon_sym_use] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_POUND] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_asm] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(1070), - [anon_sym_COLON_COLON] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_yield] = ACTIONS(1072), - [anon_sym_move] = ACTIONS(1072), - [sym_integer_literal] = ACTIONS(1070), - [aux_sym_string_literal_token1] = ACTIONS(1070), - [sym_char_literal] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_identifier] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_u8] = ACTIONS(1093), + [anon_sym_i8] = ACTIONS(1093), + [anon_sym_u16] = ACTIONS(1093), + [anon_sym_i16] = ACTIONS(1093), + [anon_sym_u32] = ACTIONS(1093), + [anon_sym_i32] = ACTIONS(1093), + [anon_sym_u64] = ACTIONS(1093), + [anon_sym_i64] = ACTIONS(1093), + [anon_sym_u128] = ACTIONS(1093), + [anon_sym_i128] = ACTIONS(1093), + [anon_sym_u256] = ACTIONS(1093), + [anon_sym_i256] = ACTIONS(1093), + [anon_sym_b256] = ACTIONS(1093), + [anon_sym_isize] = ACTIONS(1093), + [anon_sym_usize] = ACTIONS(1093), + [anon_sym_f32] = ACTIONS(1093), + [anon_sym_f64] = ACTIONS(1093), + [anon_sym_bool] = ACTIONS(1093), + [anon_sym_char] = ACTIONS(1093), + [anon_sym_str] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_contract] = ACTIONS(1093), + [anon_sym_script] = ACTIONS(1093), + [anon_sym_predicate] = ACTIONS(1093), + [anon_sym_library] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_SQUOTE] = ACTIONS(1093), + [anon_sym_abi] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_configurable] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_impl] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_pub] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_storage] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1093), + [anon_sym_trait] = ACTIONS(1093), + [anon_sym_type] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_asm] = ACTIONS(1093), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_COLON_COLON] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_move] = ACTIONS(1093), + [sym_integer_literal] = ACTIONS(1091), + [aux_sym_string_literal_token1] = ACTIONS(1091), + [sym_char_literal] = ACTIONS(1091), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_metavariable] = ACTIONS(1070), - [sym_raw_string_literal] = ACTIONS(1070), - [sym_float_literal] = ACTIONS(1070), + [sym_self] = ACTIONS(1093), + [sym_metavariable] = ACTIONS(1091), + [sym_raw_string_literal] = ACTIONS(1091), + [sym_float_literal] = ACTIONS(1091), [sym_block_comment] = ACTIONS(3), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(1074), - [sym_identifier] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_u8] = ACTIONS(1076), - [anon_sym_i8] = ACTIONS(1076), - [anon_sym_u16] = ACTIONS(1076), - [anon_sym_i16] = ACTIONS(1076), - [anon_sym_u32] = ACTIONS(1076), - [anon_sym_i32] = ACTIONS(1076), - [anon_sym_u64] = ACTIONS(1076), - [anon_sym_i64] = ACTIONS(1076), - [anon_sym_u128] = ACTIONS(1076), - [anon_sym_i128] = ACTIONS(1076), - [anon_sym_isize] = ACTIONS(1076), - [anon_sym_usize] = ACTIONS(1076), - [anon_sym_f32] = ACTIONS(1076), - [anon_sym_f64] = ACTIONS(1076), - [anon_sym_bool] = ACTIONS(1076), - [anon_sym_char] = ACTIONS(1076), - [anon_sym_str] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1074), - [anon_sym_contract] = ACTIONS(1076), - [anon_sym_script] = ACTIONS(1076), - [anon_sym_predicate] = ACTIONS(1076), - [anon_sym_library] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1076), - [anon_sym_abi] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_configurable] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_dep] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_fn] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_impl] = ACTIONS(1076), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_match] = ACTIONS(1076), - [anon_sym_pub] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_storage] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_trait] = ACTIONS(1076), - [anon_sym_use] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_POUND] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_asm] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(1074), - [anon_sym_COLON_COLON] = ACTIONS(1074), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_DOT_DOT] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_PIPE] = ACTIONS(1074), - [anon_sym_yield] = ACTIONS(1076), - [anon_sym_move] = ACTIONS(1076), - [sym_integer_literal] = ACTIONS(1074), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1074), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), + [ts_builtin_sym_end] = ACTIONS(1095), + [sym_identifier] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1095), + [anon_sym_u8] = ACTIONS(1097), + [anon_sym_i8] = ACTIONS(1097), + [anon_sym_u16] = ACTIONS(1097), + [anon_sym_i16] = ACTIONS(1097), + [anon_sym_u32] = ACTIONS(1097), + [anon_sym_i32] = ACTIONS(1097), + [anon_sym_u64] = ACTIONS(1097), + [anon_sym_i64] = ACTIONS(1097), + [anon_sym_u128] = ACTIONS(1097), + [anon_sym_i128] = ACTIONS(1097), + [anon_sym_u256] = ACTIONS(1097), + [anon_sym_i256] = ACTIONS(1097), + [anon_sym_b256] = ACTIONS(1097), + [anon_sym_isize] = ACTIONS(1097), + [anon_sym_usize] = ACTIONS(1097), + [anon_sym_f32] = ACTIONS(1097), + [anon_sym_f64] = ACTIONS(1097), + [anon_sym_bool] = ACTIONS(1097), + [anon_sym_char] = ACTIONS(1097), + [anon_sym_str] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_contract] = ACTIONS(1097), + [anon_sym_script] = ACTIONS(1097), + [anon_sym_predicate] = ACTIONS(1097), + [anon_sym_library] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_abi] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_configurable] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_default] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1097), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_impl] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_pub] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_storage] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1097), + [anon_sym_trait] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_use] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_asm] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1095), + [anon_sym_COLON_COLON] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_DOT_DOT] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_yield] = ACTIONS(1097), + [anon_sym_move] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(1095), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(1095), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1076), - [sym_metavariable] = ACTIONS(1074), - [sym_raw_string_literal] = ACTIONS(1074), - [sym_float_literal] = ACTIONS(1074), + [sym_self] = ACTIONS(1097), + [sym_metavariable] = ACTIONS(1095), + [sym_raw_string_literal] = ACTIONS(1095), + [sym_float_literal] = ACTIONS(1095), [sym_block_comment] = ACTIONS(3), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(1078), - [sym_identifier] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_contract] = ACTIONS(1080), - [anon_sym_script] = ACTIONS(1080), - [anon_sym_predicate] = ACTIONS(1080), - [anon_sym_library] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym_abi] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_configurable] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_dep] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_fn] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_impl] = ACTIONS(1080), - [anon_sym_let] = ACTIONS(1080), - [anon_sym_match] = ACTIONS(1080), - [anon_sym_pub] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_storage] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_trait] = ACTIONS(1080), - [anon_sym_use] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_POUND] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_asm] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_COLON_COLON] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1080), - [anon_sym_move] = ACTIONS(1080), - [sym_integer_literal] = ACTIONS(1078), - [aux_sym_string_literal_token1] = ACTIONS(1078), - [sym_char_literal] = ACTIONS(1078), - [anon_sym_true] = ACTIONS(1080), - [anon_sym_false] = ACTIONS(1080), + [sym_primitive_type] = STATE(1174), + [sym_attribute_item] = STATE(414), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_match_arm] = STATE(409), + [sym_last_match_arm] = STATE(2185), + [sym_match_pattern] = STATE(2033), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_enum_variant_list_repeat1] = STATE(414), + [aux_sym_match_block_repeat1] = STATE(409), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RBRACE] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1078), - [sym_raw_string_literal] = ACTIONS(1078), - [sym_float_literal] = ACTIONS(1078), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_u8] = ACTIONS(1084), - [anon_sym_i8] = ACTIONS(1084), - [anon_sym_u16] = ACTIONS(1084), - [anon_sym_i16] = ACTIONS(1084), - [anon_sym_u32] = ACTIONS(1084), - [anon_sym_i32] = ACTIONS(1084), - [anon_sym_u64] = ACTIONS(1084), - [anon_sym_i64] = ACTIONS(1084), - [anon_sym_u128] = ACTIONS(1084), - [anon_sym_i128] = ACTIONS(1084), - [anon_sym_isize] = ACTIONS(1084), - [anon_sym_usize] = ACTIONS(1084), - [anon_sym_f32] = ACTIONS(1084), - [anon_sym_f64] = ACTIONS(1084), - [anon_sym_bool] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_str] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_contract] = ACTIONS(1084), - [anon_sym_script] = ACTIONS(1084), - [anon_sym_predicate] = ACTIONS(1084), - [anon_sym_library] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1084), - [anon_sym_abi] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_configurable] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_dep] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_fn] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_impl] = ACTIONS(1084), - [anon_sym_let] = ACTIONS(1084), - [anon_sym_match] = ACTIONS(1084), - [anon_sym_pub] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_storage] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_trait] = ACTIONS(1084), - [anon_sym_use] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_POUND] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_asm] = ACTIONS(1084), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_COLON_COLON] = ACTIONS(1082), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_move] = ACTIONS(1084), - [sym_integer_literal] = ACTIONS(1082), - [aux_sym_string_literal_token1] = ACTIONS(1082), - [sym_char_literal] = ACTIONS(1082), - [anon_sym_true] = ACTIONS(1084), - [anon_sym_false] = ACTIONS(1084), + [ts_builtin_sym_end] = ACTIONS(1101), + [sym_identifier] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_u8] = ACTIONS(1103), + [anon_sym_i8] = ACTIONS(1103), + [anon_sym_u16] = ACTIONS(1103), + [anon_sym_i16] = ACTIONS(1103), + [anon_sym_u32] = ACTIONS(1103), + [anon_sym_i32] = ACTIONS(1103), + [anon_sym_u64] = ACTIONS(1103), + [anon_sym_i64] = ACTIONS(1103), + [anon_sym_u128] = ACTIONS(1103), + [anon_sym_i128] = ACTIONS(1103), + [anon_sym_u256] = ACTIONS(1103), + [anon_sym_i256] = ACTIONS(1103), + [anon_sym_b256] = ACTIONS(1103), + [anon_sym_isize] = ACTIONS(1103), + [anon_sym_usize] = ACTIONS(1103), + [anon_sym_f32] = ACTIONS(1103), + [anon_sym_f64] = ACTIONS(1103), + [anon_sym_bool] = ACTIONS(1103), + [anon_sym_char] = ACTIONS(1103), + [anon_sym_str] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_contract] = ACTIONS(1103), + [anon_sym_script] = ACTIONS(1103), + [anon_sym_predicate] = ACTIONS(1103), + [anon_sym_library] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_abi] = ACTIONS(1103), + [anon_sym_break] = ACTIONS(1103), + [anon_sym_configurable] = ACTIONS(1103), + [anon_sym_const] = ACTIONS(1103), + [anon_sym_continue] = ACTIONS(1103), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_mod] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1103), + [anon_sym_for] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1103), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1103), + [anon_sym_match] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(1103), + [anon_sym_return] = ACTIONS(1103), + [anon_sym_storage] = ACTIONS(1103), + [anon_sym_struct] = ACTIONS(1103), + [anon_sym_trait] = ACTIONS(1103), + [anon_sym_type] = ACTIONS(1103), + [anon_sym_use] = ACTIONS(1103), + [anon_sym_while] = ACTIONS(1103), + [anon_sym_POUND] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_asm] = ACTIONS(1103), + [anon_sym_LT] = ACTIONS(1101), + [anon_sym_COLON_COLON] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1101), + [anon_sym_yield] = ACTIONS(1103), + [anon_sym_move] = ACTIONS(1103), + [sym_integer_literal] = ACTIONS(1101), + [aux_sym_string_literal_token1] = ACTIONS(1101), + [sym_char_literal] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1084), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1082), - [sym_float_literal] = ACTIONS(1082), + [sym_self] = ACTIONS(1103), + [sym_metavariable] = ACTIONS(1101), + [sym_raw_string_literal] = ACTIONS(1101), + [sym_float_literal] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_u8] = ACTIONS(1088), - [anon_sym_i8] = ACTIONS(1088), - [anon_sym_u16] = ACTIONS(1088), - [anon_sym_i16] = ACTIONS(1088), - [anon_sym_u32] = ACTIONS(1088), - [anon_sym_i32] = ACTIONS(1088), - [anon_sym_u64] = ACTIONS(1088), - [anon_sym_i64] = ACTIONS(1088), - [anon_sym_u128] = ACTIONS(1088), - [anon_sym_i128] = ACTIONS(1088), - [anon_sym_isize] = ACTIONS(1088), - [anon_sym_usize] = ACTIONS(1088), - [anon_sym_f32] = ACTIONS(1088), - [anon_sym_f64] = ACTIONS(1088), - [anon_sym_bool] = ACTIONS(1088), - [anon_sym_char] = ACTIONS(1088), - [anon_sym_str] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1086), - [anon_sym_contract] = ACTIONS(1088), - [anon_sym_script] = ACTIONS(1088), - [anon_sym_predicate] = ACTIONS(1088), - [anon_sym_library] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_RBRACE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_abi] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_configurable] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_dep] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_fn] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_impl] = ACTIONS(1088), - [anon_sym_let] = ACTIONS(1088), - [anon_sym_match] = ACTIONS(1088), - [anon_sym_pub] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_storage] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_trait] = ACTIONS(1088), - [anon_sym_use] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_asm] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_DOT_DOT] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_yield] = ACTIONS(1088), - [anon_sym_move] = ACTIONS(1088), - [sym_integer_literal] = ACTIONS(1086), - [aux_sym_string_literal_token1] = ACTIONS(1086), - [sym_char_literal] = ACTIONS(1086), - [anon_sym_true] = ACTIONS(1088), - [anon_sym_false] = ACTIONS(1088), + [ts_builtin_sym_end] = ACTIONS(1105), + [sym_identifier] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_u8] = ACTIONS(1107), + [anon_sym_i8] = ACTIONS(1107), + [anon_sym_u16] = ACTIONS(1107), + [anon_sym_i16] = ACTIONS(1107), + [anon_sym_u32] = ACTIONS(1107), + [anon_sym_i32] = ACTIONS(1107), + [anon_sym_u64] = ACTIONS(1107), + [anon_sym_i64] = ACTIONS(1107), + [anon_sym_u128] = ACTIONS(1107), + [anon_sym_i128] = ACTIONS(1107), + [anon_sym_u256] = ACTIONS(1107), + [anon_sym_i256] = ACTIONS(1107), + [anon_sym_b256] = ACTIONS(1107), + [anon_sym_isize] = ACTIONS(1107), + [anon_sym_usize] = ACTIONS(1107), + [anon_sym_f32] = ACTIONS(1107), + [anon_sym_f64] = ACTIONS(1107), + [anon_sym_bool] = ACTIONS(1107), + [anon_sym_char] = ACTIONS(1107), + [anon_sym_str] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_contract] = ACTIONS(1107), + [anon_sym_script] = ACTIONS(1107), + [anon_sym_predicate] = ACTIONS(1107), + [anon_sym_library] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_RBRACE] = ACTIONS(1105), + [anon_sym_SQUOTE] = ACTIONS(1107), + [anon_sym_abi] = ACTIONS(1107), + [anon_sym_break] = ACTIONS(1107), + [anon_sym_configurable] = ACTIONS(1107), + [anon_sym_const] = ACTIONS(1107), + [anon_sym_continue] = ACTIONS(1107), + [anon_sym_default] = ACTIONS(1107), + [anon_sym_mod] = ACTIONS(1107), + [anon_sym_enum] = ACTIONS(1107), + [anon_sym_fn] = ACTIONS(1107), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1107), + [anon_sym_impl] = ACTIONS(1107), + [anon_sym_let] = ACTIONS(1107), + [anon_sym_match] = ACTIONS(1107), + [anon_sym_pub] = ACTIONS(1107), + [anon_sym_return] = ACTIONS(1107), + [anon_sym_storage] = ACTIONS(1107), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_trait] = ACTIONS(1107), + [anon_sym_type] = ACTIONS(1107), + [anon_sym_use] = ACTIONS(1107), + [anon_sym_while] = ACTIONS(1107), + [anon_sym_POUND] = ACTIONS(1105), + [anon_sym_BANG] = ACTIONS(1105), + [anon_sym_asm] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_COLON_COLON] = ACTIONS(1105), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1105), + [anon_sym_DOT_DOT] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_yield] = ACTIONS(1107), + [anon_sym_move] = ACTIONS(1107), + [sym_integer_literal] = ACTIONS(1105), + [aux_sym_string_literal_token1] = ACTIONS(1105), + [sym_char_literal] = ACTIONS(1105), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1088), - [sym_metavariable] = ACTIONS(1086), - [sym_raw_string_literal] = ACTIONS(1086), - [sym_float_literal] = ACTIONS(1086), + [sym_self] = ACTIONS(1107), + [sym_metavariable] = ACTIONS(1105), + [sym_raw_string_literal] = ACTIONS(1105), + [sym_float_literal] = ACTIONS(1105), [sym_block_comment] = ACTIONS(3), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(1090), - [sym_identifier] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_u8] = ACTIONS(1092), - [anon_sym_i8] = ACTIONS(1092), - [anon_sym_u16] = ACTIONS(1092), - [anon_sym_i16] = ACTIONS(1092), - [anon_sym_u32] = ACTIONS(1092), - [anon_sym_i32] = ACTIONS(1092), - [anon_sym_u64] = ACTIONS(1092), - [anon_sym_i64] = ACTIONS(1092), - [anon_sym_u128] = ACTIONS(1092), - [anon_sym_i128] = ACTIONS(1092), - [anon_sym_isize] = ACTIONS(1092), - [anon_sym_usize] = ACTIONS(1092), - [anon_sym_f32] = ACTIONS(1092), - [anon_sym_f64] = ACTIONS(1092), - [anon_sym_bool] = ACTIONS(1092), - [anon_sym_char] = ACTIONS(1092), - [anon_sym_str] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_contract] = ACTIONS(1092), - [anon_sym_script] = ACTIONS(1092), - [anon_sym_predicate] = ACTIONS(1092), - [anon_sym_library] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1092), - [anon_sym_abi] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_configurable] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_dep] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_fn] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_impl] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_match] = ACTIONS(1092), - [anon_sym_pub] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_storage] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_trait] = ACTIONS(1092), - [anon_sym_use] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_POUND] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_asm] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_yield] = ACTIONS(1092), - [anon_sym_move] = ACTIONS(1092), - [sym_integer_literal] = ACTIONS(1090), - [aux_sym_string_literal_token1] = ACTIONS(1090), - [sym_char_literal] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1092), - [anon_sym_false] = ACTIONS(1092), + [ts_builtin_sym_end] = ACTIONS(1109), + [sym_identifier] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1109), + [anon_sym_u8] = ACTIONS(1111), + [anon_sym_i8] = ACTIONS(1111), + [anon_sym_u16] = ACTIONS(1111), + [anon_sym_i16] = ACTIONS(1111), + [anon_sym_u32] = ACTIONS(1111), + [anon_sym_i32] = ACTIONS(1111), + [anon_sym_u64] = ACTIONS(1111), + [anon_sym_i64] = ACTIONS(1111), + [anon_sym_u128] = ACTIONS(1111), + [anon_sym_i128] = ACTIONS(1111), + [anon_sym_u256] = ACTIONS(1111), + [anon_sym_i256] = ACTIONS(1111), + [anon_sym_b256] = ACTIONS(1111), + [anon_sym_isize] = ACTIONS(1111), + [anon_sym_usize] = ACTIONS(1111), + [anon_sym_f32] = ACTIONS(1111), + [anon_sym_f64] = ACTIONS(1111), + [anon_sym_bool] = ACTIONS(1111), + [anon_sym_char] = ACTIONS(1111), + [anon_sym_str] = ACTIONS(1111), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_contract] = ACTIONS(1111), + [anon_sym_script] = ACTIONS(1111), + [anon_sym_predicate] = ACTIONS(1111), + [anon_sym_library] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_abi] = ACTIONS(1111), + [anon_sym_break] = ACTIONS(1111), + [anon_sym_configurable] = ACTIONS(1111), + [anon_sym_const] = ACTIONS(1111), + [anon_sym_continue] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1111), + [anon_sym_mod] = ACTIONS(1111), + [anon_sym_enum] = ACTIONS(1111), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_for] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1111), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_let] = ACTIONS(1111), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1111), + [anon_sym_storage] = ACTIONS(1111), + [anon_sym_struct] = ACTIONS(1111), + [anon_sym_trait] = ACTIONS(1111), + [anon_sym_type] = ACTIONS(1111), + [anon_sym_use] = ACTIONS(1111), + [anon_sym_while] = ACTIONS(1111), + [anon_sym_POUND] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_asm] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_COLON_COLON] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1109), + [anon_sym_DOT_DOT] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_PIPE] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(1111), + [anon_sym_move] = ACTIONS(1111), + [sym_integer_literal] = ACTIONS(1109), + [aux_sym_string_literal_token1] = ACTIONS(1109), + [sym_char_literal] = ACTIONS(1109), + [anon_sym_true] = ACTIONS(1111), + [anon_sym_false] = ACTIONS(1111), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1092), - [sym_metavariable] = ACTIONS(1090), - [sym_raw_string_literal] = ACTIONS(1090), - [sym_float_literal] = ACTIONS(1090), + [sym_self] = ACTIONS(1111), + [sym_metavariable] = ACTIONS(1109), + [sym_raw_string_literal] = ACTIONS(1109), + [sym_float_literal] = ACTIONS(1109), [sym_block_comment] = ACTIONS(3), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1094), - [sym_identifier] = ACTIONS(1096), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_u8] = ACTIONS(1096), - [anon_sym_i8] = ACTIONS(1096), - [anon_sym_u16] = ACTIONS(1096), - [anon_sym_i16] = ACTIONS(1096), - [anon_sym_u32] = ACTIONS(1096), - [anon_sym_i32] = ACTIONS(1096), - [anon_sym_u64] = ACTIONS(1096), - [anon_sym_i64] = ACTIONS(1096), - [anon_sym_u128] = ACTIONS(1096), - [anon_sym_i128] = ACTIONS(1096), - [anon_sym_isize] = ACTIONS(1096), - [anon_sym_usize] = ACTIONS(1096), - [anon_sym_f32] = ACTIONS(1096), - [anon_sym_f64] = ACTIONS(1096), - [anon_sym_bool] = ACTIONS(1096), - [anon_sym_char] = ACTIONS(1096), - [anon_sym_str] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1094), - [anon_sym_contract] = ACTIONS(1096), - [anon_sym_script] = ACTIONS(1096), - [anon_sym_predicate] = ACTIONS(1096), - [anon_sym_library] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1094), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_abi] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_configurable] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_dep] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_fn] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_impl] = ACTIONS(1096), - [anon_sym_let] = ACTIONS(1096), - [anon_sym_match] = ACTIONS(1096), - [anon_sym_pub] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_storage] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_trait] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_POUND] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_asm] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_DOT_DOT] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_move] = ACTIONS(1096), - [sym_integer_literal] = ACTIONS(1094), - [aux_sym_string_literal_token1] = ACTIONS(1094), - [sym_char_literal] = ACTIONS(1094), - [anon_sym_true] = ACTIONS(1096), - [anon_sym_false] = ACTIONS(1096), + [ts_builtin_sym_end] = ACTIONS(1113), + [sym_identifier] = ACTIONS(1115), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_u256] = ACTIONS(1115), + [anon_sym_i256] = ACTIONS(1115), + [anon_sym_b256] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1113), + [anon_sym_contract] = ACTIONS(1115), + [anon_sym_script] = ACTIONS(1115), + [anon_sym_predicate] = ACTIONS(1115), + [anon_sym_library] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1115), + [anon_sym_abi] = ACTIONS(1115), + [anon_sym_break] = ACTIONS(1115), + [anon_sym_configurable] = ACTIONS(1115), + [anon_sym_const] = ACTIONS(1115), + [anon_sym_continue] = ACTIONS(1115), + [anon_sym_default] = ACTIONS(1115), + [anon_sym_mod] = ACTIONS(1115), + [anon_sym_enum] = ACTIONS(1115), + [anon_sym_fn] = ACTIONS(1115), + [anon_sym_for] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1115), + [anon_sym_impl] = ACTIONS(1115), + [anon_sym_let] = ACTIONS(1115), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_pub] = ACTIONS(1115), + [anon_sym_return] = ACTIONS(1115), + [anon_sym_storage] = ACTIONS(1115), + [anon_sym_struct] = ACTIONS(1115), + [anon_sym_trait] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1115), + [anon_sym_use] = ACTIONS(1115), + [anon_sym_while] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_asm] = ACTIONS(1115), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_COLON_COLON] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1115), + [anon_sym_move] = ACTIONS(1115), + [sym_integer_literal] = ACTIONS(1113), + [aux_sym_string_literal_token1] = ACTIONS(1113), + [sym_char_literal] = ACTIONS(1113), + [anon_sym_true] = ACTIONS(1115), + [anon_sym_false] = ACTIONS(1115), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1096), - [sym_metavariable] = ACTIONS(1094), - [sym_raw_string_literal] = ACTIONS(1094), - [sym_float_literal] = ACTIONS(1094), + [sym_self] = ACTIONS(1115), + [sym_metavariable] = ACTIONS(1113), + [sym_raw_string_literal] = ACTIONS(1113), + [sym_float_literal] = ACTIONS(1113), [sym_block_comment] = ACTIONS(3), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_identifier] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_u8] = ACTIONS(1100), - [anon_sym_i8] = ACTIONS(1100), - [anon_sym_u16] = ACTIONS(1100), - [anon_sym_i16] = ACTIONS(1100), - [anon_sym_u32] = ACTIONS(1100), - [anon_sym_i32] = ACTIONS(1100), - [anon_sym_u64] = ACTIONS(1100), - [anon_sym_i64] = ACTIONS(1100), - [anon_sym_u128] = ACTIONS(1100), - [anon_sym_i128] = ACTIONS(1100), - [anon_sym_isize] = ACTIONS(1100), - [anon_sym_usize] = ACTIONS(1100), - [anon_sym_f32] = ACTIONS(1100), - [anon_sym_f64] = ACTIONS(1100), - [anon_sym_bool] = ACTIONS(1100), - [anon_sym_char] = ACTIONS(1100), - [anon_sym_str] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_contract] = ACTIONS(1100), - [anon_sym_script] = ACTIONS(1100), - [anon_sym_predicate] = ACTIONS(1100), - [anon_sym_library] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_abi] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_configurable] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_dep] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_impl] = ACTIONS(1100), - [anon_sym_let] = ACTIONS(1100), - [anon_sym_match] = ACTIONS(1100), - [anon_sym_pub] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_storage] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_trait] = ACTIONS(1100), - [anon_sym_use] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_asm] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_COLON_COLON] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_DOT_DOT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_yield] = ACTIONS(1100), - [anon_sym_move] = ACTIONS(1100), - [sym_integer_literal] = ACTIONS(1098), - [aux_sym_string_literal_token1] = ACTIONS(1098), - [sym_char_literal] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), + [ts_builtin_sym_end] = ACTIONS(1117), + [sym_identifier] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1117), + [anon_sym_u8] = ACTIONS(1119), + [anon_sym_i8] = ACTIONS(1119), + [anon_sym_u16] = ACTIONS(1119), + [anon_sym_i16] = ACTIONS(1119), + [anon_sym_u32] = ACTIONS(1119), + [anon_sym_i32] = ACTIONS(1119), + [anon_sym_u64] = ACTIONS(1119), + [anon_sym_i64] = ACTIONS(1119), + [anon_sym_u128] = ACTIONS(1119), + [anon_sym_i128] = ACTIONS(1119), + [anon_sym_u256] = ACTIONS(1119), + [anon_sym_i256] = ACTIONS(1119), + [anon_sym_b256] = ACTIONS(1119), + [anon_sym_isize] = ACTIONS(1119), + [anon_sym_usize] = ACTIONS(1119), + [anon_sym_f32] = ACTIONS(1119), + [anon_sym_f64] = ACTIONS(1119), + [anon_sym_bool] = ACTIONS(1119), + [anon_sym_char] = ACTIONS(1119), + [anon_sym_str] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1117), + [anon_sym_contract] = ACTIONS(1119), + [anon_sym_script] = ACTIONS(1119), + [anon_sym_predicate] = ACTIONS(1119), + [anon_sym_library] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1117), + [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_abi] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1119), + [anon_sym_configurable] = ACTIONS(1119), + [anon_sym_const] = ACTIONS(1119), + [anon_sym_continue] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1119), + [anon_sym_mod] = ACTIONS(1119), + [anon_sym_enum] = ACTIONS(1119), + [anon_sym_fn] = ACTIONS(1119), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_impl] = ACTIONS(1119), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_pub] = ACTIONS(1119), + [anon_sym_return] = ACTIONS(1119), + [anon_sym_storage] = ACTIONS(1119), + [anon_sym_struct] = ACTIONS(1119), + [anon_sym_trait] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_use] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_POUND] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_COLON_COLON] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_yield] = ACTIONS(1119), + [anon_sym_move] = ACTIONS(1119), + [sym_integer_literal] = ACTIONS(1117), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1117), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1100), - [sym_metavariable] = ACTIONS(1098), - [sym_raw_string_literal] = ACTIONS(1098), - [sym_float_literal] = ACTIONS(1098), + [sym_self] = ACTIONS(1119), + [sym_metavariable] = ACTIONS(1117), + [sym_raw_string_literal] = ACTIONS(1117), + [sym_float_literal] = ACTIONS(1117), [sym_block_comment] = ACTIONS(3), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_u8] = ACTIONS(1104), - [anon_sym_i8] = ACTIONS(1104), - [anon_sym_u16] = ACTIONS(1104), - [anon_sym_i16] = ACTIONS(1104), - [anon_sym_u32] = ACTIONS(1104), - [anon_sym_i32] = ACTIONS(1104), - [anon_sym_u64] = ACTIONS(1104), - [anon_sym_i64] = ACTIONS(1104), - [anon_sym_u128] = ACTIONS(1104), - [anon_sym_i128] = ACTIONS(1104), - [anon_sym_isize] = ACTIONS(1104), - [anon_sym_usize] = ACTIONS(1104), - [anon_sym_f32] = ACTIONS(1104), - [anon_sym_f64] = ACTIONS(1104), - [anon_sym_bool] = ACTIONS(1104), - [anon_sym_char] = ACTIONS(1104), - [anon_sym_str] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_contract] = ACTIONS(1104), - [anon_sym_script] = ACTIONS(1104), - [anon_sym_predicate] = ACTIONS(1104), - [anon_sym_library] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_abi] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_configurable] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_dep] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_fn] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_impl] = ACTIONS(1104), - [anon_sym_let] = ACTIONS(1104), - [anon_sym_match] = ACTIONS(1104), - [anon_sym_pub] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_storage] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_trait] = ACTIONS(1104), - [anon_sym_use] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_asm] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_COLON_COLON] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_DOT_DOT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_yield] = ACTIONS(1104), - [anon_sym_move] = ACTIONS(1104), - [sym_integer_literal] = ACTIONS(1102), - [aux_sym_string_literal_token1] = ACTIONS(1102), - [sym_char_literal] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1104), - [anon_sym_false] = ACTIONS(1104), + [ts_builtin_sym_end] = ACTIONS(1121), + [sym_identifier] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(1121), + [anon_sym_u8] = ACTIONS(1123), + [anon_sym_i8] = ACTIONS(1123), + [anon_sym_u16] = ACTIONS(1123), + [anon_sym_i16] = ACTIONS(1123), + [anon_sym_u32] = ACTIONS(1123), + [anon_sym_i32] = ACTIONS(1123), + [anon_sym_u64] = ACTIONS(1123), + [anon_sym_i64] = ACTIONS(1123), + [anon_sym_u128] = ACTIONS(1123), + [anon_sym_i128] = ACTIONS(1123), + [anon_sym_u256] = ACTIONS(1123), + [anon_sym_i256] = ACTIONS(1123), + [anon_sym_b256] = ACTIONS(1123), + [anon_sym_isize] = ACTIONS(1123), + [anon_sym_usize] = ACTIONS(1123), + [anon_sym_f32] = ACTIONS(1123), + [anon_sym_f64] = ACTIONS(1123), + [anon_sym_bool] = ACTIONS(1123), + [anon_sym_char] = ACTIONS(1123), + [anon_sym_str] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1121), + [anon_sym_contract] = ACTIONS(1123), + [anon_sym_script] = ACTIONS(1123), + [anon_sym_predicate] = ACTIONS(1123), + [anon_sym_library] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1121), + [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_SQUOTE] = ACTIONS(1123), + [anon_sym_abi] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_configurable] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_mod] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_fn] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_impl] = ACTIONS(1123), + [anon_sym_let] = ACTIONS(1123), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_pub] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_storage] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_trait] = ACTIONS(1123), + [anon_sym_type] = ACTIONS(1123), + [anon_sym_use] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_POUND] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1121), + [anon_sym_COLON_COLON] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1121), + [anon_sym_yield] = ACTIONS(1123), + [anon_sym_move] = ACTIONS(1123), + [sym_integer_literal] = ACTIONS(1121), + [aux_sym_string_literal_token1] = ACTIONS(1121), + [sym_char_literal] = ACTIONS(1121), + [anon_sym_true] = ACTIONS(1123), + [anon_sym_false] = ACTIONS(1123), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1104), - [sym_metavariable] = ACTIONS(1102), - [sym_raw_string_literal] = ACTIONS(1102), - [sym_float_literal] = ACTIONS(1102), + [sym_self] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1121), + [sym_raw_string_literal] = ACTIONS(1121), + [sym_float_literal] = ACTIONS(1121), [sym_block_comment] = ACTIONS(3), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_u8] = ACTIONS(1108), - [anon_sym_i8] = ACTIONS(1108), - [anon_sym_u16] = ACTIONS(1108), - [anon_sym_i16] = ACTIONS(1108), - [anon_sym_u32] = ACTIONS(1108), - [anon_sym_i32] = ACTIONS(1108), - [anon_sym_u64] = ACTIONS(1108), - [anon_sym_i64] = ACTIONS(1108), - [anon_sym_u128] = ACTIONS(1108), - [anon_sym_i128] = ACTIONS(1108), - [anon_sym_isize] = ACTIONS(1108), - [anon_sym_usize] = ACTIONS(1108), - [anon_sym_f32] = ACTIONS(1108), - [anon_sym_f64] = ACTIONS(1108), - [anon_sym_bool] = ACTIONS(1108), - [anon_sym_char] = ACTIONS(1108), - [anon_sym_str] = ACTIONS(1108), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_contract] = ACTIONS(1108), - [anon_sym_script] = ACTIONS(1108), - [anon_sym_predicate] = ACTIONS(1108), - [anon_sym_library] = ACTIONS(1108), - [anon_sym_LPAREN] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_abi] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_configurable] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_dep] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_fn] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_let] = ACTIONS(1108), - [anon_sym_match] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_storage] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_trait] = ACTIONS(1108), - [anon_sym_use] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_POUND] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_COLON_COLON] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(1108), - [anon_sym_move] = ACTIONS(1108), - [sym_integer_literal] = ACTIONS(1106), - [aux_sym_string_literal_token1] = ACTIONS(1106), - [sym_char_literal] = ACTIONS(1106), - [anon_sym_true] = ACTIONS(1108), - [anon_sym_false] = ACTIONS(1108), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_u8] = ACTIONS(1127), + [anon_sym_i8] = ACTIONS(1127), + [anon_sym_u16] = ACTIONS(1127), + [anon_sym_i16] = ACTIONS(1127), + [anon_sym_u32] = ACTIONS(1127), + [anon_sym_i32] = ACTIONS(1127), + [anon_sym_u64] = ACTIONS(1127), + [anon_sym_i64] = ACTIONS(1127), + [anon_sym_u128] = ACTIONS(1127), + [anon_sym_i128] = ACTIONS(1127), + [anon_sym_u256] = ACTIONS(1127), + [anon_sym_i256] = ACTIONS(1127), + [anon_sym_b256] = ACTIONS(1127), + [anon_sym_isize] = ACTIONS(1127), + [anon_sym_usize] = ACTIONS(1127), + [anon_sym_f32] = ACTIONS(1127), + [anon_sym_f64] = ACTIONS(1127), + [anon_sym_bool] = ACTIONS(1127), + [anon_sym_char] = ACTIONS(1127), + [anon_sym_str] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1125), + [anon_sym_contract] = ACTIONS(1127), + [anon_sym_script] = ACTIONS(1127), + [anon_sym_predicate] = ACTIONS(1127), + [anon_sym_library] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_abi] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_configurable] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_mod] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_fn] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_impl] = ACTIONS(1127), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_match] = ACTIONS(1127), + [anon_sym_pub] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_storage] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_trait] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_use] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_asm] = ACTIONS(1127), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1125), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_yield] = ACTIONS(1127), + [anon_sym_move] = ACTIONS(1127), + [sym_integer_literal] = ACTIONS(1125), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1125), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1108), - [sym_metavariable] = ACTIONS(1106), - [sym_raw_string_literal] = ACTIONS(1106), - [sym_float_literal] = ACTIONS(1106), + [sym_self] = ACTIONS(1127), + [sym_metavariable] = ACTIONS(1125), + [sym_raw_string_literal] = ACTIONS(1125), + [sym_float_literal] = ACTIONS(1125), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_u8] = ACTIONS(1112), - [anon_sym_i8] = ACTIONS(1112), - [anon_sym_u16] = ACTIONS(1112), - [anon_sym_i16] = ACTIONS(1112), - [anon_sym_u32] = ACTIONS(1112), - [anon_sym_i32] = ACTIONS(1112), - [anon_sym_u64] = ACTIONS(1112), - [anon_sym_i64] = ACTIONS(1112), - [anon_sym_u128] = ACTIONS(1112), - [anon_sym_i128] = ACTIONS(1112), - [anon_sym_isize] = ACTIONS(1112), - [anon_sym_usize] = ACTIONS(1112), - [anon_sym_f32] = ACTIONS(1112), - [anon_sym_f64] = ACTIONS(1112), - [anon_sym_bool] = ACTIONS(1112), - [anon_sym_char] = ACTIONS(1112), - [anon_sym_str] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_contract] = ACTIONS(1112), - [anon_sym_script] = ACTIONS(1112), - [anon_sym_predicate] = ACTIONS(1112), - [anon_sym_library] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_abi] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_configurable] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_dep] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_fn] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_impl] = ACTIONS(1112), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_match] = ACTIONS(1112), - [anon_sym_pub] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_storage] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_trait] = ACTIONS(1112), - [anon_sym_use] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_asm] = ACTIONS(1112), - [anon_sym_LT] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_DOT_DOT] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_PIPE] = ACTIONS(1110), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_move] = ACTIONS(1112), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1110), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1112), - [anon_sym_false] = ACTIONS(1112), + [ts_builtin_sym_end] = ACTIONS(1129), + [sym_identifier] = ACTIONS(1131), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym_u8] = ACTIONS(1131), + [anon_sym_i8] = ACTIONS(1131), + [anon_sym_u16] = ACTIONS(1131), + [anon_sym_i16] = ACTIONS(1131), + [anon_sym_u32] = ACTIONS(1131), + [anon_sym_i32] = ACTIONS(1131), + [anon_sym_u64] = ACTIONS(1131), + [anon_sym_i64] = ACTIONS(1131), + [anon_sym_u128] = ACTIONS(1131), + [anon_sym_i128] = ACTIONS(1131), + [anon_sym_u256] = ACTIONS(1131), + [anon_sym_i256] = ACTIONS(1131), + [anon_sym_b256] = ACTIONS(1131), + [anon_sym_isize] = ACTIONS(1131), + [anon_sym_usize] = ACTIONS(1131), + [anon_sym_f32] = ACTIONS(1131), + [anon_sym_f64] = ACTIONS(1131), + [anon_sym_bool] = ACTIONS(1131), + [anon_sym_char] = ACTIONS(1131), + [anon_sym_str] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_contract] = ACTIONS(1131), + [anon_sym_script] = ACTIONS(1131), + [anon_sym_predicate] = ACTIONS(1131), + [anon_sym_library] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_abi] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_configurable] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_mod] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_impl] = ACTIONS(1131), + [anon_sym_let] = ACTIONS(1131), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_pub] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_storage] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_trait] = ACTIONS(1131), + [anon_sym_type] = ACTIONS(1131), + [anon_sym_use] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_POUND] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(1129), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PIPE] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_move] = ACTIONS(1131), + [sym_integer_literal] = ACTIONS(1129), + [aux_sym_string_literal_token1] = ACTIONS(1129), + [sym_char_literal] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1131), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1112), - [sym_metavariable] = ACTIONS(1110), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_self] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1129), + [sym_raw_string_literal] = ACTIONS(1129), + [sym_float_literal] = ACTIONS(1129), [sym_block_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1116), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_u8] = ACTIONS(1116), - [anon_sym_i8] = ACTIONS(1116), - [anon_sym_u16] = ACTIONS(1116), - [anon_sym_i16] = ACTIONS(1116), - [anon_sym_u32] = ACTIONS(1116), - [anon_sym_i32] = ACTIONS(1116), - [anon_sym_u64] = ACTIONS(1116), - [anon_sym_i64] = ACTIONS(1116), - [anon_sym_u128] = ACTIONS(1116), - [anon_sym_i128] = ACTIONS(1116), - [anon_sym_isize] = ACTIONS(1116), - [anon_sym_usize] = ACTIONS(1116), - [anon_sym_f32] = ACTIONS(1116), - [anon_sym_f64] = ACTIONS(1116), - [anon_sym_bool] = ACTIONS(1116), - [anon_sym_char] = ACTIONS(1116), - [anon_sym_str] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_contract] = ACTIONS(1116), - [anon_sym_script] = ACTIONS(1116), - [anon_sym_predicate] = ACTIONS(1116), - [anon_sym_library] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_abi] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_configurable] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_dep] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_fn] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_impl] = ACTIONS(1116), - [anon_sym_let] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_pub] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_storage] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_trait] = ACTIONS(1116), - [anon_sym_use] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_POUND] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_asm] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(1114), - [anon_sym_COLON_COLON] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_DOT_DOT] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1114), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_yield] = ACTIONS(1116), - [anon_sym_move] = ACTIONS(1116), - [sym_integer_literal] = ACTIONS(1114), - [aux_sym_string_literal_token1] = ACTIONS(1114), - [sym_char_literal] = ACTIONS(1114), - [anon_sym_true] = ACTIONS(1116), - [anon_sym_false] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_u8] = ACTIONS(1135), + [anon_sym_i8] = ACTIONS(1135), + [anon_sym_u16] = ACTIONS(1135), + [anon_sym_i16] = ACTIONS(1135), + [anon_sym_u32] = ACTIONS(1135), + [anon_sym_i32] = ACTIONS(1135), + [anon_sym_u64] = ACTIONS(1135), + [anon_sym_i64] = ACTIONS(1135), + [anon_sym_u128] = ACTIONS(1135), + [anon_sym_i128] = ACTIONS(1135), + [anon_sym_u256] = ACTIONS(1135), + [anon_sym_i256] = ACTIONS(1135), + [anon_sym_b256] = ACTIONS(1135), + [anon_sym_isize] = ACTIONS(1135), + [anon_sym_usize] = ACTIONS(1135), + [anon_sym_f32] = ACTIONS(1135), + [anon_sym_f64] = ACTIONS(1135), + [anon_sym_bool] = ACTIONS(1135), + [anon_sym_char] = ACTIONS(1135), + [anon_sym_str] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_contract] = ACTIONS(1135), + [anon_sym_script] = ACTIONS(1135), + [anon_sym_predicate] = ACTIONS(1135), + [anon_sym_library] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_abi] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_configurable] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_fn] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_impl] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_pub] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_storage] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_trait] = ACTIONS(1135), + [anon_sym_type] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_COLON_COLON] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_DOT_DOT] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_move] = ACTIONS(1135), + [sym_integer_literal] = ACTIONS(1133), + [aux_sym_string_literal_token1] = ACTIONS(1133), + [sym_char_literal] = ACTIONS(1133), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1116), - [sym_metavariable] = ACTIONS(1114), - [sym_raw_string_literal] = ACTIONS(1114), - [sym_float_literal] = ACTIONS(1114), + [sym_self] = ACTIONS(1135), + [sym_metavariable] = ACTIONS(1133), + [sym_raw_string_literal] = ACTIONS(1133), + [sym_float_literal] = ACTIONS(1133), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_u8] = ACTIONS(1120), - [anon_sym_i8] = ACTIONS(1120), - [anon_sym_u16] = ACTIONS(1120), - [anon_sym_i16] = ACTIONS(1120), - [anon_sym_u32] = ACTIONS(1120), - [anon_sym_i32] = ACTIONS(1120), - [anon_sym_u64] = ACTIONS(1120), - [anon_sym_i64] = ACTIONS(1120), - [anon_sym_u128] = ACTIONS(1120), - [anon_sym_i128] = ACTIONS(1120), - [anon_sym_isize] = ACTIONS(1120), - [anon_sym_usize] = ACTIONS(1120), - [anon_sym_f32] = ACTIONS(1120), - [anon_sym_f64] = ACTIONS(1120), - [anon_sym_bool] = ACTIONS(1120), - [anon_sym_char] = ACTIONS(1120), - [anon_sym_str] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_contract] = ACTIONS(1120), - [anon_sym_script] = ACTIONS(1120), - [anon_sym_predicate] = ACTIONS(1120), - [anon_sym_library] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1120), - [anon_sym_abi] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_configurable] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_dep] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_fn] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_impl] = ACTIONS(1120), - [anon_sym_let] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1120), - [anon_sym_pub] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_storage] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_trait] = ACTIONS(1120), - [anon_sym_use] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_POUND] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_asm] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_DOT_DOT] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_move] = ACTIONS(1120), - [sym_integer_literal] = ACTIONS(1118), - [aux_sym_string_literal_token1] = ACTIONS(1118), - [sym_char_literal] = ACTIONS(1118), - [anon_sym_true] = ACTIONS(1120), - [anon_sym_false] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1137), + [sym_identifier] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym_u8] = ACTIONS(1139), + [anon_sym_i8] = ACTIONS(1139), + [anon_sym_u16] = ACTIONS(1139), + [anon_sym_i16] = ACTIONS(1139), + [anon_sym_u32] = ACTIONS(1139), + [anon_sym_i32] = ACTIONS(1139), + [anon_sym_u64] = ACTIONS(1139), + [anon_sym_i64] = ACTIONS(1139), + [anon_sym_u128] = ACTIONS(1139), + [anon_sym_i128] = ACTIONS(1139), + [anon_sym_u256] = ACTIONS(1139), + [anon_sym_i256] = ACTIONS(1139), + [anon_sym_b256] = ACTIONS(1139), + [anon_sym_isize] = ACTIONS(1139), + [anon_sym_usize] = ACTIONS(1139), + [anon_sym_f32] = ACTIONS(1139), + [anon_sym_f64] = ACTIONS(1139), + [anon_sym_bool] = ACTIONS(1139), + [anon_sym_char] = ACTIONS(1139), + [anon_sym_str] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_contract] = ACTIONS(1139), + [anon_sym_script] = ACTIONS(1139), + [anon_sym_predicate] = ACTIONS(1139), + [anon_sym_library] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_abi] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_configurable] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_impl] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_pub] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_storage] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_trait] = ACTIONS(1139), + [anon_sym_type] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(1137), + [anon_sym_COLON_COLON] = ACTIONS(1137), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1137), + [anon_sym_yield] = ACTIONS(1139), + [anon_sym_move] = ACTIONS(1139), + [sym_integer_literal] = ACTIONS(1137), + [aux_sym_string_literal_token1] = ACTIONS(1137), + [sym_char_literal] = ACTIONS(1137), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1120), - [sym_metavariable] = ACTIONS(1118), - [sym_raw_string_literal] = ACTIONS(1118), - [sym_float_literal] = ACTIONS(1118), + [sym_self] = ACTIONS(1139), + [sym_metavariable] = ACTIONS(1137), + [sym_raw_string_literal] = ACTIONS(1137), + [sym_float_literal] = ACTIONS(1137), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_identifier] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_u8] = ACTIONS(1124), - [anon_sym_i8] = ACTIONS(1124), - [anon_sym_u16] = ACTIONS(1124), - [anon_sym_i16] = ACTIONS(1124), - [anon_sym_u32] = ACTIONS(1124), - [anon_sym_i32] = ACTIONS(1124), - [anon_sym_u64] = ACTIONS(1124), - [anon_sym_i64] = ACTIONS(1124), - [anon_sym_u128] = ACTIONS(1124), - [anon_sym_i128] = ACTIONS(1124), - [anon_sym_isize] = ACTIONS(1124), - [anon_sym_usize] = ACTIONS(1124), - [anon_sym_f32] = ACTIONS(1124), - [anon_sym_f64] = ACTIONS(1124), - [anon_sym_bool] = ACTIONS(1124), - [anon_sym_char] = ACTIONS(1124), - [anon_sym_str] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_contract] = ACTIONS(1124), - [anon_sym_script] = ACTIONS(1124), - [anon_sym_predicate] = ACTIONS(1124), - [anon_sym_library] = ACTIONS(1124), - [anon_sym_LPAREN] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1124), - [anon_sym_abi] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_configurable] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_dep] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_fn] = ACTIONS(1124), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_impl] = ACTIONS(1124), - [anon_sym_let] = ACTIONS(1124), - [anon_sym_match] = ACTIONS(1124), - [anon_sym_pub] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_storage] = ACTIONS(1124), - [anon_sym_struct] = ACTIONS(1124), - [anon_sym_trait] = ACTIONS(1124), - [anon_sym_use] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_asm] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_COLON_COLON] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_DOT_DOT] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_yield] = ACTIONS(1124), - [anon_sym_move] = ACTIONS(1124), - [sym_integer_literal] = ACTIONS(1122), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1122), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), + [ts_builtin_sym_end] = ACTIONS(1141), + [sym_identifier] = ACTIONS(1143), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_u8] = ACTIONS(1143), + [anon_sym_i8] = ACTIONS(1143), + [anon_sym_u16] = ACTIONS(1143), + [anon_sym_i16] = ACTIONS(1143), + [anon_sym_u32] = ACTIONS(1143), + [anon_sym_i32] = ACTIONS(1143), + [anon_sym_u64] = ACTIONS(1143), + [anon_sym_i64] = ACTIONS(1143), + [anon_sym_u128] = ACTIONS(1143), + [anon_sym_i128] = ACTIONS(1143), + [anon_sym_u256] = ACTIONS(1143), + [anon_sym_i256] = ACTIONS(1143), + [anon_sym_b256] = ACTIONS(1143), + [anon_sym_isize] = ACTIONS(1143), + [anon_sym_usize] = ACTIONS(1143), + [anon_sym_f32] = ACTIONS(1143), + [anon_sym_f64] = ACTIONS(1143), + [anon_sym_bool] = ACTIONS(1143), + [anon_sym_char] = ACTIONS(1143), + [anon_sym_str] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_contract] = ACTIONS(1143), + [anon_sym_script] = ACTIONS(1143), + [anon_sym_predicate] = ACTIONS(1143), + [anon_sym_library] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1143), + [anon_sym_abi] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_configurable] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_fn] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_impl] = ACTIONS(1143), + [anon_sym_let] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_pub] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_storage] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_trait] = ACTIONS(1143), + [anon_sym_type] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_POUND] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_yield] = ACTIONS(1143), + [anon_sym_move] = ACTIONS(1143), + [sym_integer_literal] = ACTIONS(1141), + [aux_sym_string_literal_token1] = ACTIONS(1141), + [sym_char_literal] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1124), - [sym_metavariable] = ACTIONS(1122), - [sym_raw_string_literal] = ACTIONS(1122), - [sym_float_literal] = ACTIONS(1122), + [sym_self] = ACTIONS(1143), + [sym_metavariable] = ACTIONS(1141), + [sym_raw_string_literal] = ACTIONS(1141), + [sym_float_literal] = ACTIONS(1141), [sym_block_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1126), - [sym_identifier] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_u8] = ACTIONS(1128), - [anon_sym_i8] = ACTIONS(1128), - [anon_sym_u16] = ACTIONS(1128), - [anon_sym_i16] = ACTIONS(1128), - [anon_sym_u32] = ACTIONS(1128), - [anon_sym_i32] = ACTIONS(1128), - [anon_sym_u64] = ACTIONS(1128), - [anon_sym_i64] = ACTIONS(1128), - [anon_sym_u128] = ACTIONS(1128), - [anon_sym_i128] = ACTIONS(1128), - [anon_sym_isize] = ACTIONS(1128), - [anon_sym_usize] = ACTIONS(1128), - [anon_sym_f32] = ACTIONS(1128), - [anon_sym_f64] = ACTIONS(1128), - [anon_sym_bool] = ACTIONS(1128), - [anon_sym_char] = ACTIONS(1128), - [anon_sym_str] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_contract] = ACTIONS(1128), - [anon_sym_script] = ACTIONS(1128), - [anon_sym_predicate] = ACTIONS(1128), - [anon_sym_library] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_abi] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_configurable] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_dep] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_fn] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_impl] = ACTIONS(1128), - [anon_sym_let] = ACTIONS(1128), - [anon_sym_match] = ACTIONS(1128), - [anon_sym_pub] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_storage] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_trait] = ACTIONS(1128), - [anon_sym_use] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_POUND] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(1128), - [anon_sym_move] = ACTIONS(1128), - [sym_integer_literal] = ACTIONS(1126), - [aux_sym_string_literal_token1] = ACTIONS(1126), - [sym_char_literal] = ACTIONS(1126), - [anon_sym_true] = ACTIONS(1128), - [anon_sym_false] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_u8] = ACTIONS(1147), + [anon_sym_i8] = ACTIONS(1147), + [anon_sym_u16] = ACTIONS(1147), + [anon_sym_i16] = ACTIONS(1147), + [anon_sym_u32] = ACTIONS(1147), + [anon_sym_i32] = ACTIONS(1147), + [anon_sym_u64] = ACTIONS(1147), + [anon_sym_i64] = ACTIONS(1147), + [anon_sym_u128] = ACTIONS(1147), + [anon_sym_i128] = ACTIONS(1147), + [anon_sym_u256] = ACTIONS(1147), + [anon_sym_i256] = ACTIONS(1147), + [anon_sym_b256] = ACTIONS(1147), + [anon_sym_isize] = ACTIONS(1147), + [anon_sym_usize] = ACTIONS(1147), + [anon_sym_f32] = ACTIONS(1147), + [anon_sym_f64] = ACTIONS(1147), + [anon_sym_bool] = ACTIONS(1147), + [anon_sym_char] = ACTIONS(1147), + [anon_sym_str] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1145), + [anon_sym_contract] = ACTIONS(1147), + [anon_sym_script] = ACTIONS(1147), + [anon_sym_predicate] = ACTIONS(1147), + [anon_sym_library] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1147), + [anon_sym_abi] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_configurable] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_mod] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_let] = ACTIONS(1147), + [anon_sym_match] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_storage] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_trait] = ACTIONS(1147), + [anon_sym_type] = ACTIONS(1147), + [anon_sym_use] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_POUND] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym_LT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_yield] = ACTIONS(1147), + [anon_sym_move] = ACTIONS(1147), + [sym_integer_literal] = ACTIONS(1145), + [aux_sym_string_literal_token1] = ACTIONS(1145), + [sym_char_literal] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1147), + [anon_sym_false] = ACTIONS(1147), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1126), - [sym_raw_string_literal] = ACTIONS(1126), - [sym_float_literal] = ACTIONS(1126), + [sym_self] = ACTIONS(1147), + [sym_metavariable] = ACTIONS(1145), + [sym_raw_string_literal] = ACTIONS(1145), + [sym_float_literal] = ACTIONS(1145), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1132), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_u8] = ACTIONS(1132), - [anon_sym_i8] = ACTIONS(1132), - [anon_sym_u16] = ACTIONS(1132), - [anon_sym_i16] = ACTIONS(1132), - [anon_sym_u32] = ACTIONS(1132), - [anon_sym_i32] = ACTIONS(1132), - [anon_sym_u64] = ACTIONS(1132), - [anon_sym_i64] = ACTIONS(1132), - [anon_sym_u128] = ACTIONS(1132), - [anon_sym_i128] = ACTIONS(1132), - [anon_sym_isize] = ACTIONS(1132), - [anon_sym_usize] = ACTIONS(1132), - [anon_sym_f32] = ACTIONS(1132), - [anon_sym_f64] = ACTIONS(1132), - [anon_sym_bool] = ACTIONS(1132), - [anon_sym_char] = ACTIONS(1132), - [anon_sym_str] = ACTIONS(1132), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_contract] = ACTIONS(1132), - [anon_sym_script] = ACTIONS(1132), - [anon_sym_predicate] = ACTIONS(1132), - [anon_sym_library] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1132), - [anon_sym_abi] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_configurable] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_dep] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_fn] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_impl] = ACTIONS(1132), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_match] = ACTIONS(1132), - [anon_sym_pub] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_storage] = ACTIONS(1132), - [anon_sym_struct] = ACTIONS(1132), - [anon_sym_trait] = ACTIONS(1132), - [anon_sym_use] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_POUND] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_asm] = ACTIONS(1132), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_COLON_COLON] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_DOT_DOT] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_yield] = ACTIONS(1132), - [anon_sym_move] = ACTIONS(1132), - [sym_integer_literal] = ACTIONS(1130), - [aux_sym_string_literal_token1] = ACTIONS(1130), - [sym_char_literal] = ACTIONS(1130), - [anon_sym_true] = ACTIONS(1132), - [anon_sym_false] = ACTIONS(1132), + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1151), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_u8] = ACTIONS(1151), + [anon_sym_i8] = ACTIONS(1151), + [anon_sym_u16] = ACTIONS(1151), + [anon_sym_i16] = ACTIONS(1151), + [anon_sym_u32] = ACTIONS(1151), + [anon_sym_i32] = ACTIONS(1151), + [anon_sym_u64] = ACTIONS(1151), + [anon_sym_i64] = ACTIONS(1151), + [anon_sym_u128] = ACTIONS(1151), + [anon_sym_i128] = ACTIONS(1151), + [anon_sym_u256] = ACTIONS(1151), + [anon_sym_i256] = ACTIONS(1151), + [anon_sym_b256] = ACTIONS(1151), + [anon_sym_isize] = ACTIONS(1151), + [anon_sym_usize] = ACTIONS(1151), + [anon_sym_f32] = ACTIONS(1151), + [anon_sym_f64] = ACTIONS(1151), + [anon_sym_bool] = ACTIONS(1151), + [anon_sym_char] = ACTIONS(1151), + [anon_sym_str] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_contract] = ACTIONS(1151), + [anon_sym_script] = ACTIONS(1151), + [anon_sym_predicate] = ACTIONS(1151), + [anon_sym_library] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1149), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1151), + [anon_sym_abi] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_configurable] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_mod] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_fn] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1151), + [anon_sym_let] = ACTIONS(1151), + [anon_sym_match] = ACTIONS(1151), + [anon_sym_pub] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_storage] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_trait] = ACTIONS(1151), + [anon_sym_type] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_POUND] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_COLON_COLON] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_DOT_DOT] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_yield] = ACTIONS(1151), + [anon_sym_move] = ACTIONS(1151), + [sym_integer_literal] = ACTIONS(1149), + [aux_sym_string_literal_token1] = ACTIONS(1149), + [sym_char_literal] = ACTIONS(1149), + [anon_sym_true] = ACTIONS(1151), + [anon_sym_false] = ACTIONS(1151), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1132), - [sym_metavariable] = ACTIONS(1130), - [sym_raw_string_literal] = ACTIONS(1130), - [sym_float_literal] = ACTIONS(1130), + [sym_self] = ACTIONS(1151), + [sym_metavariable] = ACTIONS(1149), + [sym_raw_string_literal] = ACTIONS(1149), + [sym_float_literal] = ACTIONS(1149), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym_u8] = ACTIONS(1136), - [anon_sym_i8] = ACTIONS(1136), - [anon_sym_u16] = ACTIONS(1136), - [anon_sym_i16] = ACTIONS(1136), - [anon_sym_u32] = ACTIONS(1136), - [anon_sym_i32] = ACTIONS(1136), - [anon_sym_u64] = ACTIONS(1136), - [anon_sym_i64] = ACTIONS(1136), - [anon_sym_u128] = ACTIONS(1136), - [anon_sym_i128] = ACTIONS(1136), - [anon_sym_isize] = ACTIONS(1136), - [anon_sym_usize] = ACTIONS(1136), - [anon_sym_f32] = ACTIONS(1136), - [anon_sym_f64] = ACTIONS(1136), - [anon_sym_bool] = ACTIONS(1136), - [anon_sym_char] = ACTIONS(1136), - [anon_sym_str] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_contract] = ACTIONS(1136), - [anon_sym_script] = ACTIONS(1136), - [anon_sym_predicate] = ACTIONS(1136), - [anon_sym_library] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1134), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_abi] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_configurable] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_dep] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_fn] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_impl] = ACTIONS(1136), - [anon_sym_let] = ACTIONS(1136), - [anon_sym_match] = ACTIONS(1136), - [anon_sym_pub] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_storage] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_trait] = ACTIONS(1136), - [anon_sym_use] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_asm] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_COLON_COLON] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_yield] = ACTIONS(1136), - [anon_sym_move] = ACTIONS(1136), - [sym_integer_literal] = ACTIONS(1134), - [aux_sym_string_literal_token1] = ACTIONS(1134), - [sym_char_literal] = ACTIONS(1134), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1153), + [sym_identifier] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_u8] = ACTIONS(1155), + [anon_sym_i8] = ACTIONS(1155), + [anon_sym_u16] = ACTIONS(1155), + [anon_sym_i16] = ACTIONS(1155), + [anon_sym_u32] = ACTIONS(1155), + [anon_sym_i32] = ACTIONS(1155), + [anon_sym_u64] = ACTIONS(1155), + [anon_sym_i64] = ACTIONS(1155), + [anon_sym_u128] = ACTIONS(1155), + [anon_sym_i128] = ACTIONS(1155), + [anon_sym_u256] = ACTIONS(1155), + [anon_sym_i256] = ACTIONS(1155), + [anon_sym_b256] = ACTIONS(1155), + [anon_sym_isize] = ACTIONS(1155), + [anon_sym_usize] = ACTIONS(1155), + [anon_sym_f32] = ACTIONS(1155), + [anon_sym_f64] = ACTIONS(1155), + [anon_sym_bool] = ACTIONS(1155), + [anon_sym_char] = ACTIONS(1155), + [anon_sym_str] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1153), + [anon_sym_contract] = ACTIONS(1155), + [anon_sym_script] = ACTIONS(1155), + [anon_sym_predicate] = ACTIONS(1155), + [anon_sym_library] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_abi] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_configurable] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_impl] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_pub] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_storage] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_trait] = ACTIONS(1155), + [anon_sym_type] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_COLON_COLON] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_DOT_DOT] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_yield] = ACTIONS(1155), + [anon_sym_move] = ACTIONS(1155), + [sym_integer_literal] = ACTIONS(1153), + [aux_sym_string_literal_token1] = ACTIONS(1153), + [sym_char_literal] = ACTIONS(1153), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1136), - [sym_metavariable] = ACTIONS(1134), - [sym_raw_string_literal] = ACTIONS(1134), - [sym_float_literal] = ACTIONS(1134), + [sym_self] = ACTIONS(1155), + [sym_metavariable] = ACTIONS(1153), + [sym_raw_string_literal] = ACTIONS(1153), + [sym_float_literal] = ACTIONS(1153), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_contract] = ACTIONS(1140), - [anon_sym_script] = ACTIONS(1140), - [anon_sym_predicate] = ACTIONS(1140), - [anon_sym_library] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_abi] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_configurable] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_default] = ACTIONS(1140), - [anon_sym_dep] = ACTIONS(1140), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_fn] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_impl] = ACTIONS(1140), - [anon_sym_let] = ACTIONS(1140), - [anon_sym_match] = ACTIONS(1140), - [anon_sym_pub] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_storage] = ACTIONS(1140), - [anon_sym_struct] = ACTIONS(1140), - [anon_sym_trait] = ACTIONS(1140), - [anon_sym_use] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_asm] = ACTIONS(1140), - [anon_sym_LT] = ACTIONS(1138), - [anon_sym_COLON_COLON] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1140), - [anon_sym_move] = ACTIONS(1140), - [sym_integer_literal] = ACTIONS(1138), - [aux_sym_string_literal_token1] = ACTIONS(1138), - [sym_char_literal] = ACTIONS(1138), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_identifier] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym_u8] = ACTIONS(1159), + [anon_sym_i8] = ACTIONS(1159), + [anon_sym_u16] = ACTIONS(1159), + [anon_sym_i16] = ACTIONS(1159), + [anon_sym_u32] = ACTIONS(1159), + [anon_sym_i32] = ACTIONS(1159), + [anon_sym_u64] = ACTIONS(1159), + [anon_sym_i64] = ACTIONS(1159), + [anon_sym_u128] = ACTIONS(1159), + [anon_sym_i128] = ACTIONS(1159), + [anon_sym_u256] = ACTIONS(1159), + [anon_sym_i256] = ACTIONS(1159), + [anon_sym_b256] = ACTIONS(1159), + [anon_sym_isize] = ACTIONS(1159), + [anon_sym_usize] = ACTIONS(1159), + [anon_sym_f32] = ACTIONS(1159), + [anon_sym_f64] = ACTIONS(1159), + [anon_sym_bool] = ACTIONS(1159), + [anon_sym_char] = ACTIONS(1159), + [anon_sym_str] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_contract] = ACTIONS(1159), + [anon_sym_script] = ACTIONS(1159), + [anon_sym_predicate] = ACTIONS(1159), + [anon_sym_library] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1159), + [anon_sym_abi] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_configurable] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_fn] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_impl] = ACTIONS(1159), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_pub] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_storage] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_trait] = ACTIONS(1159), + [anon_sym_type] = ACTIONS(1159), + [anon_sym_use] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_POUND] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_DOT_DOT] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1157), + [anon_sym_yield] = ACTIONS(1159), + [anon_sym_move] = ACTIONS(1159), + [sym_integer_literal] = ACTIONS(1157), + [aux_sym_string_literal_token1] = ACTIONS(1157), + [sym_char_literal] = ACTIONS(1157), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1140), - [sym_metavariable] = ACTIONS(1138), - [sym_raw_string_literal] = ACTIONS(1138), - [sym_float_literal] = ACTIONS(1138), + [sym_self] = ACTIONS(1159), + [sym_metavariable] = ACTIONS(1157), + [sym_raw_string_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1157), [sym_block_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1142), - [sym_identifier] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1142), - [anon_sym_u8] = ACTIONS(1144), - [anon_sym_i8] = ACTIONS(1144), - [anon_sym_u16] = ACTIONS(1144), - [anon_sym_i16] = ACTIONS(1144), - [anon_sym_u32] = ACTIONS(1144), - [anon_sym_i32] = ACTIONS(1144), - [anon_sym_u64] = ACTIONS(1144), - [anon_sym_i64] = ACTIONS(1144), - [anon_sym_u128] = ACTIONS(1144), - [anon_sym_i128] = ACTIONS(1144), - [anon_sym_isize] = ACTIONS(1144), - [anon_sym_usize] = ACTIONS(1144), - [anon_sym_f32] = ACTIONS(1144), - [anon_sym_f64] = ACTIONS(1144), - [anon_sym_bool] = ACTIONS(1144), - [anon_sym_char] = ACTIONS(1144), - [anon_sym_str] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1142), - [anon_sym_contract] = ACTIONS(1144), - [anon_sym_script] = ACTIONS(1144), - [anon_sym_predicate] = ACTIONS(1144), - [anon_sym_library] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_RBRACE] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_abi] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_configurable] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_dep] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_fn] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_impl] = ACTIONS(1144), - [anon_sym_let] = ACTIONS(1144), - [anon_sym_match] = ACTIONS(1144), - [anon_sym_pub] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_storage] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_trait] = ACTIONS(1144), - [anon_sym_use] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_asm] = ACTIONS(1144), - [anon_sym_LT] = ACTIONS(1142), - [anon_sym_COLON_COLON] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1142), - [aux_sym_string_literal_token1] = ACTIONS(1142), - [sym_char_literal] = ACTIONS(1142), - [anon_sym_true] = ACTIONS(1144), - [anon_sym_false] = ACTIONS(1144), + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_u256] = ACTIONS(1163), + [anon_sym_i256] = ACTIONS(1163), + [anon_sym_b256] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_contract] = ACTIONS(1163), + [anon_sym_script] = ACTIONS(1163), + [anon_sym_predicate] = ACTIONS(1163), + [anon_sym_library] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_abi] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_configurable] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_mod] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_fn] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_storage] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_trait] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_use] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_yield] = ACTIONS(1163), + [anon_sym_move] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1161), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1161), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1144), - [sym_metavariable] = ACTIONS(1142), - [sym_raw_string_literal] = ACTIONS(1142), - [sym_float_literal] = ACTIONS(1142), + [sym_self] = ACTIONS(1163), + [sym_metavariable] = ACTIONS(1161), + [sym_raw_string_literal] = ACTIONS(1161), + [sym_float_literal] = ACTIONS(1161), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_u8] = ACTIONS(1148), - [anon_sym_i8] = ACTIONS(1148), - [anon_sym_u16] = ACTIONS(1148), - [anon_sym_i16] = ACTIONS(1148), - [anon_sym_u32] = ACTIONS(1148), - [anon_sym_i32] = ACTIONS(1148), - [anon_sym_u64] = ACTIONS(1148), - [anon_sym_i64] = ACTIONS(1148), - [anon_sym_u128] = ACTIONS(1148), - [anon_sym_i128] = ACTIONS(1148), - [anon_sym_isize] = ACTIONS(1148), - [anon_sym_usize] = ACTIONS(1148), - [anon_sym_f32] = ACTIONS(1148), - [anon_sym_f64] = ACTIONS(1148), - [anon_sym_bool] = ACTIONS(1148), - [anon_sym_char] = ACTIONS(1148), - [anon_sym_str] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_contract] = ACTIONS(1148), - [anon_sym_script] = ACTIONS(1148), - [anon_sym_predicate] = ACTIONS(1148), - [anon_sym_library] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_RBRACE] = ACTIONS(1146), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_abi] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_configurable] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_dep] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_fn] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_impl] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_pub] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_storage] = ACTIONS(1148), - [anon_sym_struct] = ACTIONS(1148), - [anon_sym_trait] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1146), - [anon_sym_asm] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_DOT_DOT] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_yield] = ACTIONS(1148), - [anon_sym_move] = ACTIONS(1148), - [sym_integer_literal] = ACTIONS(1146), - [aux_sym_string_literal_token1] = ACTIONS(1146), - [sym_char_literal] = ACTIONS(1146), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), + [ts_builtin_sym_end] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym_u8] = ACTIONS(1167), + [anon_sym_i8] = ACTIONS(1167), + [anon_sym_u16] = ACTIONS(1167), + [anon_sym_i16] = ACTIONS(1167), + [anon_sym_u32] = ACTIONS(1167), + [anon_sym_i32] = ACTIONS(1167), + [anon_sym_u64] = ACTIONS(1167), + [anon_sym_i64] = ACTIONS(1167), + [anon_sym_u128] = ACTIONS(1167), + [anon_sym_i128] = ACTIONS(1167), + [anon_sym_u256] = ACTIONS(1167), + [anon_sym_i256] = ACTIONS(1167), + [anon_sym_b256] = ACTIONS(1167), + [anon_sym_isize] = ACTIONS(1167), + [anon_sym_usize] = ACTIONS(1167), + [anon_sym_f32] = ACTIONS(1167), + [anon_sym_f64] = ACTIONS(1167), + [anon_sym_bool] = ACTIONS(1167), + [anon_sym_char] = ACTIONS(1167), + [anon_sym_str] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_contract] = ACTIONS(1167), + [anon_sym_script] = ACTIONS(1167), + [anon_sym_predicate] = ACTIONS(1167), + [anon_sym_library] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_abi] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_configurable] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_mod] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_fn] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_impl] = ACTIONS(1167), + [anon_sym_let] = ACTIONS(1167), + [anon_sym_match] = ACTIONS(1167), + [anon_sym_pub] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_storage] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_trait] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(1167), + [anon_sym_use] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_POUND] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_COLON_COLON] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_yield] = ACTIONS(1167), + [anon_sym_move] = ACTIONS(1167), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1165), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1167), + [anon_sym_false] = ACTIONS(1167), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1148), - [sym_metavariable] = ACTIONS(1146), - [sym_raw_string_literal] = ACTIONS(1146), - [sym_float_literal] = ACTIONS(1146), + [sym_self] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1165), + [sym_raw_string_literal] = ACTIONS(1165), + [sym_float_literal] = ACTIONS(1165), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_u8] = ACTIONS(1152), - [anon_sym_i8] = ACTIONS(1152), - [anon_sym_u16] = ACTIONS(1152), - [anon_sym_i16] = ACTIONS(1152), - [anon_sym_u32] = ACTIONS(1152), - [anon_sym_i32] = ACTIONS(1152), - [anon_sym_u64] = ACTIONS(1152), - [anon_sym_i64] = ACTIONS(1152), - [anon_sym_u128] = ACTIONS(1152), - [anon_sym_i128] = ACTIONS(1152), - [anon_sym_isize] = ACTIONS(1152), - [anon_sym_usize] = ACTIONS(1152), - [anon_sym_f32] = ACTIONS(1152), - [anon_sym_f64] = ACTIONS(1152), - [anon_sym_bool] = ACTIONS(1152), - [anon_sym_char] = ACTIONS(1152), - [anon_sym_str] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_contract] = ACTIONS(1152), - [anon_sym_script] = ACTIONS(1152), - [anon_sym_predicate] = ACTIONS(1152), - [anon_sym_library] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_abi] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_configurable] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_dep] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_fn] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_impl] = ACTIONS(1152), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_match] = ACTIONS(1152), - [anon_sym_pub] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_storage] = ACTIONS(1152), - [anon_sym_struct] = ACTIONS(1152), - [anon_sym_trait] = ACTIONS(1152), - [anon_sym_use] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_asm] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_COLON_COLON] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_yield] = ACTIONS(1152), - [anon_sym_move] = ACTIONS(1152), - [sym_integer_literal] = ACTIONS(1150), - [aux_sym_string_literal_token1] = ACTIONS(1150), - [sym_char_literal] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_identifier] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym_u8] = ACTIONS(1171), + [anon_sym_i8] = ACTIONS(1171), + [anon_sym_u16] = ACTIONS(1171), + [anon_sym_i16] = ACTIONS(1171), + [anon_sym_u32] = ACTIONS(1171), + [anon_sym_i32] = ACTIONS(1171), + [anon_sym_u64] = ACTIONS(1171), + [anon_sym_i64] = ACTIONS(1171), + [anon_sym_u128] = ACTIONS(1171), + [anon_sym_i128] = ACTIONS(1171), + [anon_sym_u256] = ACTIONS(1171), + [anon_sym_i256] = ACTIONS(1171), + [anon_sym_b256] = ACTIONS(1171), + [anon_sym_isize] = ACTIONS(1171), + [anon_sym_usize] = ACTIONS(1171), + [anon_sym_f32] = ACTIONS(1171), + [anon_sym_f64] = ACTIONS(1171), + [anon_sym_bool] = ACTIONS(1171), + [anon_sym_char] = ACTIONS(1171), + [anon_sym_str] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1169), + [anon_sym_contract] = ACTIONS(1171), + [anon_sym_script] = ACTIONS(1171), + [anon_sym_predicate] = ACTIONS(1171), + [anon_sym_library] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1171), + [anon_sym_abi] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_configurable] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_fn] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_impl] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_pub] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_storage] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_trait] = ACTIONS(1171), + [anon_sym_type] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1169), + [anon_sym_COLON_COLON] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_DOT_DOT] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_move] = ACTIONS(1171), + [sym_integer_literal] = ACTIONS(1169), + [aux_sym_string_literal_token1] = ACTIONS(1169), + [sym_char_literal] = ACTIONS(1169), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1152), - [sym_metavariable] = ACTIONS(1150), - [sym_raw_string_literal] = ACTIONS(1150), - [sym_float_literal] = ACTIONS(1150), + [sym_self] = ACTIONS(1171), + [sym_metavariable] = ACTIONS(1169), + [sym_raw_string_literal] = ACTIONS(1169), + [sym_float_literal] = ACTIONS(1169), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_u8] = ACTIONS(1156), - [anon_sym_i8] = ACTIONS(1156), - [anon_sym_u16] = ACTIONS(1156), - [anon_sym_i16] = ACTIONS(1156), - [anon_sym_u32] = ACTIONS(1156), - [anon_sym_i32] = ACTIONS(1156), - [anon_sym_u64] = ACTIONS(1156), - [anon_sym_i64] = ACTIONS(1156), - [anon_sym_u128] = ACTIONS(1156), - [anon_sym_i128] = ACTIONS(1156), - [anon_sym_isize] = ACTIONS(1156), - [anon_sym_usize] = ACTIONS(1156), - [anon_sym_f32] = ACTIONS(1156), - [anon_sym_f64] = ACTIONS(1156), - [anon_sym_bool] = ACTIONS(1156), - [anon_sym_char] = ACTIONS(1156), - [anon_sym_str] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_contract] = ACTIONS(1156), - [anon_sym_script] = ACTIONS(1156), - [anon_sym_predicate] = ACTIONS(1156), - [anon_sym_library] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_abi] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_configurable] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_dep] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_fn] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_impl] = ACTIONS(1156), - [anon_sym_let] = ACTIONS(1156), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_pub] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_storage] = ACTIONS(1156), - [anon_sym_struct] = ACTIONS(1156), - [anon_sym_trait] = ACTIONS(1156), - [anon_sym_use] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1154), - [anon_sym_COLON_COLON] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_move] = ACTIONS(1156), - [sym_integer_literal] = ACTIONS(1154), - [aux_sym_string_literal_token1] = ACTIONS(1154), - [sym_char_literal] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), + [ts_builtin_sym_end] = ACTIONS(1173), + [sym_identifier] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym_u8] = ACTIONS(1175), + [anon_sym_i8] = ACTIONS(1175), + [anon_sym_u16] = ACTIONS(1175), + [anon_sym_i16] = ACTIONS(1175), + [anon_sym_u32] = ACTIONS(1175), + [anon_sym_i32] = ACTIONS(1175), + [anon_sym_u64] = ACTIONS(1175), + [anon_sym_i64] = ACTIONS(1175), + [anon_sym_u128] = ACTIONS(1175), + [anon_sym_i128] = ACTIONS(1175), + [anon_sym_u256] = ACTIONS(1175), + [anon_sym_i256] = ACTIONS(1175), + [anon_sym_b256] = ACTIONS(1175), + [anon_sym_isize] = ACTIONS(1175), + [anon_sym_usize] = ACTIONS(1175), + [anon_sym_f32] = ACTIONS(1175), + [anon_sym_f64] = ACTIONS(1175), + [anon_sym_bool] = ACTIONS(1175), + [anon_sym_char] = ACTIONS(1175), + [anon_sym_str] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_contract] = ACTIONS(1175), + [anon_sym_script] = ACTIONS(1175), + [anon_sym_predicate] = ACTIONS(1175), + [anon_sym_library] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_abi] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_configurable] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_fn] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1175), + [anon_sym_let] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(1175), + [anon_sym_pub] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_storage] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_trait] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1175), + [anon_sym_use] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_POUND] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_COLON_COLON] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_yield] = ACTIONS(1175), + [anon_sym_move] = ACTIONS(1175), + [sym_integer_literal] = ACTIONS(1173), + [aux_sym_string_literal_token1] = ACTIONS(1173), + [sym_char_literal] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1175), + [anon_sym_false] = ACTIONS(1175), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1156), - [sym_metavariable] = ACTIONS(1154), - [sym_raw_string_literal] = ACTIONS(1154), - [sym_float_literal] = ACTIONS(1154), + [sym_self] = ACTIONS(1175), + [sym_metavariable] = ACTIONS(1173), + [sym_raw_string_literal] = ACTIONS(1173), + [sym_float_literal] = ACTIONS(1173), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_contract] = ACTIONS(1160), - [anon_sym_script] = ACTIONS(1160), - [anon_sym_predicate] = ACTIONS(1160), - [anon_sym_library] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_abi] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_configurable] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_dep] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_fn] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_impl] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_match] = ACTIONS(1160), - [anon_sym_pub] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_storage] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_trait] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_asm] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1158), - [anon_sym_COLON_COLON] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_move] = ACTIONS(1160), - [sym_integer_literal] = ACTIONS(1158), - [aux_sym_string_literal_token1] = ACTIONS(1158), - [sym_char_literal] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), + [ts_builtin_sym_end] = ACTIONS(1177), + [sym_identifier] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_u8] = ACTIONS(1179), + [anon_sym_i8] = ACTIONS(1179), + [anon_sym_u16] = ACTIONS(1179), + [anon_sym_i16] = ACTIONS(1179), + [anon_sym_u32] = ACTIONS(1179), + [anon_sym_i32] = ACTIONS(1179), + [anon_sym_u64] = ACTIONS(1179), + [anon_sym_i64] = ACTIONS(1179), + [anon_sym_u128] = ACTIONS(1179), + [anon_sym_i128] = ACTIONS(1179), + [anon_sym_u256] = ACTIONS(1179), + [anon_sym_i256] = ACTIONS(1179), + [anon_sym_b256] = ACTIONS(1179), + [anon_sym_isize] = ACTIONS(1179), + [anon_sym_usize] = ACTIONS(1179), + [anon_sym_f32] = ACTIONS(1179), + [anon_sym_f64] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_str] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_contract] = ACTIONS(1179), + [anon_sym_script] = ACTIONS(1179), + [anon_sym_predicate] = ACTIONS(1179), + [anon_sym_library] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_abi] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_configurable] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_mod] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_impl] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_pub] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_storage] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_trait] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_COLON_COLON] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_yield] = ACTIONS(1179), + [anon_sym_move] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1177), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1160), - [sym_metavariable] = ACTIONS(1158), - [sym_raw_string_literal] = ACTIONS(1158), - [sym_float_literal] = ACTIONS(1158), + [sym_self] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1177), + [sym_raw_string_literal] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1177), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_u8] = ACTIONS(1164), - [anon_sym_i8] = ACTIONS(1164), - [anon_sym_u16] = ACTIONS(1164), - [anon_sym_i16] = ACTIONS(1164), - [anon_sym_u32] = ACTIONS(1164), - [anon_sym_i32] = ACTIONS(1164), - [anon_sym_u64] = ACTIONS(1164), - [anon_sym_i64] = ACTIONS(1164), - [anon_sym_u128] = ACTIONS(1164), - [anon_sym_i128] = ACTIONS(1164), - [anon_sym_isize] = ACTIONS(1164), - [anon_sym_usize] = ACTIONS(1164), - [anon_sym_f32] = ACTIONS(1164), - [anon_sym_f64] = ACTIONS(1164), - [anon_sym_bool] = ACTIONS(1164), - [anon_sym_char] = ACTIONS(1164), - [anon_sym_str] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_contract] = ACTIONS(1164), - [anon_sym_script] = ACTIONS(1164), - [anon_sym_predicate] = ACTIONS(1164), - [anon_sym_library] = ACTIONS(1164), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_RBRACE] = ACTIONS(1162), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_abi] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_configurable] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_dep] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_fn] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_impl] = ACTIONS(1164), - [anon_sym_let] = ACTIONS(1164), - [anon_sym_match] = ACTIONS(1164), - [anon_sym_pub] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_storage] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_trait] = ACTIONS(1164), - [anon_sym_use] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_asm] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1162), - [anon_sym_COLON_COLON] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1162), - [anon_sym_yield] = ACTIONS(1164), - [anon_sym_move] = ACTIONS(1164), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1162), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_u256] = ACTIONS(1183), + [anon_sym_i256] = ACTIONS(1183), + [anon_sym_b256] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_contract] = ACTIONS(1183), + [anon_sym_script] = ACTIONS(1183), + [anon_sym_predicate] = ACTIONS(1183), + [anon_sym_library] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1183), + [anon_sym_abi] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_configurable] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_mod] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_fn] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_impl] = ACTIONS(1183), + [anon_sym_let] = ACTIONS(1183), + [anon_sym_match] = ACTIONS(1183), + [anon_sym_pub] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_storage] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_trait] = ACTIONS(1183), + [anon_sym_type] = ACTIONS(1183), + [anon_sym_use] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_POUND] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1181), + [anon_sym_COLON_COLON] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_PIPE] = ACTIONS(1181), + [anon_sym_yield] = ACTIONS(1183), + [anon_sym_move] = ACTIONS(1183), + [sym_integer_literal] = ACTIONS(1181), + [aux_sym_string_literal_token1] = ACTIONS(1181), + [sym_char_literal] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1183), + [anon_sym_false] = ACTIONS(1183), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1164), - [sym_metavariable] = ACTIONS(1162), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_self] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1181), + [sym_raw_string_literal] = ACTIONS(1181), + [sym_float_literal] = ACTIONS(1181), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_contract] = ACTIONS(1168), - [anon_sym_script] = ACTIONS(1168), - [anon_sym_predicate] = ACTIONS(1168), - [anon_sym_library] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_abi] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_configurable] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_dep] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_fn] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_impl] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_pub] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_storage] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_trait] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_asm] = ACTIONS(1168), - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_DOT_DOT] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_yield] = ACTIONS(1168), - [anon_sym_move] = ACTIONS(1168), - [sym_integer_literal] = ACTIONS(1166), - [aux_sym_string_literal_token1] = ACTIONS(1166), - [sym_char_literal] = ACTIONS(1166), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_identifier] = ACTIONS(1187), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_u256] = ACTIONS(1187), + [anon_sym_i256] = ACTIONS(1187), + [anon_sym_b256] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_contract] = ACTIONS(1187), + [anon_sym_script] = ACTIONS(1187), + [anon_sym_predicate] = ACTIONS(1187), + [anon_sym_library] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1187), + [anon_sym_abi] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_configurable] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_fn] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_impl] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_pub] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_storage] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_trait] = ACTIONS(1187), + [anon_sym_type] = ACTIONS(1187), + [anon_sym_use] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_yield] = ACTIONS(1187), + [anon_sym_move] = ACTIONS(1187), + [sym_integer_literal] = ACTIONS(1185), + [aux_sym_string_literal_token1] = ACTIONS(1185), + [sym_char_literal] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1187), + [anon_sym_false] = ACTIONS(1187), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1168), - [sym_metavariable] = ACTIONS(1166), - [sym_raw_string_literal] = ACTIONS(1166), - [sym_float_literal] = ACTIONS(1166), + [sym_self] = ACTIONS(1187), + [sym_metavariable] = ACTIONS(1185), + [sym_raw_string_literal] = ACTIONS(1185), + [sym_float_literal] = ACTIONS(1185), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_u8] = ACTIONS(1172), - [anon_sym_i8] = ACTIONS(1172), - [anon_sym_u16] = ACTIONS(1172), - [anon_sym_i16] = ACTIONS(1172), - [anon_sym_u32] = ACTIONS(1172), - [anon_sym_i32] = ACTIONS(1172), - [anon_sym_u64] = ACTIONS(1172), - [anon_sym_i64] = ACTIONS(1172), - [anon_sym_u128] = ACTIONS(1172), - [anon_sym_i128] = ACTIONS(1172), - [anon_sym_isize] = ACTIONS(1172), - [anon_sym_usize] = ACTIONS(1172), - [anon_sym_f32] = ACTIONS(1172), - [anon_sym_f64] = ACTIONS(1172), - [anon_sym_bool] = ACTIONS(1172), - [anon_sym_char] = ACTIONS(1172), - [anon_sym_str] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_contract] = ACTIONS(1172), - [anon_sym_script] = ACTIONS(1172), - [anon_sym_predicate] = ACTIONS(1172), - [anon_sym_library] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_abi] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_configurable] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_dep] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_fn] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_impl] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_pub] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_storage] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_trait] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_COLON_COLON] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_yield] = ACTIONS(1172), - [anon_sym_move] = ACTIONS(1172), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1170), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_u8] = ACTIONS(1191), + [anon_sym_i8] = ACTIONS(1191), + [anon_sym_u16] = ACTIONS(1191), + [anon_sym_i16] = ACTIONS(1191), + [anon_sym_u32] = ACTIONS(1191), + [anon_sym_i32] = ACTIONS(1191), + [anon_sym_u64] = ACTIONS(1191), + [anon_sym_i64] = ACTIONS(1191), + [anon_sym_u128] = ACTIONS(1191), + [anon_sym_i128] = ACTIONS(1191), + [anon_sym_u256] = ACTIONS(1191), + [anon_sym_i256] = ACTIONS(1191), + [anon_sym_b256] = ACTIONS(1191), + [anon_sym_isize] = ACTIONS(1191), + [anon_sym_usize] = ACTIONS(1191), + [anon_sym_f32] = ACTIONS(1191), + [anon_sym_f64] = ACTIONS(1191), + [anon_sym_bool] = ACTIONS(1191), + [anon_sym_char] = ACTIONS(1191), + [anon_sym_str] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_contract] = ACTIONS(1191), + [anon_sym_script] = ACTIONS(1191), + [anon_sym_predicate] = ACTIONS(1191), + [anon_sym_library] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_abi] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_configurable] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_impl] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_pub] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_storage] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_trait] = ACTIONS(1191), + [anon_sym_type] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_POUND] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_COLON_COLON] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_yield] = ACTIONS(1191), + [anon_sym_move] = ACTIONS(1191), + [sym_integer_literal] = ACTIONS(1189), + [aux_sym_string_literal_token1] = ACTIONS(1189), + [sym_char_literal] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1172), - [sym_metavariable] = ACTIONS(1170), - [sym_raw_string_literal] = ACTIONS(1170), - [sym_float_literal] = ACTIONS(1170), + [sym_self] = ACTIONS(1191), + [sym_metavariable] = ACTIONS(1189), + [sym_raw_string_literal] = ACTIONS(1189), + [sym_float_literal] = ACTIONS(1189), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_u8] = ACTIONS(1176), - [anon_sym_i8] = ACTIONS(1176), - [anon_sym_u16] = ACTIONS(1176), - [anon_sym_i16] = ACTIONS(1176), - [anon_sym_u32] = ACTIONS(1176), - [anon_sym_i32] = ACTIONS(1176), - [anon_sym_u64] = ACTIONS(1176), - [anon_sym_i64] = ACTIONS(1176), - [anon_sym_u128] = ACTIONS(1176), - [anon_sym_i128] = ACTIONS(1176), - [anon_sym_isize] = ACTIONS(1176), - [anon_sym_usize] = ACTIONS(1176), - [anon_sym_f32] = ACTIONS(1176), - [anon_sym_f64] = ACTIONS(1176), - [anon_sym_bool] = ACTIONS(1176), - [anon_sym_char] = ACTIONS(1176), - [anon_sym_str] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_contract] = ACTIONS(1176), - [anon_sym_script] = ACTIONS(1176), - [anon_sym_predicate] = ACTIONS(1176), - [anon_sym_library] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_abi] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_configurable] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_dep] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_fn] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_impl] = ACTIONS(1176), - [anon_sym_let] = ACTIONS(1176), - [anon_sym_match] = ACTIONS(1176), - [anon_sym_pub] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_storage] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_trait] = ACTIONS(1176), - [anon_sym_use] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1174), - [anon_sym_COLON_COLON] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(1174), - [anon_sym_yield] = ACTIONS(1176), - [anon_sym_move] = ACTIONS(1176), - [sym_integer_literal] = ACTIONS(1174), - [aux_sym_string_literal_token1] = ACTIONS(1174), - [sym_char_literal] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_u8] = ACTIONS(1195), + [anon_sym_i8] = ACTIONS(1195), + [anon_sym_u16] = ACTIONS(1195), + [anon_sym_i16] = ACTIONS(1195), + [anon_sym_u32] = ACTIONS(1195), + [anon_sym_i32] = ACTIONS(1195), + [anon_sym_u64] = ACTIONS(1195), + [anon_sym_i64] = ACTIONS(1195), + [anon_sym_u128] = ACTIONS(1195), + [anon_sym_i128] = ACTIONS(1195), + [anon_sym_u256] = ACTIONS(1195), + [anon_sym_i256] = ACTIONS(1195), + [anon_sym_b256] = ACTIONS(1195), + [anon_sym_isize] = ACTIONS(1195), + [anon_sym_usize] = ACTIONS(1195), + [anon_sym_f32] = ACTIONS(1195), + [anon_sym_f64] = ACTIONS(1195), + [anon_sym_bool] = ACTIONS(1195), + [anon_sym_char] = ACTIONS(1195), + [anon_sym_str] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_contract] = ACTIONS(1195), + [anon_sym_script] = ACTIONS(1195), + [anon_sym_predicate] = ACTIONS(1195), + [anon_sym_library] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_abi] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_configurable] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_mod] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1195), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_match] = ACTIONS(1195), + [anon_sym_pub] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_storage] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_trait] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_use] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1193), + [anon_sym_COLON_COLON] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1195), + [anon_sym_move] = ACTIONS(1195), + [sym_integer_literal] = ACTIONS(1193), + [aux_sym_string_literal_token1] = ACTIONS(1193), + [sym_char_literal] = ACTIONS(1193), + [anon_sym_true] = ACTIONS(1195), + [anon_sym_false] = ACTIONS(1195), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1176), - [sym_metavariable] = ACTIONS(1174), - [sym_raw_string_literal] = ACTIONS(1174), - [sym_float_literal] = ACTIONS(1174), + [sym_self] = ACTIONS(1195), + [sym_metavariable] = ACTIONS(1193), + [sym_raw_string_literal] = ACTIONS(1193), + [sym_float_literal] = ACTIONS(1193), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1180), - [anon_sym_i8] = ACTIONS(1180), - [anon_sym_u16] = ACTIONS(1180), - [anon_sym_i16] = ACTIONS(1180), - [anon_sym_u32] = ACTIONS(1180), - [anon_sym_i32] = ACTIONS(1180), - [anon_sym_u64] = ACTIONS(1180), - [anon_sym_i64] = ACTIONS(1180), - [anon_sym_u128] = ACTIONS(1180), - [anon_sym_i128] = ACTIONS(1180), - [anon_sym_isize] = ACTIONS(1180), - [anon_sym_usize] = ACTIONS(1180), - [anon_sym_f32] = ACTIONS(1180), - [anon_sym_f64] = ACTIONS(1180), - [anon_sym_bool] = ACTIONS(1180), - [anon_sym_char] = ACTIONS(1180), - [anon_sym_str] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_contract] = ACTIONS(1180), - [anon_sym_script] = ACTIONS(1180), - [anon_sym_predicate] = ACTIONS(1180), - [anon_sym_library] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_abi] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_configurable] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_dep] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_fn] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1180), - [anon_sym_let] = ACTIONS(1180), - [anon_sym_match] = ACTIONS(1180), - [anon_sym_pub] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_storage] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_trait] = ACTIONS(1180), - [anon_sym_use] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_asm] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1178), - [aux_sym_string_literal_token1] = ACTIONS(1178), - [sym_char_literal] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_u8] = ACTIONS(1199), + [anon_sym_i8] = ACTIONS(1199), + [anon_sym_u16] = ACTIONS(1199), + [anon_sym_i16] = ACTIONS(1199), + [anon_sym_u32] = ACTIONS(1199), + [anon_sym_i32] = ACTIONS(1199), + [anon_sym_u64] = ACTIONS(1199), + [anon_sym_i64] = ACTIONS(1199), + [anon_sym_u128] = ACTIONS(1199), + [anon_sym_i128] = ACTIONS(1199), + [anon_sym_u256] = ACTIONS(1199), + [anon_sym_i256] = ACTIONS(1199), + [anon_sym_b256] = ACTIONS(1199), + [anon_sym_isize] = ACTIONS(1199), + [anon_sym_usize] = ACTIONS(1199), + [anon_sym_f32] = ACTIONS(1199), + [anon_sym_f64] = ACTIONS(1199), + [anon_sym_bool] = ACTIONS(1199), + [anon_sym_char] = ACTIONS(1199), + [anon_sym_str] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_contract] = ACTIONS(1199), + [anon_sym_script] = ACTIONS(1199), + [anon_sym_predicate] = ACTIONS(1199), + [anon_sym_library] = ACTIONS(1199), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_abi] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_configurable] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_mod] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1199), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1199), + [anon_sym_pub] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_storage] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_trait] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_POUND] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym_LT] = ACTIONS(1197), + [anon_sym_COLON_COLON] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PIPE] = ACTIONS(1197), + [anon_sym_yield] = ACTIONS(1199), + [anon_sym_move] = ACTIONS(1199), + [sym_integer_literal] = ACTIONS(1197), + [aux_sym_string_literal_token1] = ACTIONS(1197), + [sym_char_literal] = ACTIONS(1197), + [anon_sym_true] = ACTIONS(1199), + [anon_sym_false] = ACTIONS(1199), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1178), - [sym_raw_string_literal] = ACTIONS(1178), - [sym_float_literal] = ACTIONS(1178), + [sym_self] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1197), + [sym_raw_string_literal] = ACTIONS(1197), + [sym_float_literal] = ACTIONS(1197), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym_u8] = ACTIONS(1184), - [anon_sym_i8] = ACTIONS(1184), - [anon_sym_u16] = ACTIONS(1184), - [anon_sym_i16] = ACTIONS(1184), - [anon_sym_u32] = ACTIONS(1184), - [anon_sym_i32] = ACTIONS(1184), - [anon_sym_u64] = ACTIONS(1184), - [anon_sym_i64] = ACTIONS(1184), - [anon_sym_u128] = ACTIONS(1184), - [anon_sym_i128] = ACTIONS(1184), - [anon_sym_isize] = ACTIONS(1184), - [anon_sym_usize] = ACTIONS(1184), - [anon_sym_f32] = ACTIONS(1184), - [anon_sym_f64] = ACTIONS(1184), - [anon_sym_bool] = ACTIONS(1184), - [anon_sym_char] = ACTIONS(1184), - [anon_sym_str] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_contract] = ACTIONS(1184), - [anon_sym_script] = ACTIONS(1184), - [anon_sym_predicate] = ACTIONS(1184), - [anon_sym_library] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_abi] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_configurable] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_dep] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_fn] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_impl] = ACTIONS(1184), - [anon_sym_let] = ACTIONS(1184), - [anon_sym_match] = ACTIONS(1184), - [anon_sym_pub] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_storage] = ACTIONS(1184), - [anon_sym_struct] = ACTIONS(1184), - [anon_sym_trait] = ACTIONS(1184), - [anon_sym_use] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_asm] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1182), - [anon_sym_COLON_COLON] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_move] = ACTIONS(1184), - [sym_integer_literal] = ACTIONS(1182), - [aux_sym_string_literal_token1] = ACTIONS(1182), - [sym_char_literal] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1203), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_u8] = ACTIONS(1203), + [anon_sym_i8] = ACTIONS(1203), + [anon_sym_u16] = ACTIONS(1203), + [anon_sym_i16] = ACTIONS(1203), + [anon_sym_u32] = ACTIONS(1203), + [anon_sym_i32] = ACTIONS(1203), + [anon_sym_u64] = ACTIONS(1203), + [anon_sym_i64] = ACTIONS(1203), + [anon_sym_u128] = ACTIONS(1203), + [anon_sym_i128] = ACTIONS(1203), + [anon_sym_u256] = ACTIONS(1203), + [anon_sym_i256] = ACTIONS(1203), + [anon_sym_b256] = ACTIONS(1203), + [anon_sym_isize] = ACTIONS(1203), + [anon_sym_usize] = ACTIONS(1203), + [anon_sym_f32] = ACTIONS(1203), + [anon_sym_f64] = ACTIONS(1203), + [anon_sym_bool] = ACTIONS(1203), + [anon_sym_char] = ACTIONS(1203), + [anon_sym_str] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_contract] = ACTIONS(1203), + [anon_sym_script] = ACTIONS(1203), + [anon_sym_predicate] = ACTIONS(1203), + [anon_sym_library] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1203), + [anon_sym_abi] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_configurable] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_mod] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_fn] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_impl] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1203), + [anon_sym_match] = ACTIONS(1203), + [anon_sym_pub] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_storage] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_trait] = ACTIONS(1203), + [anon_sym_type] = ACTIONS(1203), + [anon_sym_use] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_COLON_COLON] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_yield] = ACTIONS(1203), + [anon_sym_move] = ACTIONS(1203), + [sym_integer_literal] = ACTIONS(1201), + [aux_sym_string_literal_token1] = ACTIONS(1201), + [sym_char_literal] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1203), + [anon_sym_false] = ACTIONS(1203), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(1182), - [sym_float_literal] = ACTIONS(1182), + [sym_self] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1201), + [sym_raw_string_literal] = ACTIONS(1201), + [sym_float_literal] = ACTIONS(1201), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_u8] = ACTIONS(1188), - [anon_sym_i8] = ACTIONS(1188), - [anon_sym_u16] = ACTIONS(1188), - [anon_sym_i16] = ACTIONS(1188), - [anon_sym_u32] = ACTIONS(1188), - [anon_sym_i32] = ACTIONS(1188), - [anon_sym_u64] = ACTIONS(1188), - [anon_sym_i64] = ACTIONS(1188), - [anon_sym_u128] = ACTIONS(1188), - [anon_sym_i128] = ACTIONS(1188), - [anon_sym_isize] = ACTIONS(1188), - [anon_sym_usize] = ACTIONS(1188), - [anon_sym_f32] = ACTIONS(1188), - [anon_sym_f64] = ACTIONS(1188), - [anon_sym_bool] = ACTIONS(1188), - [anon_sym_char] = ACTIONS(1188), - [anon_sym_str] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_contract] = ACTIONS(1188), - [anon_sym_script] = ACTIONS(1188), - [anon_sym_predicate] = ACTIONS(1188), - [anon_sym_library] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_abi] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_configurable] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_dep] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_impl] = ACTIONS(1188), - [anon_sym_let] = ACTIONS(1188), - [anon_sym_match] = ACTIONS(1188), - [anon_sym_pub] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_storage] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_trait] = ACTIONS(1188), - [anon_sym_use] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_POUND] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_COLON_COLON] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_yield] = ACTIONS(1188), - [anon_sym_move] = ACTIONS(1188), - [sym_integer_literal] = ACTIONS(1186), - [aux_sym_string_literal_token1] = ACTIONS(1186), - [sym_char_literal] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_u256] = ACTIONS(1207), + [anon_sym_i256] = ACTIONS(1207), + [anon_sym_b256] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1205), + [anon_sym_contract] = ACTIONS(1207), + [anon_sym_script] = ACTIONS(1207), + [anon_sym_predicate] = ACTIONS(1207), + [anon_sym_library] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1207), + [anon_sym_abi] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_configurable] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_mod] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_fn] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_impl] = ACTIONS(1207), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_match] = ACTIONS(1207), + [anon_sym_pub] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_storage] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_trait] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_use] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_POUND] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_COLON_COLON] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_move] = ACTIONS(1207), + [sym_integer_literal] = ACTIONS(1205), + [aux_sym_string_literal_token1] = ACTIONS(1205), + [sym_char_literal] = ACTIONS(1205), + [anon_sym_true] = ACTIONS(1207), + [anon_sym_false] = ACTIONS(1207), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1188), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(1186), - [sym_float_literal] = ACTIONS(1186), + [sym_self] = ACTIONS(1207), + [sym_metavariable] = ACTIONS(1205), + [sym_raw_string_literal] = ACTIONS(1205), + [sym_float_literal] = ACTIONS(1205), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1192), - [anon_sym_i8] = ACTIONS(1192), - [anon_sym_u16] = ACTIONS(1192), - [anon_sym_i16] = ACTIONS(1192), - [anon_sym_u32] = ACTIONS(1192), - [anon_sym_i32] = ACTIONS(1192), - [anon_sym_u64] = ACTIONS(1192), - [anon_sym_i64] = ACTIONS(1192), - [anon_sym_u128] = ACTIONS(1192), - [anon_sym_i128] = ACTIONS(1192), - [anon_sym_isize] = ACTIONS(1192), - [anon_sym_usize] = ACTIONS(1192), - [anon_sym_f32] = ACTIONS(1192), - [anon_sym_f64] = ACTIONS(1192), - [anon_sym_bool] = ACTIONS(1192), - [anon_sym_char] = ACTIONS(1192), - [anon_sym_str] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_contract] = ACTIONS(1192), - [anon_sym_script] = ACTIONS(1192), - [anon_sym_predicate] = ACTIONS(1192), - [anon_sym_library] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_abi] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_configurable] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_dep] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_fn] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_impl] = ACTIONS(1192), - [anon_sym_let] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1192), - [anon_sym_pub] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_storage] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_trait] = ACTIONS(1192), - [anon_sym_use] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_POUND] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_COLON_COLON] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_move] = ACTIONS(1192), - [sym_integer_literal] = ACTIONS(1190), - [aux_sym_string_literal_token1] = ACTIONS(1190), - [sym_char_literal] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_u8] = ACTIONS(1211), + [anon_sym_i8] = ACTIONS(1211), + [anon_sym_u16] = ACTIONS(1211), + [anon_sym_i16] = ACTIONS(1211), + [anon_sym_u32] = ACTIONS(1211), + [anon_sym_i32] = ACTIONS(1211), + [anon_sym_u64] = ACTIONS(1211), + [anon_sym_i64] = ACTIONS(1211), + [anon_sym_u128] = ACTIONS(1211), + [anon_sym_i128] = ACTIONS(1211), + [anon_sym_u256] = ACTIONS(1211), + [anon_sym_i256] = ACTIONS(1211), + [anon_sym_b256] = ACTIONS(1211), + [anon_sym_isize] = ACTIONS(1211), + [anon_sym_usize] = ACTIONS(1211), + [anon_sym_f32] = ACTIONS(1211), + [anon_sym_f64] = ACTIONS(1211), + [anon_sym_bool] = ACTIONS(1211), + [anon_sym_char] = ACTIONS(1211), + [anon_sym_str] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_contract] = ACTIONS(1211), + [anon_sym_script] = ACTIONS(1211), + [anon_sym_predicate] = ACTIONS(1211), + [anon_sym_library] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1211), + [anon_sym_abi] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_configurable] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_fn] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_impl] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_pub] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_storage] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_trait] = ACTIONS(1211), + [anon_sym_type] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1209), + [anon_sym_COLON_COLON] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_DOT_DOT] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_PIPE] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_move] = ACTIONS(1211), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1209), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1192), - [sym_metavariable] = ACTIONS(1190), - [sym_raw_string_literal] = ACTIONS(1190), - [sym_float_literal] = ACTIONS(1190), + [sym_self] = ACTIONS(1211), + [sym_metavariable] = ACTIONS(1209), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_contract] = ACTIONS(1196), - [anon_sym_script] = ACTIONS(1196), - [anon_sym_predicate] = ACTIONS(1196), - [anon_sym_library] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_abi] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_configurable] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_dep] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_storage] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), + [ts_builtin_sym_end] = ACTIONS(1213), + [sym_identifier] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_u8] = ACTIONS(1215), + [anon_sym_i8] = ACTIONS(1215), + [anon_sym_u16] = ACTIONS(1215), + [anon_sym_i16] = ACTIONS(1215), + [anon_sym_u32] = ACTIONS(1215), + [anon_sym_i32] = ACTIONS(1215), + [anon_sym_u64] = ACTIONS(1215), + [anon_sym_i64] = ACTIONS(1215), + [anon_sym_u128] = ACTIONS(1215), + [anon_sym_i128] = ACTIONS(1215), + [anon_sym_u256] = ACTIONS(1215), + [anon_sym_i256] = ACTIONS(1215), + [anon_sym_b256] = ACTIONS(1215), + [anon_sym_isize] = ACTIONS(1215), + [anon_sym_usize] = ACTIONS(1215), + [anon_sym_f32] = ACTIONS(1215), + [anon_sym_f64] = ACTIONS(1215), + [anon_sym_bool] = ACTIONS(1215), + [anon_sym_char] = ACTIONS(1215), + [anon_sym_str] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_contract] = ACTIONS(1215), + [anon_sym_script] = ACTIONS(1215), + [anon_sym_predicate] = ACTIONS(1215), + [anon_sym_library] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1215), + [anon_sym_abi] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_configurable] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_fn] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_impl] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_pub] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_storage] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_trait] = ACTIONS(1215), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_COLON_COLON] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_yield] = ACTIONS(1215), + [anon_sym_move] = ACTIONS(1215), + [sym_integer_literal] = ACTIONS(1213), + [aux_sym_string_literal_token1] = ACTIONS(1213), + [sym_char_literal] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym_raw_string_literal] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), + [sym_self] = ACTIONS(1215), + [sym_metavariable] = ACTIONS(1213), + [sym_raw_string_literal] = ACTIONS(1213), + [sym_float_literal] = ACTIONS(1213), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_u8] = ACTIONS(1200), - [anon_sym_i8] = ACTIONS(1200), - [anon_sym_u16] = ACTIONS(1200), - [anon_sym_i16] = ACTIONS(1200), - [anon_sym_u32] = ACTIONS(1200), - [anon_sym_i32] = ACTIONS(1200), - [anon_sym_u64] = ACTIONS(1200), - [anon_sym_i64] = ACTIONS(1200), - [anon_sym_u128] = ACTIONS(1200), - [anon_sym_i128] = ACTIONS(1200), - [anon_sym_isize] = ACTIONS(1200), - [anon_sym_usize] = ACTIONS(1200), - [anon_sym_f32] = ACTIONS(1200), - [anon_sym_f64] = ACTIONS(1200), - [anon_sym_bool] = ACTIONS(1200), - [anon_sym_char] = ACTIONS(1200), - [anon_sym_str] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_contract] = ACTIONS(1200), - [anon_sym_script] = ACTIONS(1200), - [anon_sym_predicate] = ACTIONS(1200), - [anon_sym_library] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_abi] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_configurable] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_dep] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_fn] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_impl] = ACTIONS(1200), - [anon_sym_let] = ACTIONS(1200), - [anon_sym_match] = ACTIONS(1200), - [anon_sym_pub] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_storage] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_trait] = ACTIONS(1200), - [anon_sym_use] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_POUND] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_COLON_COLON] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_yield] = ACTIONS(1200), - [anon_sym_move] = ACTIONS(1200), - [sym_integer_literal] = ACTIONS(1198), - [aux_sym_string_literal_token1] = ACTIONS(1198), - [sym_char_literal] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1200), - [anon_sym_false] = ACTIONS(1200), + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_u8] = ACTIONS(1219), + [anon_sym_i8] = ACTIONS(1219), + [anon_sym_u16] = ACTIONS(1219), + [anon_sym_i16] = ACTIONS(1219), + [anon_sym_u32] = ACTIONS(1219), + [anon_sym_i32] = ACTIONS(1219), + [anon_sym_u64] = ACTIONS(1219), + [anon_sym_i64] = ACTIONS(1219), + [anon_sym_u128] = ACTIONS(1219), + [anon_sym_i128] = ACTIONS(1219), + [anon_sym_u256] = ACTIONS(1219), + [anon_sym_i256] = ACTIONS(1219), + [anon_sym_b256] = ACTIONS(1219), + [anon_sym_isize] = ACTIONS(1219), + [anon_sym_usize] = ACTIONS(1219), + [anon_sym_f32] = ACTIONS(1219), + [anon_sym_f64] = ACTIONS(1219), + [anon_sym_bool] = ACTIONS(1219), + [anon_sym_char] = ACTIONS(1219), + [anon_sym_str] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_contract] = ACTIONS(1219), + [anon_sym_script] = ACTIONS(1219), + [anon_sym_predicate] = ACTIONS(1219), + [anon_sym_library] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1219), + [anon_sym_abi] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_configurable] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_mod] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_fn] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_impl] = ACTIONS(1219), + [anon_sym_let] = ACTIONS(1219), + [anon_sym_match] = ACTIONS(1219), + [anon_sym_pub] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_storage] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_trait] = ACTIONS(1219), + [anon_sym_type] = ACTIONS(1219), + [anon_sym_use] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_POUND] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_COLON_COLON] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_move] = ACTIONS(1219), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1217), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1219), + [anon_sym_false] = ACTIONS(1219), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1198), - [sym_raw_string_literal] = ACTIONS(1198), - [sym_float_literal] = ACTIONS(1198), + [sym_self] = ACTIONS(1219), + [sym_metavariable] = ACTIONS(1217), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_u8] = ACTIONS(1204), - [anon_sym_i8] = ACTIONS(1204), - [anon_sym_u16] = ACTIONS(1204), - [anon_sym_i16] = ACTIONS(1204), - [anon_sym_u32] = ACTIONS(1204), - [anon_sym_i32] = ACTIONS(1204), - [anon_sym_u64] = ACTIONS(1204), - [anon_sym_i64] = ACTIONS(1204), - [anon_sym_u128] = ACTIONS(1204), - [anon_sym_i128] = ACTIONS(1204), - [anon_sym_isize] = ACTIONS(1204), - [anon_sym_usize] = ACTIONS(1204), - [anon_sym_f32] = ACTIONS(1204), - [anon_sym_f64] = ACTIONS(1204), - [anon_sym_bool] = ACTIONS(1204), - [anon_sym_char] = ACTIONS(1204), - [anon_sym_str] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_contract] = ACTIONS(1204), - [anon_sym_script] = ACTIONS(1204), - [anon_sym_predicate] = ACTIONS(1204), - [anon_sym_library] = ACTIONS(1204), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_abi] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_configurable] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_dep] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_fn] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_impl] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1204), - [anon_sym_match] = ACTIONS(1204), - [anon_sym_pub] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_storage] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_trait] = ACTIONS(1204), - [anon_sym_use] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_COLON_COLON] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_DOT_DOT] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PIPE] = ACTIONS(1202), - [anon_sym_yield] = ACTIONS(1204), - [anon_sym_move] = ACTIONS(1204), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1202), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1204), - [anon_sym_false] = ACTIONS(1204), + [ts_builtin_sym_end] = ACTIONS(1221), + [sym_identifier] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_u256] = ACTIONS(1223), + [anon_sym_i256] = ACTIONS(1223), + [anon_sym_b256] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_contract] = ACTIONS(1223), + [anon_sym_script] = ACTIONS(1223), + [anon_sym_predicate] = ACTIONS(1223), + [anon_sym_library] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1223), + [anon_sym_abi] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_configurable] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_mod] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_fn] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_impl] = ACTIONS(1223), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_pub] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_storage] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_trait] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_use] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_COLON_COLON] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_yield] = ACTIONS(1223), + [anon_sym_move] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [aux_sym_string_literal_token1] = ACTIONS(1221), + [sym_char_literal] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1223), + [anon_sym_false] = ACTIONS(1223), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1204), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_self] = ACTIONS(1223), + [sym_metavariable] = ACTIONS(1221), + [sym_raw_string_literal] = ACTIONS(1221), + [sym_float_literal] = ACTIONS(1221), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_contract] = ACTIONS(1208), - [anon_sym_script] = ACTIONS(1208), - [anon_sym_predicate] = ACTIONS(1208), - [anon_sym_library] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_abi] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_configurable] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_dep] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_storage] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), + [ts_builtin_sym_end] = ACTIONS(1225), + [sym_identifier] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_u8] = ACTIONS(1227), + [anon_sym_i8] = ACTIONS(1227), + [anon_sym_u16] = ACTIONS(1227), + [anon_sym_i16] = ACTIONS(1227), + [anon_sym_u32] = ACTIONS(1227), + [anon_sym_i32] = ACTIONS(1227), + [anon_sym_u64] = ACTIONS(1227), + [anon_sym_i64] = ACTIONS(1227), + [anon_sym_u128] = ACTIONS(1227), + [anon_sym_i128] = ACTIONS(1227), + [anon_sym_u256] = ACTIONS(1227), + [anon_sym_i256] = ACTIONS(1227), + [anon_sym_b256] = ACTIONS(1227), + [anon_sym_isize] = ACTIONS(1227), + [anon_sym_usize] = ACTIONS(1227), + [anon_sym_f32] = ACTIONS(1227), + [anon_sym_f64] = ACTIONS(1227), + [anon_sym_bool] = ACTIONS(1227), + [anon_sym_char] = ACTIONS(1227), + [anon_sym_str] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_contract] = ACTIONS(1227), + [anon_sym_script] = ACTIONS(1227), + [anon_sym_predicate] = ACTIONS(1227), + [anon_sym_library] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_abi] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_configurable] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_mod] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_impl] = ACTIONS(1227), + [anon_sym_let] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1227), + [anon_sym_pub] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_storage] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_trait] = ACTIONS(1227), + [anon_sym_type] = ACTIONS(1227), + [anon_sym_use] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_COLON_COLON] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_yield] = ACTIONS(1227), + [anon_sym_move] = ACTIONS(1227), + [sym_integer_literal] = ACTIONS(1225), + [aux_sym_string_literal_token1] = ACTIONS(1225), + [sym_char_literal] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1227), + [anon_sym_false] = ACTIONS(1227), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym_raw_string_literal] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), + [sym_self] = ACTIONS(1227), + [sym_metavariable] = ACTIONS(1225), + [sym_raw_string_literal] = ACTIONS(1225), + [sym_float_literal] = ACTIONS(1225), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_u8] = ACTIONS(1212), - [anon_sym_i8] = ACTIONS(1212), - [anon_sym_u16] = ACTIONS(1212), - [anon_sym_i16] = ACTIONS(1212), - [anon_sym_u32] = ACTIONS(1212), - [anon_sym_i32] = ACTIONS(1212), - [anon_sym_u64] = ACTIONS(1212), - [anon_sym_i64] = ACTIONS(1212), - [anon_sym_u128] = ACTIONS(1212), - [anon_sym_i128] = ACTIONS(1212), - [anon_sym_isize] = ACTIONS(1212), - [anon_sym_usize] = ACTIONS(1212), - [anon_sym_f32] = ACTIONS(1212), - [anon_sym_f64] = ACTIONS(1212), - [anon_sym_bool] = ACTIONS(1212), - [anon_sym_char] = ACTIONS(1212), - [anon_sym_str] = ACTIONS(1212), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_contract] = ACTIONS(1212), - [anon_sym_script] = ACTIONS(1212), - [anon_sym_predicate] = ACTIONS(1212), - [anon_sym_library] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_abi] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_configurable] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_dep] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_fn] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_impl] = ACTIONS(1212), - [anon_sym_let] = ACTIONS(1212), - [anon_sym_match] = ACTIONS(1212), - [anon_sym_pub] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_storage] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_trait] = ACTIONS(1212), - [anon_sym_use] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_POUND] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_yield] = ACTIONS(1212), - [anon_sym_move] = ACTIONS(1212), - [sym_integer_literal] = ACTIONS(1210), - [aux_sym_string_literal_token1] = ACTIONS(1210), - [sym_char_literal] = ACTIONS(1210), - [anon_sym_true] = ACTIONS(1212), - [anon_sym_false] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_u8] = ACTIONS(1231), + [anon_sym_i8] = ACTIONS(1231), + [anon_sym_u16] = ACTIONS(1231), + [anon_sym_i16] = ACTIONS(1231), + [anon_sym_u32] = ACTIONS(1231), + [anon_sym_i32] = ACTIONS(1231), + [anon_sym_u64] = ACTIONS(1231), + [anon_sym_i64] = ACTIONS(1231), + [anon_sym_u128] = ACTIONS(1231), + [anon_sym_i128] = ACTIONS(1231), + [anon_sym_u256] = ACTIONS(1231), + [anon_sym_i256] = ACTIONS(1231), + [anon_sym_b256] = ACTIONS(1231), + [anon_sym_isize] = ACTIONS(1231), + [anon_sym_usize] = ACTIONS(1231), + [anon_sym_f32] = ACTIONS(1231), + [anon_sym_f64] = ACTIONS(1231), + [anon_sym_bool] = ACTIONS(1231), + [anon_sym_char] = ACTIONS(1231), + [anon_sym_str] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_contract] = ACTIONS(1231), + [anon_sym_script] = ACTIONS(1231), + [anon_sym_predicate] = ACTIONS(1231), + [anon_sym_library] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_abi] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_configurable] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_mod] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_fn] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_impl] = ACTIONS(1231), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_pub] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_storage] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_trait] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1231), + [anon_sym_use] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_COLON_COLON] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_yield] = ACTIONS(1231), + [anon_sym_move] = ACTIONS(1231), + [sym_integer_literal] = ACTIONS(1229), + [aux_sym_string_literal_token1] = ACTIONS(1229), + [sym_char_literal] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1212), - [sym_metavariable] = ACTIONS(1210), - [sym_raw_string_literal] = ACTIONS(1210), - [sym_float_literal] = ACTIONS(1210), + [sym_self] = ACTIONS(1231), + [sym_metavariable] = ACTIONS(1229), + [sym_raw_string_literal] = ACTIONS(1229), + [sym_float_literal] = ACTIONS(1229), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_u8] = ACTIONS(1216), - [anon_sym_i8] = ACTIONS(1216), - [anon_sym_u16] = ACTIONS(1216), - [anon_sym_i16] = ACTIONS(1216), - [anon_sym_u32] = ACTIONS(1216), - [anon_sym_i32] = ACTIONS(1216), - [anon_sym_u64] = ACTIONS(1216), - [anon_sym_i64] = ACTIONS(1216), - [anon_sym_u128] = ACTIONS(1216), - [anon_sym_i128] = ACTIONS(1216), - [anon_sym_isize] = ACTIONS(1216), - [anon_sym_usize] = ACTIONS(1216), - [anon_sym_f32] = ACTIONS(1216), - [anon_sym_f64] = ACTIONS(1216), - [anon_sym_bool] = ACTIONS(1216), - [anon_sym_char] = ACTIONS(1216), - [anon_sym_str] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_contract] = ACTIONS(1216), - [anon_sym_script] = ACTIONS(1216), - [anon_sym_predicate] = ACTIONS(1216), - [anon_sym_library] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_abi] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_configurable] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_dep] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_fn] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_impl] = ACTIONS(1216), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1216), - [anon_sym_pub] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_storage] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_trait] = ACTIONS(1216), - [anon_sym_use] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_POUND] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1214), - [anon_sym_COLON_COLON] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1214), - [anon_sym_yield] = ACTIONS(1216), - [anon_sym_move] = ACTIONS(1216), - [sym_integer_literal] = ACTIONS(1214), - [aux_sym_string_literal_token1] = ACTIONS(1214), - [sym_char_literal] = ACTIONS(1214), - [anon_sym_true] = ACTIONS(1216), - [anon_sym_false] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_u8] = ACTIONS(1235), + [anon_sym_i8] = ACTIONS(1235), + [anon_sym_u16] = ACTIONS(1235), + [anon_sym_i16] = ACTIONS(1235), + [anon_sym_u32] = ACTIONS(1235), + [anon_sym_i32] = ACTIONS(1235), + [anon_sym_u64] = ACTIONS(1235), + [anon_sym_i64] = ACTIONS(1235), + [anon_sym_u128] = ACTIONS(1235), + [anon_sym_i128] = ACTIONS(1235), + [anon_sym_u256] = ACTIONS(1235), + [anon_sym_i256] = ACTIONS(1235), + [anon_sym_b256] = ACTIONS(1235), + [anon_sym_isize] = ACTIONS(1235), + [anon_sym_usize] = ACTIONS(1235), + [anon_sym_f32] = ACTIONS(1235), + [anon_sym_f64] = ACTIONS(1235), + [anon_sym_bool] = ACTIONS(1235), + [anon_sym_char] = ACTIONS(1235), + [anon_sym_str] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_contract] = ACTIONS(1235), + [anon_sym_script] = ACTIONS(1235), + [anon_sym_predicate] = ACTIONS(1235), + [anon_sym_library] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1235), + [anon_sym_abi] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_configurable] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_mod] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_fn] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_impl] = ACTIONS(1235), + [anon_sym_let] = ACTIONS(1235), + [anon_sym_match] = ACTIONS(1235), + [anon_sym_pub] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_storage] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_trait] = ACTIONS(1235), + [anon_sym_type] = ACTIONS(1235), + [anon_sym_use] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1233), + [anon_sym_COLON_COLON] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_move] = ACTIONS(1235), + [sym_integer_literal] = ACTIONS(1233), + [aux_sym_string_literal_token1] = ACTIONS(1233), + [sym_char_literal] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1235), + [anon_sym_false] = ACTIONS(1235), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1214), - [sym_raw_string_literal] = ACTIONS(1214), - [sym_float_literal] = ACTIONS(1214), + [sym_self] = ACTIONS(1235), + [sym_metavariable] = ACTIONS(1233), + [sym_raw_string_literal] = ACTIONS(1233), + [sym_float_literal] = ACTIONS(1233), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_u8] = ACTIONS(1220), - [anon_sym_i8] = ACTIONS(1220), - [anon_sym_u16] = ACTIONS(1220), - [anon_sym_i16] = ACTIONS(1220), - [anon_sym_u32] = ACTIONS(1220), - [anon_sym_i32] = ACTIONS(1220), - [anon_sym_u64] = ACTIONS(1220), - [anon_sym_i64] = ACTIONS(1220), - [anon_sym_u128] = ACTIONS(1220), - [anon_sym_i128] = ACTIONS(1220), - [anon_sym_isize] = ACTIONS(1220), - [anon_sym_usize] = ACTIONS(1220), - [anon_sym_f32] = ACTIONS(1220), - [anon_sym_f64] = ACTIONS(1220), - [anon_sym_bool] = ACTIONS(1220), - [anon_sym_char] = ACTIONS(1220), - [anon_sym_str] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_contract] = ACTIONS(1220), - [anon_sym_script] = ACTIONS(1220), - [anon_sym_predicate] = ACTIONS(1220), - [anon_sym_library] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_abi] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_configurable] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_dep] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_fn] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_impl] = ACTIONS(1220), - [anon_sym_let] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1220), - [anon_sym_pub] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_storage] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_trait] = ACTIONS(1220), - [anon_sym_use] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_move] = ACTIONS(1220), - [sym_integer_literal] = ACTIONS(1218), - [aux_sym_string_literal_token1] = ACTIONS(1218), - [sym_char_literal] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), + [ts_builtin_sym_end] = ACTIONS(1237), + [sym_identifier] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_u256] = ACTIONS(1239), + [anon_sym_i256] = ACTIONS(1239), + [anon_sym_b256] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_contract] = ACTIONS(1239), + [anon_sym_script] = ACTIONS(1239), + [anon_sym_predicate] = ACTIONS(1239), + [anon_sym_library] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_abi] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_configurable] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_mod] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_impl] = ACTIONS(1239), + [anon_sym_let] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1239), + [anon_sym_pub] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_storage] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_trait] = ACTIONS(1239), + [anon_sym_type] = ACTIONS(1239), + [anon_sym_use] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1237), + [anon_sym_COLON_COLON] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_yield] = ACTIONS(1239), + [anon_sym_move] = ACTIONS(1239), + [sym_integer_literal] = ACTIONS(1237), + [aux_sym_string_literal_token1] = ACTIONS(1237), + [sym_char_literal] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1239), + [anon_sym_false] = ACTIONS(1239), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1220), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(1218), - [sym_float_literal] = ACTIONS(1218), + [sym_self] = ACTIONS(1239), + [sym_metavariable] = ACTIONS(1237), + [sym_raw_string_literal] = ACTIONS(1237), + [sym_float_literal] = ACTIONS(1237), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_u8] = ACTIONS(1224), - [anon_sym_i8] = ACTIONS(1224), - [anon_sym_u16] = ACTIONS(1224), - [anon_sym_i16] = ACTIONS(1224), - [anon_sym_u32] = ACTIONS(1224), - [anon_sym_i32] = ACTIONS(1224), - [anon_sym_u64] = ACTIONS(1224), - [anon_sym_i64] = ACTIONS(1224), - [anon_sym_u128] = ACTIONS(1224), - [anon_sym_i128] = ACTIONS(1224), - [anon_sym_isize] = ACTIONS(1224), - [anon_sym_usize] = ACTIONS(1224), - [anon_sym_f32] = ACTIONS(1224), - [anon_sym_f64] = ACTIONS(1224), - [anon_sym_bool] = ACTIONS(1224), - [anon_sym_char] = ACTIONS(1224), - [anon_sym_str] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_contract] = ACTIONS(1224), - [anon_sym_script] = ACTIONS(1224), - [anon_sym_predicate] = ACTIONS(1224), - [anon_sym_library] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_abi] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_configurable] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_dep] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_fn] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_impl] = ACTIONS(1224), - [anon_sym_let] = ACTIONS(1224), - [anon_sym_match] = ACTIONS(1224), - [anon_sym_pub] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_storage] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_trait] = ACTIONS(1224), - [anon_sym_use] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_POUND] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_COLON_COLON] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_DOT_DOT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(1224), - [anon_sym_move] = ACTIONS(1224), - [sym_integer_literal] = ACTIONS(1222), - [aux_sym_string_literal_token1] = ACTIONS(1222), - [sym_char_literal] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1224), - [anon_sym_false] = ACTIONS(1224), + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_u8] = ACTIONS(1243), + [anon_sym_i8] = ACTIONS(1243), + [anon_sym_u16] = ACTIONS(1243), + [anon_sym_i16] = ACTIONS(1243), + [anon_sym_u32] = ACTIONS(1243), + [anon_sym_i32] = ACTIONS(1243), + [anon_sym_u64] = ACTIONS(1243), + [anon_sym_i64] = ACTIONS(1243), + [anon_sym_u128] = ACTIONS(1243), + [anon_sym_i128] = ACTIONS(1243), + [anon_sym_u256] = ACTIONS(1243), + [anon_sym_i256] = ACTIONS(1243), + [anon_sym_b256] = ACTIONS(1243), + [anon_sym_isize] = ACTIONS(1243), + [anon_sym_usize] = ACTIONS(1243), + [anon_sym_f32] = ACTIONS(1243), + [anon_sym_f64] = ACTIONS(1243), + [anon_sym_bool] = ACTIONS(1243), + [anon_sym_char] = ACTIONS(1243), + [anon_sym_str] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_contract] = ACTIONS(1243), + [anon_sym_script] = ACTIONS(1243), + [anon_sym_predicate] = ACTIONS(1243), + [anon_sym_library] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1243), + [anon_sym_abi] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_configurable] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_mod] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_fn] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1243), + [anon_sym_let] = ACTIONS(1243), + [anon_sym_match] = ACTIONS(1243), + [anon_sym_pub] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_storage] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_trait] = ACTIONS(1243), + [anon_sym_type] = ACTIONS(1243), + [anon_sym_use] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_POUND] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_COLON_COLON] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [anon_sym_move] = ACTIONS(1243), + [sym_integer_literal] = ACTIONS(1241), + [aux_sym_string_literal_token1] = ACTIONS(1241), + [sym_char_literal] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1224), - [sym_metavariable] = ACTIONS(1222), - [sym_raw_string_literal] = ACTIONS(1222), - [sym_float_literal] = ACTIONS(1222), + [sym_self] = ACTIONS(1243), + [sym_metavariable] = ACTIONS(1241), + [sym_raw_string_literal] = ACTIONS(1241), + [sym_float_literal] = ACTIONS(1241), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_u8] = ACTIONS(1228), - [anon_sym_i8] = ACTIONS(1228), - [anon_sym_u16] = ACTIONS(1228), - [anon_sym_i16] = ACTIONS(1228), - [anon_sym_u32] = ACTIONS(1228), - [anon_sym_i32] = ACTIONS(1228), - [anon_sym_u64] = ACTIONS(1228), - [anon_sym_i64] = ACTIONS(1228), - [anon_sym_u128] = ACTIONS(1228), - [anon_sym_i128] = ACTIONS(1228), - [anon_sym_isize] = ACTIONS(1228), - [anon_sym_usize] = ACTIONS(1228), - [anon_sym_f32] = ACTIONS(1228), - [anon_sym_f64] = ACTIONS(1228), - [anon_sym_bool] = ACTIONS(1228), - [anon_sym_char] = ACTIONS(1228), - [anon_sym_str] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_contract] = ACTIONS(1228), - [anon_sym_script] = ACTIONS(1228), - [anon_sym_predicate] = ACTIONS(1228), - [anon_sym_library] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_abi] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_configurable] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_dep] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_fn] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_impl] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_pub] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_storage] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_trait] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1226), - [anon_sym_COLON_COLON] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_DOT_DOT] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(1228), - [anon_sym_move] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(1226), - [aux_sym_string_literal_token1] = ACTIONS(1226), - [sym_char_literal] = ACTIONS(1226), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_u8] = ACTIONS(1247), + [anon_sym_i8] = ACTIONS(1247), + [anon_sym_u16] = ACTIONS(1247), + [anon_sym_i16] = ACTIONS(1247), + [anon_sym_u32] = ACTIONS(1247), + [anon_sym_i32] = ACTIONS(1247), + [anon_sym_u64] = ACTIONS(1247), + [anon_sym_i64] = ACTIONS(1247), + [anon_sym_u128] = ACTIONS(1247), + [anon_sym_i128] = ACTIONS(1247), + [anon_sym_u256] = ACTIONS(1247), + [anon_sym_i256] = ACTIONS(1247), + [anon_sym_b256] = ACTIONS(1247), + [anon_sym_isize] = ACTIONS(1247), + [anon_sym_usize] = ACTIONS(1247), + [anon_sym_f32] = ACTIONS(1247), + [anon_sym_f64] = ACTIONS(1247), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_char] = ACTIONS(1247), + [anon_sym_str] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_contract] = ACTIONS(1247), + [anon_sym_script] = ACTIONS(1247), + [anon_sym_predicate] = ACTIONS(1247), + [anon_sym_library] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_abi] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_configurable] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_mod] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_fn] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_impl] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(1247), + [anon_sym_match] = ACTIONS(1247), + [anon_sym_pub] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_storage] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_trait] = ACTIONS(1247), + [anon_sym_type] = ACTIONS(1247), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_move] = ACTIONS(1247), + [sym_integer_literal] = ACTIONS(1245), + [aux_sym_string_literal_token1] = ACTIONS(1245), + [sym_char_literal] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1228), - [sym_metavariable] = ACTIONS(1226), - [sym_raw_string_literal] = ACTIONS(1226), - [sym_float_literal] = ACTIONS(1226), + [sym_self] = ACTIONS(1247), + [sym_metavariable] = ACTIONS(1245), + [sym_raw_string_literal] = ACTIONS(1245), + [sym_float_literal] = ACTIONS(1245), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_identifier] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_u8] = ACTIONS(1232), - [anon_sym_i8] = ACTIONS(1232), - [anon_sym_u16] = ACTIONS(1232), - [anon_sym_i16] = ACTIONS(1232), - [anon_sym_u32] = ACTIONS(1232), - [anon_sym_i32] = ACTIONS(1232), - [anon_sym_u64] = ACTIONS(1232), - [anon_sym_i64] = ACTIONS(1232), - [anon_sym_u128] = ACTIONS(1232), - [anon_sym_i128] = ACTIONS(1232), - [anon_sym_isize] = ACTIONS(1232), - [anon_sym_usize] = ACTIONS(1232), - [anon_sym_f32] = ACTIONS(1232), - [anon_sym_f64] = ACTIONS(1232), - [anon_sym_bool] = ACTIONS(1232), - [anon_sym_char] = ACTIONS(1232), - [anon_sym_str] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_contract] = ACTIONS(1232), - [anon_sym_script] = ACTIONS(1232), - [anon_sym_predicate] = ACTIONS(1232), - [anon_sym_library] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_abi] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_configurable] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_dep] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_fn] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_impl] = ACTIONS(1232), - [anon_sym_let] = ACTIONS(1232), - [anon_sym_match] = ACTIONS(1232), - [anon_sym_pub] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_storage] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_trait] = ACTIONS(1232), - [anon_sym_use] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PIPE] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_move] = ACTIONS(1232), - [sym_integer_literal] = ACTIONS(1230), - [aux_sym_string_literal_token1] = ACTIONS(1230), - [sym_char_literal] = ACTIONS(1230), - [anon_sym_true] = ACTIONS(1232), - [anon_sym_false] = ACTIONS(1232), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_u8] = ACTIONS(1251), + [anon_sym_i8] = ACTIONS(1251), + [anon_sym_u16] = ACTIONS(1251), + [anon_sym_i16] = ACTIONS(1251), + [anon_sym_u32] = ACTIONS(1251), + [anon_sym_i32] = ACTIONS(1251), + [anon_sym_u64] = ACTIONS(1251), + [anon_sym_i64] = ACTIONS(1251), + [anon_sym_u128] = ACTIONS(1251), + [anon_sym_i128] = ACTIONS(1251), + [anon_sym_u256] = ACTIONS(1251), + [anon_sym_i256] = ACTIONS(1251), + [anon_sym_b256] = ACTIONS(1251), + [anon_sym_isize] = ACTIONS(1251), + [anon_sym_usize] = ACTIONS(1251), + [anon_sym_f32] = ACTIONS(1251), + [anon_sym_f64] = ACTIONS(1251), + [anon_sym_bool] = ACTIONS(1251), + [anon_sym_char] = ACTIONS(1251), + [anon_sym_str] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_contract] = ACTIONS(1251), + [anon_sym_script] = ACTIONS(1251), + [anon_sym_predicate] = ACTIONS(1251), + [anon_sym_library] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_abi] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_configurable] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_mod] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_fn] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_impl] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_pub] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_storage] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_trait] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_POUND] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_yield] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [sym_integer_literal] = ACTIONS(1249), + [aux_sym_string_literal_token1] = ACTIONS(1249), + [sym_char_literal] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1232), - [sym_metavariable] = ACTIONS(1230), - [sym_raw_string_literal] = ACTIONS(1230), - [sym_float_literal] = ACTIONS(1230), + [sym_self] = ACTIONS(1251), + [sym_metavariable] = ACTIONS(1249), + [sym_raw_string_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1249), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_u8] = ACTIONS(1236), - [anon_sym_i8] = ACTIONS(1236), - [anon_sym_u16] = ACTIONS(1236), - [anon_sym_i16] = ACTIONS(1236), - [anon_sym_u32] = ACTIONS(1236), - [anon_sym_i32] = ACTIONS(1236), - [anon_sym_u64] = ACTIONS(1236), - [anon_sym_i64] = ACTIONS(1236), - [anon_sym_u128] = ACTIONS(1236), - [anon_sym_i128] = ACTIONS(1236), - [anon_sym_isize] = ACTIONS(1236), - [anon_sym_usize] = ACTIONS(1236), - [anon_sym_f32] = ACTIONS(1236), - [anon_sym_f64] = ACTIONS(1236), - [anon_sym_bool] = ACTIONS(1236), - [anon_sym_char] = ACTIONS(1236), - [anon_sym_str] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_contract] = ACTIONS(1236), - [anon_sym_script] = ACTIONS(1236), - [anon_sym_predicate] = ACTIONS(1236), - [anon_sym_library] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_abi] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_configurable] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_dep] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_fn] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_impl] = ACTIONS(1236), - [anon_sym_let] = ACTIONS(1236), - [anon_sym_match] = ACTIONS(1236), - [anon_sym_pub] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_storage] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_trait] = ACTIONS(1236), - [anon_sym_use] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_COLON_COLON] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1236), - [anon_sym_move] = ACTIONS(1236), - [sym_integer_literal] = ACTIONS(1234), - [aux_sym_string_literal_token1] = ACTIONS(1234), - [sym_char_literal] = ACTIONS(1234), - [anon_sym_true] = ACTIONS(1236), - [anon_sym_false] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_u8] = ACTIONS(1255), + [anon_sym_i8] = ACTIONS(1255), + [anon_sym_u16] = ACTIONS(1255), + [anon_sym_i16] = ACTIONS(1255), + [anon_sym_u32] = ACTIONS(1255), + [anon_sym_i32] = ACTIONS(1255), + [anon_sym_u64] = ACTIONS(1255), + [anon_sym_i64] = ACTIONS(1255), + [anon_sym_u128] = ACTIONS(1255), + [anon_sym_i128] = ACTIONS(1255), + [anon_sym_u256] = ACTIONS(1255), + [anon_sym_i256] = ACTIONS(1255), + [anon_sym_b256] = ACTIONS(1255), + [anon_sym_isize] = ACTIONS(1255), + [anon_sym_usize] = ACTIONS(1255), + [anon_sym_f32] = ACTIONS(1255), + [anon_sym_f64] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_char] = ACTIONS(1255), + [anon_sym_str] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_contract] = ACTIONS(1255), + [anon_sym_script] = ACTIONS(1255), + [anon_sym_predicate] = ACTIONS(1255), + [anon_sym_library] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_abi] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_configurable] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_impl] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_pub] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_storage] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_trait] = ACTIONS(1255), + [anon_sym_type] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_yield] = ACTIONS(1255), + [anon_sym_move] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1253), + [aux_sym_string_literal_token1] = ACTIONS(1253), + [sym_char_literal] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1236), - [sym_metavariable] = ACTIONS(1234), - [sym_raw_string_literal] = ACTIONS(1234), - [sym_float_literal] = ACTIONS(1234), + [sym_self] = ACTIONS(1255), + [sym_metavariable] = ACTIONS(1253), + [sym_raw_string_literal] = ACTIONS(1253), + [sym_float_literal] = ACTIONS(1253), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1238), - [anon_sym_contract] = ACTIONS(1240), - [anon_sym_script] = ACTIONS(1240), - [anon_sym_predicate] = ACTIONS(1240), - [anon_sym_library] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_abi] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_configurable] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_dep] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_storage] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_COLON_COLON] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_move] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1238), - [aux_sym_string_literal_token1] = ACTIONS(1238), - [sym_char_literal] = ACTIONS(1238), - [anon_sym_true] = ACTIONS(1240), - [anon_sym_false] = ACTIONS(1240), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_u256] = ACTIONS(1259), + [anon_sym_i256] = ACTIONS(1259), + [anon_sym_b256] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_contract] = ACTIONS(1259), + [anon_sym_script] = ACTIONS(1259), + [anon_sym_predicate] = ACTIONS(1259), + [anon_sym_library] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_abi] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_configurable] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_fn] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_pub] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_storage] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_trait] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_use] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1238), - [sym_raw_string_literal] = ACTIONS(1238), - [sym_float_literal] = ACTIONS(1238), + [sym_self] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym_raw_string_literal] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1244), - [anon_sym_i8] = ACTIONS(1244), - [anon_sym_u16] = ACTIONS(1244), - [anon_sym_i16] = ACTIONS(1244), - [anon_sym_u32] = ACTIONS(1244), - [anon_sym_i32] = ACTIONS(1244), - [anon_sym_u64] = ACTIONS(1244), - [anon_sym_i64] = ACTIONS(1244), - [anon_sym_u128] = ACTIONS(1244), - [anon_sym_i128] = ACTIONS(1244), - [anon_sym_isize] = ACTIONS(1244), - [anon_sym_usize] = ACTIONS(1244), - [anon_sym_f32] = ACTIONS(1244), - [anon_sym_f64] = ACTIONS(1244), - [anon_sym_bool] = ACTIONS(1244), - [anon_sym_char] = ACTIONS(1244), - [anon_sym_str] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1242), - [anon_sym_contract] = ACTIONS(1244), - [anon_sym_script] = ACTIONS(1244), - [anon_sym_predicate] = ACTIONS(1244), - [anon_sym_library] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_abi] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_configurable] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_dep] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_fn] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_impl] = ACTIONS(1244), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_match] = ACTIONS(1244), - [anon_sym_pub] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_storage] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_trait] = ACTIONS(1244), - [anon_sym_use] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_move] = ACTIONS(1244), - [sym_integer_literal] = ACTIONS(1242), - [aux_sym_string_literal_token1] = ACTIONS(1242), - [sym_char_literal] = ACTIONS(1242), - [anon_sym_true] = ACTIONS(1244), - [anon_sym_false] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_u8] = ACTIONS(1263), + [anon_sym_i8] = ACTIONS(1263), + [anon_sym_u16] = ACTIONS(1263), + [anon_sym_i16] = ACTIONS(1263), + [anon_sym_u32] = ACTIONS(1263), + [anon_sym_i32] = ACTIONS(1263), + [anon_sym_u64] = ACTIONS(1263), + [anon_sym_i64] = ACTIONS(1263), + [anon_sym_u128] = ACTIONS(1263), + [anon_sym_i128] = ACTIONS(1263), + [anon_sym_u256] = ACTIONS(1263), + [anon_sym_i256] = ACTIONS(1263), + [anon_sym_b256] = ACTIONS(1263), + [anon_sym_isize] = ACTIONS(1263), + [anon_sym_usize] = ACTIONS(1263), + [anon_sym_f32] = ACTIONS(1263), + [anon_sym_f64] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1263), + [anon_sym_char] = ACTIONS(1263), + [anon_sym_str] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_contract] = ACTIONS(1263), + [anon_sym_script] = ACTIONS(1263), + [anon_sym_predicate] = ACTIONS(1263), + [anon_sym_library] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_abi] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_configurable] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_mod] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_impl] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1263), + [anon_sym_match] = ACTIONS(1263), + [anon_sym_pub] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_storage] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_trait] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(1263), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_yield] = ACTIONS(1263), + [anon_sym_move] = ACTIONS(1263), + [sym_integer_literal] = ACTIONS(1261), + [aux_sym_string_literal_token1] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1244), - [sym_metavariable] = ACTIONS(1242), - [sym_raw_string_literal] = ACTIONS(1242), - [sym_float_literal] = ACTIONS(1242), + [sym_self] = ACTIONS(1263), + [sym_metavariable] = ACTIONS(1261), + [sym_raw_string_literal] = ACTIONS(1261), + [sym_float_literal] = ACTIONS(1261), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_contract] = ACTIONS(1248), - [anon_sym_script] = ACTIONS(1248), - [anon_sym_predicate] = ACTIONS(1248), - [anon_sym_library] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_abi] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_configurable] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_dep] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_fn] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_impl] = ACTIONS(1248), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_match] = ACTIONS(1248), - [anon_sym_pub] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_storage] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_trait] = ACTIONS(1248), - [anon_sym_use] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_COLON_COLON] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1248), - [anon_sym_move] = ACTIONS(1248), - [sym_integer_literal] = ACTIONS(1246), - [aux_sym_string_literal_token1] = ACTIONS(1246), - [sym_char_literal] = ACTIONS(1246), - [anon_sym_true] = ACTIONS(1248), - [anon_sym_false] = ACTIONS(1248), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u128] = ACTIONS(1267), + [anon_sym_i128] = ACTIONS(1267), + [anon_sym_u256] = ACTIONS(1267), + [anon_sym_i256] = ACTIONS(1267), + [anon_sym_b256] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_char] = ACTIONS(1267), + [anon_sym_str] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_contract] = ACTIONS(1267), + [anon_sym_script] = ACTIONS(1267), + [anon_sym_predicate] = ACTIONS(1267), + [anon_sym_library] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_abi] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_configurable] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_fn] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_impl] = ACTIONS(1267), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_match] = ACTIONS(1267), + [anon_sym_pub] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_storage] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_trait] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_use] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_yield] = ACTIONS(1267), + [anon_sym_move] = ACTIONS(1267), + [sym_integer_literal] = ACTIONS(1265), + [aux_sym_string_literal_token1] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1248), - [sym_metavariable] = ACTIONS(1246), - [sym_raw_string_literal] = ACTIONS(1246), - [sym_float_literal] = ACTIONS(1246), + [sym_self] = ACTIONS(1267), + [sym_metavariable] = ACTIONS(1265), + [sym_raw_string_literal] = ACTIONS(1265), + [sym_float_literal] = ACTIONS(1265), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_u8] = ACTIONS(1252), - [anon_sym_i8] = ACTIONS(1252), - [anon_sym_u16] = ACTIONS(1252), - [anon_sym_i16] = ACTIONS(1252), - [anon_sym_u32] = ACTIONS(1252), - [anon_sym_i32] = ACTIONS(1252), - [anon_sym_u64] = ACTIONS(1252), - [anon_sym_i64] = ACTIONS(1252), - [anon_sym_u128] = ACTIONS(1252), - [anon_sym_i128] = ACTIONS(1252), - [anon_sym_isize] = ACTIONS(1252), - [anon_sym_usize] = ACTIONS(1252), - [anon_sym_f32] = ACTIONS(1252), - [anon_sym_f64] = ACTIONS(1252), - [anon_sym_bool] = ACTIONS(1252), - [anon_sym_char] = ACTIONS(1252), - [anon_sym_str] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1250), - [anon_sym_contract] = ACTIONS(1252), - [anon_sym_script] = ACTIONS(1252), - [anon_sym_predicate] = ACTIONS(1252), - [anon_sym_library] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_abi] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_configurable] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_dep] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_fn] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_impl] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_pub] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_storage] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_trait] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_move] = ACTIONS(1252), - [sym_integer_literal] = ACTIONS(1250), - [aux_sym_string_literal_token1] = ACTIONS(1250), - [sym_char_literal] = ACTIONS(1250), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_u8] = ACTIONS(1271), + [anon_sym_i8] = ACTIONS(1271), + [anon_sym_u16] = ACTIONS(1271), + [anon_sym_i16] = ACTIONS(1271), + [anon_sym_u32] = ACTIONS(1271), + [anon_sym_i32] = ACTIONS(1271), + [anon_sym_u64] = ACTIONS(1271), + [anon_sym_i64] = ACTIONS(1271), + [anon_sym_u128] = ACTIONS(1271), + [anon_sym_i128] = ACTIONS(1271), + [anon_sym_u256] = ACTIONS(1271), + [anon_sym_i256] = ACTIONS(1271), + [anon_sym_b256] = ACTIONS(1271), + [anon_sym_isize] = ACTIONS(1271), + [anon_sym_usize] = ACTIONS(1271), + [anon_sym_f32] = ACTIONS(1271), + [anon_sym_f64] = ACTIONS(1271), + [anon_sym_bool] = ACTIONS(1271), + [anon_sym_char] = ACTIONS(1271), + [anon_sym_str] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_contract] = ACTIONS(1271), + [anon_sym_script] = ACTIONS(1271), + [anon_sym_predicate] = ACTIONS(1271), + [anon_sym_library] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_abi] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_configurable] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_impl] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_pub] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_storage] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_trait] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_COLON_COLON] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_yield] = ACTIONS(1271), + [anon_sym_move] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1269), + [aux_sym_string_literal_token1] = ACTIONS(1269), + [sym_char_literal] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1252), - [sym_metavariable] = ACTIONS(1250), - [sym_raw_string_literal] = ACTIONS(1250), - [sym_float_literal] = ACTIONS(1250), + [sym_self] = ACTIONS(1271), + [sym_metavariable] = ACTIONS(1269), + [sym_raw_string_literal] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1269), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_identifier] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_u8] = ACTIONS(1256), - [anon_sym_i8] = ACTIONS(1256), - [anon_sym_u16] = ACTIONS(1256), - [anon_sym_i16] = ACTIONS(1256), - [anon_sym_u32] = ACTIONS(1256), - [anon_sym_i32] = ACTIONS(1256), - [anon_sym_u64] = ACTIONS(1256), - [anon_sym_i64] = ACTIONS(1256), - [anon_sym_u128] = ACTIONS(1256), - [anon_sym_i128] = ACTIONS(1256), - [anon_sym_isize] = ACTIONS(1256), - [anon_sym_usize] = ACTIONS(1256), - [anon_sym_f32] = ACTIONS(1256), - [anon_sym_f64] = ACTIONS(1256), - [anon_sym_bool] = ACTIONS(1256), - [anon_sym_char] = ACTIONS(1256), - [anon_sym_str] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_contract] = ACTIONS(1256), - [anon_sym_script] = ACTIONS(1256), - [anon_sym_predicate] = ACTIONS(1256), - [anon_sym_library] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_abi] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_configurable] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_dep] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_fn] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_impl] = ACTIONS(1256), - [anon_sym_let] = ACTIONS(1256), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_pub] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_storage] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_trait] = ACTIONS(1256), - [anon_sym_use] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_yield] = ACTIONS(1256), - [anon_sym_move] = ACTIONS(1256), - [sym_integer_literal] = ACTIONS(1254), - [aux_sym_string_literal_token1] = ACTIONS(1254), - [sym_char_literal] = ACTIONS(1254), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_u8] = ACTIONS(1275), + [anon_sym_i8] = ACTIONS(1275), + [anon_sym_u16] = ACTIONS(1275), + [anon_sym_i16] = ACTIONS(1275), + [anon_sym_u32] = ACTIONS(1275), + [anon_sym_i32] = ACTIONS(1275), + [anon_sym_u64] = ACTIONS(1275), + [anon_sym_i64] = ACTIONS(1275), + [anon_sym_u128] = ACTIONS(1275), + [anon_sym_i128] = ACTIONS(1275), + [anon_sym_u256] = ACTIONS(1275), + [anon_sym_i256] = ACTIONS(1275), + [anon_sym_b256] = ACTIONS(1275), + [anon_sym_isize] = ACTIONS(1275), + [anon_sym_usize] = ACTIONS(1275), + [anon_sym_f32] = ACTIONS(1275), + [anon_sym_f64] = ACTIONS(1275), + [anon_sym_bool] = ACTIONS(1275), + [anon_sym_char] = ACTIONS(1275), + [anon_sym_str] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_contract] = ACTIONS(1275), + [anon_sym_script] = ACTIONS(1275), + [anon_sym_predicate] = ACTIONS(1275), + [anon_sym_library] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_abi] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_configurable] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_fn] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_pub] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_storage] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_trait] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [anon_sym_yield] = ACTIONS(1275), + [anon_sym_move] = ACTIONS(1275), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1273), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1256), - [sym_metavariable] = ACTIONS(1254), - [sym_raw_string_literal] = ACTIONS(1254), - [sym_float_literal] = ACTIONS(1254), + [sym_self] = ACTIONS(1275), + [sym_metavariable] = ACTIONS(1273), + [sym_raw_string_literal] = ACTIONS(1273), + [sym_float_literal] = ACTIONS(1273), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_identifier] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_contract] = ACTIONS(1260), - [anon_sym_script] = ACTIONS(1260), - [anon_sym_predicate] = ACTIONS(1260), - [anon_sym_library] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_abi] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_configurable] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_dep] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_fn] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_impl] = ACTIONS(1260), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_match] = ACTIONS(1260), - [anon_sym_pub] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_storage] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_trait] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_POUND] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_COLON_COLON] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_DOT_DOT] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_move] = ACTIONS(1260), - [sym_integer_literal] = ACTIONS(1258), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1258), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_u8] = ACTIONS(1279), + [anon_sym_i8] = ACTIONS(1279), + [anon_sym_u16] = ACTIONS(1279), + [anon_sym_i16] = ACTIONS(1279), + [anon_sym_u32] = ACTIONS(1279), + [anon_sym_i32] = ACTIONS(1279), + [anon_sym_u64] = ACTIONS(1279), + [anon_sym_i64] = ACTIONS(1279), + [anon_sym_u128] = ACTIONS(1279), + [anon_sym_i128] = ACTIONS(1279), + [anon_sym_u256] = ACTIONS(1279), + [anon_sym_i256] = ACTIONS(1279), + [anon_sym_b256] = ACTIONS(1279), + [anon_sym_isize] = ACTIONS(1279), + [anon_sym_usize] = ACTIONS(1279), + [anon_sym_f32] = ACTIONS(1279), + [anon_sym_f64] = ACTIONS(1279), + [anon_sym_bool] = ACTIONS(1279), + [anon_sym_char] = ACTIONS(1279), + [anon_sym_str] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_contract] = ACTIONS(1279), + [anon_sym_script] = ACTIONS(1279), + [anon_sym_predicate] = ACTIONS(1279), + [anon_sym_library] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1279), + [anon_sym_abi] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_configurable] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_fn] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_impl] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_pub] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_storage] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_trait] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_COLON_COLON] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_move] = ACTIONS(1279), + [sym_integer_literal] = ACTIONS(1277), + [aux_sym_string_literal_token1] = ACTIONS(1277), + [sym_char_literal] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1260), - [sym_metavariable] = ACTIONS(1258), - [sym_raw_string_literal] = ACTIONS(1258), - [sym_float_literal] = ACTIONS(1258), + [sym_self] = ACTIONS(1279), + [sym_metavariable] = ACTIONS(1277), + [sym_raw_string_literal] = ACTIONS(1277), + [sym_float_literal] = ACTIONS(1277), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_contract] = ACTIONS(1264), - [anon_sym_script] = ACTIONS(1264), - [anon_sym_predicate] = ACTIONS(1264), - [anon_sym_library] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_abi] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_configurable] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_dep] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_fn] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_impl] = ACTIONS(1264), - [anon_sym_let] = ACTIONS(1264), - [anon_sym_match] = ACTIONS(1264), - [anon_sym_pub] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_storage] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_trait] = ACTIONS(1264), - [anon_sym_use] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_COLON_COLON] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_DOT_DOT] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_yield] = ACTIONS(1264), - [anon_sym_move] = ACTIONS(1264), - [sym_integer_literal] = ACTIONS(1262), - [aux_sym_string_literal_token1] = ACTIONS(1262), - [sym_char_literal] = ACTIONS(1262), - [anon_sym_true] = ACTIONS(1264), - [anon_sym_false] = ACTIONS(1264), + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_u8] = ACTIONS(1283), + [anon_sym_i8] = ACTIONS(1283), + [anon_sym_u16] = ACTIONS(1283), + [anon_sym_i16] = ACTIONS(1283), + [anon_sym_u32] = ACTIONS(1283), + [anon_sym_i32] = ACTIONS(1283), + [anon_sym_u64] = ACTIONS(1283), + [anon_sym_i64] = ACTIONS(1283), + [anon_sym_u128] = ACTIONS(1283), + [anon_sym_i128] = ACTIONS(1283), + [anon_sym_u256] = ACTIONS(1283), + [anon_sym_i256] = ACTIONS(1283), + [anon_sym_b256] = ACTIONS(1283), + [anon_sym_isize] = ACTIONS(1283), + [anon_sym_usize] = ACTIONS(1283), + [anon_sym_f32] = ACTIONS(1283), + [anon_sym_f64] = ACTIONS(1283), + [anon_sym_bool] = ACTIONS(1283), + [anon_sym_char] = ACTIONS(1283), + [anon_sym_str] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_contract] = ACTIONS(1283), + [anon_sym_script] = ACTIONS(1283), + [anon_sym_predicate] = ACTIONS(1283), + [anon_sym_library] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1283), + [anon_sym_abi] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_configurable] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_fn] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_impl] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_pub] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_storage] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_trait] = ACTIONS(1283), + [anon_sym_type] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1281), + [anon_sym_COLON_COLON] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_move] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(1281), + [aux_sym_string_literal_token1] = ACTIONS(1281), + [sym_char_literal] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1264), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1262), - [sym_float_literal] = ACTIONS(1262), + [sym_self] = ACTIONS(1283), + [sym_metavariable] = ACTIONS(1281), + [sym_raw_string_literal] = ACTIONS(1281), + [sym_float_literal] = ACTIONS(1281), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_u8] = ACTIONS(1268), - [anon_sym_i8] = ACTIONS(1268), - [anon_sym_u16] = ACTIONS(1268), - [anon_sym_i16] = ACTIONS(1268), - [anon_sym_u32] = ACTIONS(1268), - [anon_sym_i32] = ACTIONS(1268), - [anon_sym_u64] = ACTIONS(1268), - [anon_sym_i64] = ACTIONS(1268), - [anon_sym_u128] = ACTIONS(1268), - [anon_sym_i128] = ACTIONS(1268), - [anon_sym_isize] = ACTIONS(1268), - [anon_sym_usize] = ACTIONS(1268), - [anon_sym_f32] = ACTIONS(1268), - [anon_sym_f64] = ACTIONS(1268), - [anon_sym_bool] = ACTIONS(1268), - [anon_sym_char] = ACTIONS(1268), - [anon_sym_str] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_contract] = ACTIONS(1268), - [anon_sym_script] = ACTIONS(1268), - [anon_sym_predicate] = ACTIONS(1268), - [anon_sym_library] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_abi] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_configurable] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_dep] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_fn] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_impl] = ACTIONS(1268), - [anon_sym_let] = ACTIONS(1268), - [anon_sym_match] = ACTIONS(1268), - [anon_sym_pub] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_storage] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_trait] = ACTIONS(1268), - [anon_sym_use] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_POUND] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_yield] = ACTIONS(1268), - [anon_sym_move] = ACTIONS(1268), - [sym_integer_literal] = ACTIONS(1266), - [aux_sym_string_literal_token1] = ACTIONS(1266), - [sym_char_literal] = ACTIONS(1266), - [anon_sym_true] = ACTIONS(1268), - [anon_sym_false] = ACTIONS(1268), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_u8] = ACTIONS(1287), + [anon_sym_i8] = ACTIONS(1287), + [anon_sym_u16] = ACTIONS(1287), + [anon_sym_i16] = ACTIONS(1287), + [anon_sym_u32] = ACTIONS(1287), + [anon_sym_i32] = ACTIONS(1287), + [anon_sym_u64] = ACTIONS(1287), + [anon_sym_i64] = ACTIONS(1287), + [anon_sym_u128] = ACTIONS(1287), + [anon_sym_i128] = ACTIONS(1287), + [anon_sym_u256] = ACTIONS(1287), + [anon_sym_i256] = ACTIONS(1287), + [anon_sym_b256] = ACTIONS(1287), + [anon_sym_isize] = ACTIONS(1287), + [anon_sym_usize] = ACTIONS(1287), + [anon_sym_f32] = ACTIONS(1287), + [anon_sym_f64] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_str] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_contract] = ACTIONS(1287), + [anon_sym_script] = ACTIONS(1287), + [anon_sym_predicate] = ACTIONS(1287), + [anon_sym_library] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1287), + [anon_sym_abi] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_configurable] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_impl] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_pub] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_storage] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_trait] = ACTIONS(1287), + [anon_sym_type] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym_LT] = ACTIONS(1285), + [anon_sym_COLON_COLON] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_yield] = ACTIONS(1287), + [anon_sym_move] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1285), + [aux_sym_string_literal_token1] = ACTIONS(1285), + [sym_char_literal] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1268), - [sym_metavariable] = ACTIONS(1266), - [sym_raw_string_literal] = ACTIONS(1266), - [sym_float_literal] = ACTIONS(1266), + [sym_self] = ACTIONS(1287), + [sym_metavariable] = ACTIONS(1285), + [sym_raw_string_literal] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1285), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_u8] = ACTIONS(1272), - [anon_sym_i8] = ACTIONS(1272), - [anon_sym_u16] = ACTIONS(1272), - [anon_sym_i16] = ACTIONS(1272), - [anon_sym_u32] = ACTIONS(1272), - [anon_sym_i32] = ACTIONS(1272), - [anon_sym_u64] = ACTIONS(1272), - [anon_sym_i64] = ACTIONS(1272), - [anon_sym_u128] = ACTIONS(1272), - [anon_sym_i128] = ACTIONS(1272), - [anon_sym_isize] = ACTIONS(1272), - [anon_sym_usize] = ACTIONS(1272), - [anon_sym_f32] = ACTIONS(1272), - [anon_sym_f64] = ACTIONS(1272), - [anon_sym_bool] = ACTIONS(1272), - [anon_sym_char] = ACTIONS(1272), - [anon_sym_str] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1270), - [anon_sym_contract] = ACTIONS(1272), - [anon_sym_script] = ACTIONS(1272), - [anon_sym_predicate] = ACTIONS(1272), - [anon_sym_library] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_abi] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_configurable] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_dep] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_fn] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_impl] = ACTIONS(1272), - [anon_sym_let] = ACTIONS(1272), - [anon_sym_match] = ACTIONS(1272), - [anon_sym_pub] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_storage] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_trait] = ACTIONS(1272), - [anon_sym_use] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_POUND] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_COLON_COLON] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_yield] = ACTIONS(1272), - [anon_sym_move] = ACTIONS(1272), - [sym_integer_literal] = ACTIONS(1270), - [aux_sym_string_literal_token1] = ACTIONS(1270), - [sym_char_literal] = ACTIONS(1270), - [anon_sym_true] = ACTIONS(1272), - [anon_sym_false] = ACTIONS(1272), + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_u8] = ACTIONS(1291), + [anon_sym_i8] = ACTIONS(1291), + [anon_sym_u16] = ACTIONS(1291), + [anon_sym_i16] = ACTIONS(1291), + [anon_sym_u32] = ACTIONS(1291), + [anon_sym_i32] = ACTIONS(1291), + [anon_sym_u64] = ACTIONS(1291), + [anon_sym_i64] = ACTIONS(1291), + [anon_sym_u128] = ACTIONS(1291), + [anon_sym_i128] = ACTIONS(1291), + [anon_sym_u256] = ACTIONS(1291), + [anon_sym_i256] = ACTIONS(1291), + [anon_sym_b256] = ACTIONS(1291), + [anon_sym_isize] = ACTIONS(1291), + [anon_sym_usize] = ACTIONS(1291), + [anon_sym_f32] = ACTIONS(1291), + [anon_sym_f64] = ACTIONS(1291), + [anon_sym_bool] = ACTIONS(1291), + [anon_sym_char] = ACTIONS(1291), + [anon_sym_str] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_contract] = ACTIONS(1291), + [anon_sym_script] = ACTIONS(1291), + [anon_sym_predicate] = ACTIONS(1291), + [anon_sym_library] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_abi] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_configurable] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_mod] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_fn] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_impl] = ACTIONS(1291), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_pub] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_storage] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1289), + [anon_sym_COLON_COLON] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_yield] = ACTIONS(1291), + [anon_sym_move] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(1289), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1289), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1272), - [sym_metavariable] = ACTIONS(1270), - [sym_raw_string_literal] = ACTIONS(1270), - [sym_float_literal] = ACTIONS(1270), + [sym_self] = ACTIONS(1291), + [sym_metavariable] = ACTIONS(1289), + [sym_raw_string_literal] = ACTIONS(1289), + [sym_float_literal] = ACTIONS(1289), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_u8] = ACTIONS(1276), - [anon_sym_i8] = ACTIONS(1276), - [anon_sym_u16] = ACTIONS(1276), - [anon_sym_i16] = ACTIONS(1276), - [anon_sym_u32] = ACTIONS(1276), - [anon_sym_i32] = ACTIONS(1276), - [anon_sym_u64] = ACTIONS(1276), - [anon_sym_i64] = ACTIONS(1276), - [anon_sym_u128] = ACTIONS(1276), - [anon_sym_i128] = ACTIONS(1276), - [anon_sym_isize] = ACTIONS(1276), - [anon_sym_usize] = ACTIONS(1276), - [anon_sym_f32] = ACTIONS(1276), - [anon_sym_f64] = ACTIONS(1276), - [anon_sym_bool] = ACTIONS(1276), - [anon_sym_char] = ACTIONS(1276), - [anon_sym_str] = ACTIONS(1276), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_contract] = ACTIONS(1276), - [anon_sym_script] = ACTIONS(1276), - [anon_sym_predicate] = ACTIONS(1276), - [anon_sym_library] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_abi] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_configurable] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_dep] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_fn] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_impl] = ACTIONS(1276), - [anon_sym_let] = ACTIONS(1276), - [anon_sym_match] = ACTIONS(1276), - [anon_sym_pub] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_storage] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_trait] = ACTIONS(1276), - [anon_sym_use] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(1276), - [anon_sym_move] = ACTIONS(1276), - [sym_integer_literal] = ACTIONS(1274), - [aux_sym_string_literal_token1] = ACTIONS(1274), - [sym_char_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_u256] = ACTIONS(1295), + [anon_sym_i256] = ACTIONS(1295), + [anon_sym_b256] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_contract] = ACTIONS(1295), + [anon_sym_script] = ACTIONS(1295), + [anon_sym_predicate] = ACTIONS(1295), + [anon_sym_library] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_abi] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_configurable] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_mod] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_impl] = ACTIONS(1295), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_match] = ACTIONS(1295), + [anon_sym_pub] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_storage] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_trait] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_use] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1293), + [anon_sym_COLON_COLON] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(1293), + [anon_sym_yield] = ACTIONS(1295), + [anon_sym_move] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [aux_sym_string_literal_token1] = ACTIONS(1293), + [sym_char_literal] = ACTIONS(1293), + [anon_sym_true] = ACTIONS(1295), + [anon_sym_false] = ACTIONS(1295), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1276), - [sym_metavariable] = ACTIONS(1274), - [sym_raw_string_literal] = ACTIONS(1274), - [sym_float_literal] = ACTIONS(1274), + [sym_self] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1293), + [sym_raw_string_literal] = ACTIONS(1293), + [sym_float_literal] = ACTIONS(1293), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1280), - [anon_sym_i8] = ACTIONS(1280), - [anon_sym_u16] = ACTIONS(1280), - [anon_sym_i16] = ACTIONS(1280), - [anon_sym_u32] = ACTIONS(1280), - [anon_sym_i32] = ACTIONS(1280), - [anon_sym_u64] = ACTIONS(1280), - [anon_sym_i64] = ACTIONS(1280), - [anon_sym_u128] = ACTIONS(1280), - [anon_sym_i128] = ACTIONS(1280), - [anon_sym_isize] = ACTIONS(1280), - [anon_sym_usize] = ACTIONS(1280), - [anon_sym_f32] = ACTIONS(1280), - [anon_sym_f64] = ACTIONS(1280), - [anon_sym_bool] = ACTIONS(1280), - [anon_sym_char] = ACTIONS(1280), - [anon_sym_str] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_contract] = ACTIONS(1280), - [anon_sym_script] = ACTIONS(1280), - [anon_sym_predicate] = ACTIONS(1280), - [anon_sym_library] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_abi] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_configurable] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_dep] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_fn] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_impl] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_pub] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_storage] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_trait] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1280), - [anon_sym_move] = ACTIONS(1280), - [sym_integer_literal] = ACTIONS(1278), - [aux_sym_string_literal_token1] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_u256] = ACTIONS(1299), + [anon_sym_i256] = ACTIONS(1299), + [anon_sym_b256] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_contract] = ACTIONS(1299), + [anon_sym_script] = ACTIONS(1299), + [anon_sym_predicate] = ACTIONS(1299), + [anon_sym_library] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_abi] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_configurable] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_mod] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1299), + [anon_sym_let] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_pub] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_storage] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_trait] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_use] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1297), + [anon_sym_yield] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [sym_integer_literal] = ACTIONS(1297), + [aux_sym_string_literal_token1] = ACTIONS(1297), + [sym_char_literal] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1280), - [sym_metavariable] = ACTIONS(1278), - [sym_raw_string_literal] = ACTIONS(1278), - [sym_float_literal] = ACTIONS(1278), + [sym_self] = ACTIONS(1299), + [sym_metavariable] = ACTIONS(1297), + [sym_raw_string_literal] = ACTIONS(1297), + [sym_float_literal] = ACTIONS(1297), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_u8] = ACTIONS(1284), - [anon_sym_i8] = ACTIONS(1284), - [anon_sym_u16] = ACTIONS(1284), - [anon_sym_i16] = ACTIONS(1284), - [anon_sym_u32] = ACTIONS(1284), - [anon_sym_i32] = ACTIONS(1284), - [anon_sym_u64] = ACTIONS(1284), - [anon_sym_i64] = ACTIONS(1284), - [anon_sym_u128] = ACTIONS(1284), - [anon_sym_i128] = ACTIONS(1284), - [anon_sym_isize] = ACTIONS(1284), - [anon_sym_usize] = ACTIONS(1284), - [anon_sym_f32] = ACTIONS(1284), - [anon_sym_f64] = ACTIONS(1284), - [anon_sym_bool] = ACTIONS(1284), - [anon_sym_char] = ACTIONS(1284), - [anon_sym_str] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_contract] = ACTIONS(1284), - [anon_sym_script] = ACTIONS(1284), - [anon_sym_predicate] = ACTIONS(1284), - [anon_sym_library] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_abi] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_configurable] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_dep] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_fn] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_impl] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_pub] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_storage] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_trait] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_move] = ACTIONS(1284), - [sym_integer_literal] = ACTIONS(1282), - [aux_sym_string_literal_token1] = ACTIONS(1282), - [sym_char_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_u8] = ACTIONS(1303), + [anon_sym_i8] = ACTIONS(1303), + [anon_sym_u16] = ACTIONS(1303), + [anon_sym_i16] = ACTIONS(1303), + [anon_sym_u32] = ACTIONS(1303), + [anon_sym_i32] = ACTIONS(1303), + [anon_sym_u64] = ACTIONS(1303), + [anon_sym_i64] = ACTIONS(1303), + [anon_sym_u128] = ACTIONS(1303), + [anon_sym_i128] = ACTIONS(1303), + [anon_sym_u256] = ACTIONS(1303), + [anon_sym_i256] = ACTIONS(1303), + [anon_sym_b256] = ACTIONS(1303), + [anon_sym_isize] = ACTIONS(1303), + [anon_sym_usize] = ACTIONS(1303), + [anon_sym_f32] = ACTIONS(1303), + [anon_sym_f64] = ACTIONS(1303), + [anon_sym_bool] = ACTIONS(1303), + [anon_sym_char] = ACTIONS(1303), + [anon_sym_str] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_contract] = ACTIONS(1303), + [anon_sym_script] = ACTIONS(1303), + [anon_sym_predicate] = ACTIONS(1303), + [anon_sym_library] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_abi] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_configurable] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_pub] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_storage] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(1301), + [anon_sym_COLON_COLON] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [sym_integer_literal] = ACTIONS(1301), + [aux_sym_string_literal_token1] = ACTIONS(1301), + [sym_char_literal] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1284), - [sym_metavariable] = ACTIONS(1282), - [sym_raw_string_literal] = ACTIONS(1282), - [sym_float_literal] = ACTIONS(1282), + [sym_self] = ACTIONS(1303), + [sym_metavariable] = ACTIONS(1301), + [sym_raw_string_literal] = ACTIONS(1301), + [sym_float_literal] = ACTIONS(1301), [sym_block_comment] = ACTIONS(3), }, [333] = { - [sym_primitive_type] = STATE(1036), - [sym_attribute_item] = STATE(417), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_match_arm] = STATE(416), - [sym_last_match_arm] = STATE(2033), - [sym_match_pattern] = STATE(2074), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1764), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_enum_variant_list_repeat1] = STATE(417), - [aux_sym_match_block_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [ts_builtin_sym_end] = ACTIONS(1305), + [sym_identifier] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_u8] = ACTIONS(1307), + [anon_sym_i8] = ACTIONS(1307), + [anon_sym_u16] = ACTIONS(1307), + [anon_sym_i16] = ACTIONS(1307), + [anon_sym_u32] = ACTIONS(1307), + [anon_sym_i32] = ACTIONS(1307), + [anon_sym_u64] = ACTIONS(1307), + [anon_sym_i64] = ACTIONS(1307), + [anon_sym_u128] = ACTIONS(1307), + [anon_sym_i128] = ACTIONS(1307), + [anon_sym_u256] = ACTIONS(1307), + [anon_sym_i256] = ACTIONS(1307), + [anon_sym_b256] = ACTIONS(1307), + [anon_sym_isize] = ACTIONS(1307), + [anon_sym_usize] = ACTIONS(1307), + [anon_sym_f32] = ACTIONS(1307), + [anon_sym_f64] = ACTIONS(1307), + [anon_sym_bool] = ACTIONS(1307), + [anon_sym_char] = ACTIONS(1307), + [anon_sym_str] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_contract] = ACTIONS(1307), + [anon_sym_script] = ACTIONS(1307), + [anon_sym_predicate] = ACTIONS(1307), + [anon_sym_library] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_abi] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_configurable] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_pub] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_storage] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_trait] = ACTIONS(1307), + [anon_sym_type] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_yield] = ACTIONS(1307), + [anon_sym_move] = ACTIONS(1307), + [sym_integer_literal] = ACTIONS(1305), + [aux_sym_string_literal_token1] = ACTIONS(1305), + [sym_char_literal] = ACTIONS(1305), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1307), + [sym_metavariable] = ACTIONS(1305), + [sym_raw_string_literal] = ACTIONS(1305), + [sym_float_literal] = ACTIONS(1305), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_u8] = ACTIONS(1288), - [anon_sym_i8] = ACTIONS(1288), - [anon_sym_u16] = ACTIONS(1288), - [anon_sym_i16] = ACTIONS(1288), - [anon_sym_u32] = ACTIONS(1288), - [anon_sym_i32] = ACTIONS(1288), - [anon_sym_u64] = ACTIONS(1288), - [anon_sym_i64] = ACTIONS(1288), - [anon_sym_u128] = ACTIONS(1288), - [anon_sym_i128] = ACTIONS(1288), - [anon_sym_isize] = ACTIONS(1288), - [anon_sym_usize] = ACTIONS(1288), - [anon_sym_f32] = ACTIONS(1288), - [anon_sym_f64] = ACTIONS(1288), - [anon_sym_bool] = ACTIONS(1288), - [anon_sym_char] = ACTIONS(1288), - [anon_sym_str] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_contract] = ACTIONS(1288), - [anon_sym_script] = ACTIONS(1288), - [anon_sym_predicate] = ACTIONS(1288), - [anon_sym_library] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_abi] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_configurable] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_dep] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_impl] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_pub] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_storage] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_trait] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_COLON_COLON] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1288), - [anon_sym_move] = ACTIONS(1288), - [sym_integer_literal] = ACTIONS(1286), - [aux_sym_string_literal_token1] = ACTIONS(1286), - [sym_char_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_u8] = ACTIONS(1311), + [anon_sym_i8] = ACTIONS(1311), + [anon_sym_u16] = ACTIONS(1311), + [anon_sym_i16] = ACTIONS(1311), + [anon_sym_u32] = ACTIONS(1311), + [anon_sym_i32] = ACTIONS(1311), + [anon_sym_u64] = ACTIONS(1311), + [anon_sym_i64] = ACTIONS(1311), + [anon_sym_u128] = ACTIONS(1311), + [anon_sym_i128] = ACTIONS(1311), + [anon_sym_u256] = ACTIONS(1311), + [anon_sym_i256] = ACTIONS(1311), + [anon_sym_b256] = ACTIONS(1311), + [anon_sym_isize] = ACTIONS(1311), + [anon_sym_usize] = ACTIONS(1311), + [anon_sym_f32] = ACTIONS(1311), + [anon_sym_f64] = ACTIONS(1311), + [anon_sym_bool] = ACTIONS(1311), + [anon_sym_char] = ACTIONS(1311), + [anon_sym_str] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_contract] = ACTIONS(1311), + [anon_sym_script] = ACTIONS(1311), + [anon_sym_predicate] = ACTIONS(1311), + [anon_sym_library] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_abi] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_configurable] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_mod] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_fn] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1311), + [anon_sym_let] = ACTIONS(1311), + [anon_sym_match] = ACTIONS(1311), + [anon_sym_pub] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_storage] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_trait] = ACTIONS(1311), + [anon_sym_type] = ACTIONS(1311), + [anon_sym_use] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_yield] = ACTIONS(1311), + [anon_sym_move] = ACTIONS(1311), + [sym_integer_literal] = ACTIONS(1309), + [aux_sym_string_literal_token1] = ACTIONS(1309), + [sym_char_literal] = ACTIONS(1309), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1288), - [sym_metavariable] = ACTIONS(1286), - [sym_raw_string_literal] = ACTIONS(1286), - [sym_float_literal] = ACTIONS(1286), + [sym_self] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1309), + [sym_raw_string_literal] = ACTIONS(1309), + [sym_float_literal] = ACTIONS(1309), [sym_block_comment] = ACTIONS(3), }, [335] = { - [sym_primitive_type] = STATE(1036), - [sym_attribute_item] = STATE(417), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_match_arm] = STATE(416), - [sym_last_match_arm] = STATE(2002), - [sym_match_pattern] = STATE(2074), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1764), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_enum_variant_list_repeat1] = STATE(417), - [aux_sym_match_block_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_u8] = ACTIONS(1315), + [anon_sym_i8] = ACTIONS(1315), + [anon_sym_u16] = ACTIONS(1315), + [anon_sym_i16] = ACTIONS(1315), + [anon_sym_u32] = ACTIONS(1315), + [anon_sym_i32] = ACTIONS(1315), + [anon_sym_u64] = ACTIONS(1315), + [anon_sym_i64] = ACTIONS(1315), + [anon_sym_u128] = ACTIONS(1315), + [anon_sym_i128] = ACTIONS(1315), + [anon_sym_u256] = ACTIONS(1315), + [anon_sym_i256] = ACTIONS(1315), + [anon_sym_b256] = ACTIONS(1315), + [anon_sym_isize] = ACTIONS(1315), + [anon_sym_usize] = ACTIONS(1315), + [anon_sym_f32] = ACTIONS(1315), + [anon_sym_f64] = ACTIONS(1315), + [anon_sym_bool] = ACTIONS(1315), + [anon_sym_char] = ACTIONS(1315), + [anon_sym_str] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_contract] = ACTIONS(1315), + [anon_sym_script] = ACTIONS(1315), + [anon_sym_predicate] = ACTIONS(1315), + [anon_sym_library] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_abi] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_configurable] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_mod] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_fn] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_impl] = ACTIONS(1315), + [anon_sym_let] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_pub] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_storage] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_trait] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_use] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_yield] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1313), + [aux_sym_string_literal_token1] = ACTIONS(1313), + [sym_char_literal] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1313), + [sym_raw_string_literal] = ACTIONS(1313), + [sym_float_literal] = ACTIONS(1313), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_u8] = ACTIONS(1292), - [anon_sym_i8] = ACTIONS(1292), - [anon_sym_u16] = ACTIONS(1292), - [anon_sym_i16] = ACTIONS(1292), - [anon_sym_u32] = ACTIONS(1292), - [anon_sym_i32] = ACTIONS(1292), - [anon_sym_u64] = ACTIONS(1292), - [anon_sym_i64] = ACTIONS(1292), - [anon_sym_u128] = ACTIONS(1292), - [anon_sym_i128] = ACTIONS(1292), - [anon_sym_isize] = ACTIONS(1292), - [anon_sym_usize] = ACTIONS(1292), - [anon_sym_f32] = ACTIONS(1292), - [anon_sym_f64] = ACTIONS(1292), - [anon_sym_bool] = ACTIONS(1292), - [anon_sym_char] = ACTIONS(1292), - [anon_sym_str] = ACTIONS(1292), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_contract] = ACTIONS(1292), - [anon_sym_script] = ACTIONS(1292), - [anon_sym_predicate] = ACTIONS(1292), - [anon_sym_library] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_abi] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_configurable] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_dep] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1292), - [anon_sym_let] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1292), - [anon_sym_pub] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_storage] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_trait] = ACTIONS(1292), - [anon_sym_use] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_COLON_COLON] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1292), - [anon_sym_move] = ACTIONS(1292), - [sym_integer_literal] = ACTIONS(1290), - [aux_sym_string_literal_token1] = ACTIONS(1290), - [sym_char_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1292), - [anon_sym_false] = ACTIONS(1292), + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_u8] = ACTIONS(1319), + [anon_sym_i8] = ACTIONS(1319), + [anon_sym_u16] = ACTIONS(1319), + [anon_sym_i16] = ACTIONS(1319), + [anon_sym_u32] = ACTIONS(1319), + [anon_sym_i32] = ACTIONS(1319), + [anon_sym_u64] = ACTIONS(1319), + [anon_sym_i64] = ACTIONS(1319), + [anon_sym_u128] = ACTIONS(1319), + [anon_sym_i128] = ACTIONS(1319), + [anon_sym_u256] = ACTIONS(1319), + [anon_sym_i256] = ACTIONS(1319), + [anon_sym_b256] = ACTIONS(1319), + [anon_sym_isize] = ACTIONS(1319), + [anon_sym_usize] = ACTIONS(1319), + [anon_sym_f32] = ACTIONS(1319), + [anon_sym_f64] = ACTIONS(1319), + [anon_sym_bool] = ACTIONS(1319), + [anon_sym_char] = ACTIONS(1319), + [anon_sym_str] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_contract] = ACTIONS(1319), + [anon_sym_script] = ACTIONS(1319), + [anon_sym_predicate] = ACTIONS(1319), + [anon_sym_library] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_abi] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_configurable] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_impl] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_pub] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_storage] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_trait] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym_LT] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PIPE] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(1319), + [anon_sym_move] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1292), - [sym_metavariable] = ACTIONS(1290), - [sym_raw_string_literal] = ACTIONS(1290), - [sym_float_literal] = ACTIONS(1290), + [sym_self] = ACTIONS(1319), + [sym_metavariable] = ACTIONS(1317), + [sym_raw_string_literal] = ACTIONS(1317), + [sym_float_literal] = ACTIONS(1317), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_u8] = ACTIONS(1296), - [anon_sym_i8] = ACTIONS(1296), - [anon_sym_u16] = ACTIONS(1296), - [anon_sym_i16] = ACTIONS(1296), - [anon_sym_u32] = ACTIONS(1296), - [anon_sym_i32] = ACTIONS(1296), - [anon_sym_u64] = ACTIONS(1296), - [anon_sym_i64] = ACTIONS(1296), - [anon_sym_u128] = ACTIONS(1296), - [anon_sym_i128] = ACTIONS(1296), - [anon_sym_isize] = ACTIONS(1296), - [anon_sym_usize] = ACTIONS(1296), - [anon_sym_f32] = ACTIONS(1296), - [anon_sym_f64] = ACTIONS(1296), - [anon_sym_bool] = ACTIONS(1296), - [anon_sym_char] = ACTIONS(1296), - [anon_sym_str] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_contract] = ACTIONS(1296), - [anon_sym_script] = ACTIONS(1296), - [anon_sym_predicate] = ACTIONS(1296), - [anon_sym_library] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_abi] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_configurable] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_dep] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_fn] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_pub] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_storage] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_trait] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_COLON_COLON] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_move] = ACTIONS(1296), - [sym_integer_literal] = ACTIONS(1294), - [aux_sym_string_literal_token1] = ACTIONS(1294), - [sym_char_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1323), + [anon_sym_i8] = ACTIONS(1323), + [anon_sym_u16] = ACTIONS(1323), + [anon_sym_i16] = ACTIONS(1323), + [anon_sym_u32] = ACTIONS(1323), + [anon_sym_i32] = ACTIONS(1323), + [anon_sym_u64] = ACTIONS(1323), + [anon_sym_i64] = ACTIONS(1323), + [anon_sym_u128] = ACTIONS(1323), + [anon_sym_i128] = ACTIONS(1323), + [anon_sym_u256] = ACTIONS(1323), + [anon_sym_i256] = ACTIONS(1323), + [anon_sym_b256] = ACTIONS(1323), + [anon_sym_isize] = ACTIONS(1323), + [anon_sym_usize] = ACTIONS(1323), + [anon_sym_f32] = ACTIONS(1323), + [anon_sym_f64] = ACTIONS(1323), + [anon_sym_bool] = ACTIONS(1323), + [anon_sym_char] = ACTIONS(1323), + [anon_sym_str] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_contract] = ACTIONS(1323), + [anon_sym_script] = ACTIONS(1323), + [anon_sym_predicate] = ACTIONS(1323), + [anon_sym_library] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_abi] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_configurable] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_mod] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_fn] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_impl] = ACTIONS(1323), + [anon_sym_let] = ACTIONS(1323), + [anon_sym_match] = ACTIONS(1323), + [anon_sym_pub] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_storage] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_trait] = ACTIONS(1323), + [anon_sym_type] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(1321), + [anon_sym_COLON_COLON] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1321), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_move] = ACTIONS(1323), + [sym_integer_literal] = ACTIONS(1321), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1321), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1296), - [sym_metavariable] = ACTIONS(1294), - [sym_raw_string_literal] = ACTIONS(1294), - [sym_float_literal] = ACTIONS(1294), + [sym_self] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1321), + [sym_raw_string_literal] = ACTIONS(1321), + [sym_float_literal] = ACTIONS(1321), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_u8] = ACTIONS(1300), - [anon_sym_i8] = ACTIONS(1300), - [anon_sym_u16] = ACTIONS(1300), - [anon_sym_i16] = ACTIONS(1300), - [anon_sym_u32] = ACTIONS(1300), - [anon_sym_i32] = ACTIONS(1300), - [anon_sym_u64] = ACTIONS(1300), - [anon_sym_i64] = ACTIONS(1300), - [anon_sym_u128] = ACTIONS(1300), - [anon_sym_i128] = ACTIONS(1300), - [anon_sym_isize] = ACTIONS(1300), - [anon_sym_usize] = ACTIONS(1300), - [anon_sym_f32] = ACTIONS(1300), - [anon_sym_f64] = ACTIONS(1300), - [anon_sym_bool] = ACTIONS(1300), - [anon_sym_char] = ACTIONS(1300), - [anon_sym_str] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_contract] = ACTIONS(1300), - [anon_sym_script] = ACTIONS(1300), - [anon_sym_predicate] = ACTIONS(1300), - [anon_sym_library] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_abi] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_configurable] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_dep] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_fn] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_impl] = ACTIONS(1300), - [anon_sym_let] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_pub] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_storage] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_COLON_COLON] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1300), - [sym_integer_literal] = ACTIONS(1298), - [aux_sym_string_literal_token1] = ACTIONS(1298), - [sym_char_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_u8] = ACTIONS(1327), + [anon_sym_i8] = ACTIONS(1327), + [anon_sym_u16] = ACTIONS(1327), + [anon_sym_i16] = ACTIONS(1327), + [anon_sym_u32] = ACTIONS(1327), + [anon_sym_i32] = ACTIONS(1327), + [anon_sym_u64] = ACTIONS(1327), + [anon_sym_i64] = ACTIONS(1327), + [anon_sym_u128] = ACTIONS(1327), + [anon_sym_i128] = ACTIONS(1327), + [anon_sym_u256] = ACTIONS(1327), + [anon_sym_i256] = ACTIONS(1327), + [anon_sym_b256] = ACTIONS(1327), + [anon_sym_isize] = ACTIONS(1327), + [anon_sym_usize] = ACTIONS(1327), + [anon_sym_f32] = ACTIONS(1327), + [anon_sym_f64] = ACTIONS(1327), + [anon_sym_bool] = ACTIONS(1327), + [anon_sym_char] = ACTIONS(1327), + [anon_sym_str] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_contract] = ACTIONS(1327), + [anon_sym_script] = ACTIONS(1327), + [anon_sym_predicate] = ACTIONS(1327), + [anon_sym_library] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_abi] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_configurable] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_mod] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_impl] = ACTIONS(1327), + [anon_sym_let] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_pub] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_storage] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_trait] = ACTIONS(1327), + [anon_sym_type] = ACTIONS(1327), + [anon_sym_use] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1325), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_move] = ACTIONS(1327), + [sym_integer_literal] = ACTIONS(1325), + [aux_sym_string_literal_token1] = ACTIONS(1325), + [sym_char_literal] = ACTIONS(1325), + [anon_sym_true] = ACTIONS(1327), + [anon_sym_false] = ACTIONS(1327), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1300), - [sym_metavariable] = ACTIONS(1298), - [sym_raw_string_literal] = ACTIONS(1298), - [sym_float_literal] = ACTIONS(1298), + [sym_self] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1325), + [sym_raw_string_literal] = ACTIONS(1325), + [sym_float_literal] = ACTIONS(1325), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_u8] = ACTIONS(1304), - [anon_sym_i8] = ACTIONS(1304), - [anon_sym_u16] = ACTIONS(1304), - [anon_sym_i16] = ACTIONS(1304), - [anon_sym_u32] = ACTIONS(1304), - [anon_sym_i32] = ACTIONS(1304), - [anon_sym_u64] = ACTIONS(1304), - [anon_sym_i64] = ACTIONS(1304), - [anon_sym_u128] = ACTIONS(1304), - [anon_sym_i128] = ACTIONS(1304), - [anon_sym_isize] = ACTIONS(1304), - [anon_sym_usize] = ACTIONS(1304), - [anon_sym_f32] = ACTIONS(1304), - [anon_sym_f64] = ACTIONS(1304), - [anon_sym_bool] = ACTIONS(1304), - [anon_sym_char] = ACTIONS(1304), - [anon_sym_str] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_contract] = ACTIONS(1304), - [anon_sym_script] = ACTIONS(1304), - [anon_sym_predicate] = ACTIONS(1304), - [anon_sym_library] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_abi] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_configurable] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_dep] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_fn] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_impl] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_pub] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_storage] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_trait] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_COLON_COLON] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1304), - [anon_sym_move] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1302), - [aux_sym_string_literal_token1] = ACTIONS(1302), - [sym_char_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1331), + [anon_sym_i8] = ACTIONS(1331), + [anon_sym_u16] = ACTIONS(1331), + [anon_sym_i16] = ACTIONS(1331), + [anon_sym_u32] = ACTIONS(1331), + [anon_sym_i32] = ACTIONS(1331), + [anon_sym_u64] = ACTIONS(1331), + [anon_sym_i64] = ACTIONS(1331), + [anon_sym_u128] = ACTIONS(1331), + [anon_sym_i128] = ACTIONS(1331), + [anon_sym_u256] = ACTIONS(1331), + [anon_sym_i256] = ACTIONS(1331), + [anon_sym_b256] = ACTIONS(1331), + [anon_sym_isize] = ACTIONS(1331), + [anon_sym_usize] = ACTIONS(1331), + [anon_sym_f32] = ACTIONS(1331), + [anon_sym_f64] = ACTIONS(1331), + [anon_sym_bool] = ACTIONS(1331), + [anon_sym_char] = ACTIONS(1331), + [anon_sym_str] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_contract] = ACTIONS(1331), + [anon_sym_script] = ACTIONS(1331), + [anon_sym_predicate] = ACTIONS(1331), + [anon_sym_library] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_abi] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_configurable] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_mod] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_fn] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_impl] = ACTIONS(1331), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_pub] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_storage] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_trait] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_use] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_POUND] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1331), + [anon_sym_move] = ACTIONS(1331), + [sym_integer_literal] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [sym_char_literal] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1304), - [sym_metavariable] = ACTIONS(1302), - [sym_raw_string_literal] = ACTIONS(1302), - [sym_float_literal] = ACTIONS(1302), + [sym_self] = ACTIONS(1331), + [sym_metavariable] = ACTIONS(1329), + [sym_raw_string_literal] = ACTIONS(1329), + [sym_float_literal] = ACTIONS(1329), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_u8] = ACTIONS(1308), - [anon_sym_i8] = ACTIONS(1308), - [anon_sym_u16] = ACTIONS(1308), - [anon_sym_i16] = ACTIONS(1308), - [anon_sym_u32] = ACTIONS(1308), - [anon_sym_i32] = ACTIONS(1308), - [anon_sym_u64] = ACTIONS(1308), - [anon_sym_i64] = ACTIONS(1308), - [anon_sym_u128] = ACTIONS(1308), - [anon_sym_i128] = ACTIONS(1308), - [anon_sym_isize] = ACTIONS(1308), - [anon_sym_usize] = ACTIONS(1308), - [anon_sym_f32] = ACTIONS(1308), - [anon_sym_f64] = ACTIONS(1308), - [anon_sym_bool] = ACTIONS(1308), - [anon_sym_char] = ACTIONS(1308), - [anon_sym_str] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_contract] = ACTIONS(1308), - [anon_sym_script] = ACTIONS(1308), - [anon_sym_predicate] = ACTIONS(1308), - [anon_sym_library] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_abi] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_configurable] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_dep] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_impl] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_pub] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_storage] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_trait] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_COLON_COLON] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1308), - [anon_sym_move] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1306), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_u256] = ACTIONS(1335), + [anon_sym_i256] = ACTIONS(1335), + [anon_sym_b256] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_contract] = ACTIONS(1335), + [anon_sym_script] = ACTIONS(1335), + [anon_sym_predicate] = ACTIONS(1335), + [anon_sym_library] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_abi] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_configurable] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_mod] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_let] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_storage] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_trait] = ACTIONS(1335), + [anon_sym_type] = ACTIONS(1335), + [anon_sym_use] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1335), + [anon_sym_move] = ACTIONS(1335), + [sym_integer_literal] = ACTIONS(1333), + [aux_sym_string_literal_token1] = ACTIONS(1333), + [sym_char_literal] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1308), - [sym_metavariable] = ACTIONS(1306), - [sym_raw_string_literal] = ACTIONS(1306), - [sym_float_literal] = ACTIONS(1306), + [sym_self] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym_raw_string_literal] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_u8] = ACTIONS(1312), - [anon_sym_i8] = ACTIONS(1312), - [anon_sym_u16] = ACTIONS(1312), - [anon_sym_i16] = ACTIONS(1312), - [anon_sym_u32] = ACTIONS(1312), - [anon_sym_i32] = ACTIONS(1312), - [anon_sym_u64] = ACTIONS(1312), - [anon_sym_i64] = ACTIONS(1312), - [anon_sym_u128] = ACTIONS(1312), - [anon_sym_i128] = ACTIONS(1312), - [anon_sym_isize] = ACTIONS(1312), - [anon_sym_usize] = ACTIONS(1312), - [anon_sym_f32] = ACTIONS(1312), - [anon_sym_f64] = ACTIONS(1312), - [anon_sym_bool] = ACTIONS(1312), - [anon_sym_char] = ACTIONS(1312), - [anon_sym_str] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_contract] = ACTIONS(1312), - [anon_sym_script] = ACTIONS(1312), - [anon_sym_predicate] = ACTIONS(1312), - [anon_sym_library] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_abi] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_configurable] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_dep] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_storage] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_COLON_COLON] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_move] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_u8] = ACTIONS(1339), + [anon_sym_i8] = ACTIONS(1339), + [anon_sym_u16] = ACTIONS(1339), + [anon_sym_i16] = ACTIONS(1339), + [anon_sym_u32] = ACTIONS(1339), + [anon_sym_i32] = ACTIONS(1339), + [anon_sym_u64] = ACTIONS(1339), + [anon_sym_i64] = ACTIONS(1339), + [anon_sym_u128] = ACTIONS(1339), + [anon_sym_i128] = ACTIONS(1339), + [anon_sym_u256] = ACTIONS(1339), + [anon_sym_i256] = ACTIONS(1339), + [anon_sym_b256] = ACTIONS(1339), + [anon_sym_isize] = ACTIONS(1339), + [anon_sym_usize] = ACTIONS(1339), + [anon_sym_f32] = ACTIONS(1339), + [anon_sym_f64] = ACTIONS(1339), + [anon_sym_bool] = ACTIONS(1339), + [anon_sym_char] = ACTIONS(1339), + [anon_sym_str] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_contract] = ACTIONS(1339), + [anon_sym_script] = ACTIONS(1339), + [anon_sym_predicate] = ACTIONS(1339), + [anon_sym_library] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_abi] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_configurable] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_mod] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1339), + [anon_sym_let] = ACTIONS(1339), + [anon_sym_match] = ACTIONS(1339), + [anon_sym_pub] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_storage] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_trait] = ACTIONS(1339), + [anon_sym_type] = ACTIONS(1339), + [anon_sym_use] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_POUND] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1337), + [anon_sym_yield] = ACTIONS(1339), + [anon_sym_move] = ACTIONS(1339), + [sym_integer_literal] = ACTIONS(1337), + [aux_sym_string_literal_token1] = ACTIONS(1337), + [sym_char_literal] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1339), + [anon_sym_false] = ACTIONS(1339), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1310), - [sym_raw_string_literal] = ACTIONS(1310), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1339), + [sym_metavariable] = ACTIONS(1337), + [sym_raw_string_literal] = ACTIONS(1337), + [sym_float_literal] = ACTIONS(1337), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_u8] = ACTIONS(1316), - [anon_sym_i8] = ACTIONS(1316), - [anon_sym_u16] = ACTIONS(1316), - [anon_sym_i16] = ACTIONS(1316), - [anon_sym_u32] = ACTIONS(1316), - [anon_sym_i32] = ACTIONS(1316), - [anon_sym_u64] = ACTIONS(1316), - [anon_sym_i64] = ACTIONS(1316), - [anon_sym_u128] = ACTIONS(1316), - [anon_sym_i128] = ACTIONS(1316), - [anon_sym_isize] = ACTIONS(1316), - [anon_sym_usize] = ACTIONS(1316), - [anon_sym_f32] = ACTIONS(1316), - [anon_sym_f64] = ACTIONS(1316), - [anon_sym_bool] = ACTIONS(1316), - [anon_sym_char] = ACTIONS(1316), - [anon_sym_str] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_contract] = ACTIONS(1316), - [anon_sym_script] = ACTIONS(1316), - [anon_sym_predicate] = ACTIONS(1316), - [anon_sym_library] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_abi] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_configurable] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_dep] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_impl] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_pub] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_storage] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_trait] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_COLON_COLON] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1314), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_u256] = ACTIONS(1343), + [anon_sym_i256] = ACTIONS(1343), + [anon_sym_b256] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_contract] = ACTIONS(1343), + [anon_sym_script] = ACTIONS(1343), + [anon_sym_predicate] = ACTIONS(1343), + [anon_sym_library] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_abi] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_configurable] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_mod] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_impl] = ACTIONS(1343), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_match] = ACTIONS(1343), + [anon_sym_pub] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_storage] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_trait] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_use] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_yield] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1341), + [sym_char_literal] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1316), - [sym_metavariable] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [sym_self] = ACTIONS(1343), + [sym_metavariable] = ACTIONS(1341), + [sym_raw_string_literal] = ACTIONS(1341), + [sym_float_literal] = ACTIONS(1341), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_contract] = ACTIONS(1320), - [anon_sym_script] = ACTIONS(1320), - [anon_sym_predicate] = ACTIONS(1320), - [anon_sym_library] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_abi] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_configurable] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_dep] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_fn] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_impl] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_pub] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_storage] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_trait] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_COLON_COLON] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1320), - [anon_sym_move] = ACTIONS(1320), - [sym_integer_literal] = ACTIONS(1318), - [aux_sym_string_literal_token1] = ACTIONS(1318), - [sym_char_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_u8] = ACTIONS(1347), + [anon_sym_i8] = ACTIONS(1347), + [anon_sym_u16] = ACTIONS(1347), + [anon_sym_i16] = ACTIONS(1347), + [anon_sym_u32] = ACTIONS(1347), + [anon_sym_i32] = ACTIONS(1347), + [anon_sym_u64] = ACTIONS(1347), + [anon_sym_i64] = ACTIONS(1347), + [anon_sym_u128] = ACTIONS(1347), + [anon_sym_i128] = ACTIONS(1347), + [anon_sym_u256] = ACTIONS(1347), + [anon_sym_i256] = ACTIONS(1347), + [anon_sym_b256] = ACTIONS(1347), + [anon_sym_isize] = ACTIONS(1347), + [anon_sym_usize] = ACTIONS(1347), + [anon_sym_f32] = ACTIONS(1347), + [anon_sym_f64] = ACTIONS(1347), + [anon_sym_bool] = ACTIONS(1347), + [anon_sym_char] = ACTIONS(1347), + [anon_sym_str] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_contract] = ACTIONS(1347), + [anon_sym_script] = ACTIONS(1347), + [anon_sym_predicate] = ACTIONS(1347), + [anon_sym_library] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_abi] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_configurable] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_mod] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_fn] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1347), + [anon_sym_let] = ACTIONS(1347), + [anon_sym_match] = ACTIONS(1347), + [anon_sym_pub] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_storage] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_trait] = ACTIONS(1347), + [anon_sym_type] = ACTIONS(1347), + [anon_sym_use] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_COLON_COLON] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_yield] = ACTIONS(1347), + [anon_sym_move] = ACTIONS(1347), + [sym_integer_literal] = ACTIONS(1345), + [aux_sym_string_literal_token1] = ACTIONS(1345), + [sym_char_literal] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1320), - [sym_metavariable] = ACTIONS(1318), - [sym_raw_string_literal] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1318), + [sym_self] = ACTIONS(1347), + [sym_metavariable] = ACTIONS(1345), + [sym_raw_string_literal] = ACTIONS(1345), + [sym_float_literal] = ACTIONS(1345), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_u8] = ACTIONS(1324), - [anon_sym_i8] = ACTIONS(1324), - [anon_sym_u16] = ACTIONS(1324), - [anon_sym_i16] = ACTIONS(1324), - [anon_sym_u32] = ACTIONS(1324), - [anon_sym_i32] = ACTIONS(1324), - [anon_sym_u64] = ACTIONS(1324), - [anon_sym_i64] = ACTIONS(1324), - [anon_sym_u128] = ACTIONS(1324), - [anon_sym_i128] = ACTIONS(1324), - [anon_sym_isize] = ACTIONS(1324), - [anon_sym_usize] = ACTIONS(1324), - [anon_sym_f32] = ACTIONS(1324), - [anon_sym_f64] = ACTIONS(1324), - [anon_sym_bool] = ACTIONS(1324), - [anon_sym_char] = ACTIONS(1324), - [anon_sym_str] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_contract] = ACTIONS(1324), - [anon_sym_script] = ACTIONS(1324), - [anon_sym_predicate] = ACTIONS(1324), - [anon_sym_library] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_abi] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_configurable] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_dep] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_fn] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_impl] = ACTIONS(1324), - [anon_sym_let] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1324), - [anon_sym_pub] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_storage] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_trait] = ACTIONS(1324), - [anon_sym_use] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1324), - [anon_sym_move] = ACTIONS(1324), - [sym_integer_literal] = ACTIONS(1322), - [aux_sym_string_literal_token1] = ACTIONS(1322), - [sym_char_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1324), - [anon_sym_false] = ACTIONS(1324), + [sym_primitive_type] = STATE(1174), + [sym_attribute_item] = STATE(414), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_match_arm] = STATE(410), + [sym_last_match_arm] = STATE(2026), + [sym_match_pattern] = STATE(2033), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_enum_variant_list_repeat1] = STATE(414), + [aux_sym_match_block_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1324), - [sym_metavariable] = ACTIONS(1322), - [sym_raw_string_literal] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1322), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_u8] = ACTIONS(1328), - [anon_sym_i8] = ACTIONS(1328), - [anon_sym_u16] = ACTIONS(1328), - [anon_sym_i16] = ACTIONS(1328), - [anon_sym_u32] = ACTIONS(1328), - [anon_sym_i32] = ACTIONS(1328), - [anon_sym_u64] = ACTIONS(1328), - [anon_sym_i64] = ACTIONS(1328), - [anon_sym_u128] = ACTIONS(1328), - [anon_sym_i128] = ACTIONS(1328), - [anon_sym_isize] = ACTIONS(1328), - [anon_sym_usize] = ACTIONS(1328), - [anon_sym_f32] = ACTIONS(1328), - [anon_sym_f64] = ACTIONS(1328), - [anon_sym_bool] = ACTIONS(1328), - [anon_sym_char] = ACTIONS(1328), - [anon_sym_str] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_contract] = ACTIONS(1328), - [anon_sym_script] = ACTIONS(1328), - [anon_sym_predicate] = ACTIONS(1328), - [anon_sym_library] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_abi] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_configurable] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_dep] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_fn] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_impl] = ACTIONS(1328), - [anon_sym_let] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1328), - [anon_sym_pub] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_storage] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_trait] = ACTIONS(1328), - [anon_sym_use] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_COLON_COLON] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_move] = ACTIONS(1328), - [sym_integer_literal] = ACTIONS(1326), - [aux_sym_string_literal_token1] = ACTIONS(1326), - [sym_char_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1328), - [anon_sym_false] = ACTIONS(1328), + [ts_builtin_sym_end] = ACTIONS(1351), + [sym_identifier] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_u8] = ACTIONS(1353), + [anon_sym_i8] = ACTIONS(1353), + [anon_sym_u16] = ACTIONS(1353), + [anon_sym_i16] = ACTIONS(1353), + [anon_sym_u32] = ACTIONS(1353), + [anon_sym_i32] = ACTIONS(1353), + [anon_sym_u64] = ACTIONS(1353), + [anon_sym_i64] = ACTIONS(1353), + [anon_sym_u128] = ACTIONS(1353), + [anon_sym_i128] = ACTIONS(1353), + [anon_sym_u256] = ACTIONS(1353), + [anon_sym_i256] = ACTIONS(1353), + [anon_sym_b256] = ACTIONS(1353), + [anon_sym_isize] = ACTIONS(1353), + [anon_sym_usize] = ACTIONS(1353), + [anon_sym_f32] = ACTIONS(1353), + [anon_sym_f64] = ACTIONS(1353), + [anon_sym_bool] = ACTIONS(1353), + [anon_sym_char] = ACTIONS(1353), + [anon_sym_str] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_contract] = ACTIONS(1353), + [anon_sym_script] = ACTIONS(1353), + [anon_sym_predicate] = ACTIONS(1353), + [anon_sym_library] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_abi] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_configurable] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_impl] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_pub] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_storage] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_trait] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1353), + [anon_sym_move] = ACTIONS(1353), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1351), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1328), - [sym_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1326), - [sym_float_literal] = ACTIONS(1326), + [sym_self] = ACTIONS(1353), + [sym_metavariable] = ACTIONS(1351), + [sym_raw_string_literal] = ACTIONS(1351), + [sym_float_literal] = ACTIONS(1351), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_u8] = ACTIONS(1332), - [anon_sym_i8] = ACTIONS(1332), - [anon_sym_u16] = ACTIONS(1332), - [anon_sym_i16] = ACTIONS(1332), - [anon_sym_u32] = ACTIONS(1332), - [anon_sym_i32] = ACTIONS(1332), - [anon_sym_u64] = ACTIONS(1332), - [anon_sym_i64] = ACTIONS(1332), - [anon_sym_u128] = ACTIONS(1332), - [anon_sym_i128] = ACTIONS(1332), - [anon_sym_isize] = ACTIONS(1332), - [anon_sym_usize] = ACTIONS(1332), - [anon_sym_f32] = ACTIONS(1332), - [anon_sym_f64] = ACTIONS(1332), - [anon_sym_bool] = ACTIONS(1332), - [anon_sym_char] = ACTIONS(1332), - [anon_sym_str] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_contract] = ACTIONS(1332), - [anon_sym_script] = ACTIONS(1332), - [anon_sym_predicate] = ACTIONS(1332), - [anon_sym_library] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_abi] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_configurable] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_dep] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_fn] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_impl] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_pub] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_storage] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_trait] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_COLON_COLON] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_DOT_DOT] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1332), - [anon_sym_move] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1330), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(1355), + [sym_identifier] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_u8] = ACTIONS(1357), + [anon_sym_i8] = ACTIONS(1357), + [anon_sym_u16] = ACTIONS(1357), + [anon_sym_i16] = ACTIONS(1357), + [anon_sym_u32] = ACTIONS(1357), + [anon_sym_i32] = ACTIONS(1357), + [anon_sym_u64] = ACTIONS(1357), + [anon_sym_i64] = ACTIONS(1357), + [anon_sym_u128] = ACTIONS(1357), + [anon_sym_i128] = ACTIONS(1357), + [anon_sym_u256] = ACTIONS(1357), + [anon_sym_i256] = ACTIONS(1357), + [anon_sym_b256] = ACTIONS(1357), + [anon_sym_isize] = ACTIONS(1357), + [anon_sym_usize] = ACTIONS(1357), + [anon_sym_f32] = ACTIONS(1357), + [anon_sym_f64] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_str] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1355), + [anon_sym_contract] = ACTIONS(1357), + [anon_sym_script] = ACTIONS(1357), + [anon_sym_predicate] = ACTIONS(1357), + [anon_sym_library] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_abi] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_configurable] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_impl] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_pub] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_storage] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_trait] = ACTIONS(1357), + [anon_sym_type] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_COLON_COLON] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_yield] = ACTIONS(1357), + [anon_sym_move] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1355), + [aux_sym_string_literal_token1] = ACTIONS(1355), + [sym_char_literal] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1330), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [sym_self] = ACTIONS(1357), + [sym_metavariable] = ACTIONS(1355), + [sym_raw_string_literal] = ACTIONS(1355), + [sym_float_literal] = ACTIONS(1355), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_u8] = ACTIONS(1336), - [anon_sym_i8] = ACTIONS(1336), - [anon_sym_u16] = ACTIONS(1336), - [anon_sym_i16] = ACTIONS(1336), - [anon_sym_u32] = ACTIONS(1336), - [anon_sym_i32] = ACTIONS(1336), - [anon_sym_u64] = ACTIONS(1336), - [anon_sym_i64] = ACTIONS(1336), - [anon_sym_u128] = ACTIONS(1336), - [anon_sym_i128] = ACTIONS(1336), - [anon_sym_isize] = ACTIONS(1336), - [anon_sym_usize] = ACTIONS(1336), - [anon_sym_f32] = ACTIONS(1336), - [anon_sym_f64] = ACTIONS(1336), - [anon_sym_bool] = ACTIONS(1336), - [anon_sym_char] = ACTIONS(1336), - [anon_sym_str] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_contract] = ACTIONS(1336), - [anon_sym_script] = ACTIONS(1336), - [anon_sym_predicate] = ACTIONS(1336), - [anon_sym_library] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_abi] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_configurable] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_dep] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_impl] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_pub] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_storage] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_trait] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_COLON_COLON] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_move] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1334), - [aux_sym_string_literal_token1] = ACTIONS(1334), - [sym_char_literal] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), + [ts_builtin_sym_end] = ACTIONS(1359), + [sym_identifier] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_u8] = ACTIONS(1361), + [anon_sym_i8] = ACTIONS(1361), + [anon_sym_u16] = ACTIONS(1361), + [anon_sym_i16] = ACTIONS(1361), + [anon_sym_u32] = ACTIONS(1361), + [anon_sym_i32] = ACTIONS(1361), + [anon_sym_u64] = ACTIONS(1361), + [anon_sym_i64] = ACTIONS(1361), + [anon_sym_u128] = ACTIONS(1361), + [anon_sym_i128] = ACTIONS(1361), + [anon_sym_u256] = ACTIONS(1361), + [anon_sym_i256] = ACTIONS(1361), + [anon_sym_b256] = ACTIONS(1361), + [anon_sym_isize] = ACTIONS(1361), + [anon_sym_usize] = ACTIONS(1361), + [anon_sym_f32] = ACTIONS(1361), + [anon_sym_f64] = ACTIONS(1361), + [anon_sym_bool] = ACTIONS(1361), + [anon_sym_char] = ACTIONS(1361), + [anon_sym_str] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_contract] = ACTIONS(1361), + [anon_sym_script] = ACTIONS(1361), + [anon_sym_predicate] = ACTIONS(1361), + [anon_sym_library] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_abi] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_configurable] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_fn] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_impl] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_pub] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_storage] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_trait] = ACTIONS(1361), + [anon_sym_type] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_POUND] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_DOT_DOT] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_yield] = ACTIONS(1361), + [anon_sym_move] = ACTIONS(1361), + [sym_integer_literal] = ACTIONS(1359), + [aux_sym_string_literal_token1] = ACTIONS(1359), + [sym_char_literal] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1334), - [sym_raw_string_literal] = ACTIONS(1334), - [sym_float_literal] = ACTIONS(1334), + [sym_self] = ACTIONS(1361), + [sym_metavariable] = ACTIONS(1359), + [sym_raw_string_literal] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1359), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_contract] = ACTIONS(1340), - [anon_sym_script] = ACTIONS(1340), - [anon_sym_predicate] = ACTIONS(1340), - [anon_sym_library] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_abi] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_configurable] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_dep] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_storage] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_move] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1338), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), + [ts_builtin_sym_end] = ACTIONS(1363), + [sym_identifier] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_u8] = ACTIONS(1365), + [anon_sym_i8] = ACTIONS(1365), + [anon_sym_u16] = ACTIONS(1365), + [anon_sym_i16] = ACTIONS(1365), + [anon_sym_u32] = ACTIONS(1365), + [anon_sym_i32] = ACTIONS(1365), + [anon_sym_u64] = ACTIONS(1365), + [anon_sym_i64] = ACTIONS(1365), + [anon_sym_u128] = ACTIONS(1365), + [anon_sym_i128] = ACTIONS(1365), + [anon_sym_u256] = ACTIONS(1365), + [anon_sym_i256] = ACTIONS(1365), + [anon_sym_b256] = ACTIONS(1365), + [anon_sym_isize] = ACTIONS(1365), + [anon_sym_usize] = ACTIONS(1365), + [anon_sym_f32] = ACTIONS(1365), + [anon_sym_f64] = ACTIONS(1365), + [anon_sym_bool] = ACTIONS(1365), + [anon_sym_char] = ACTIONS(1365), + [anon_sym_str] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1363), + [anon_sym_contract] = ACTIONS(1365), + [anon_sym_script] = ACTIONS(1365), + [anon_sym_predicate] = ACTIONS(1365), + [anon_sym_library] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_abi] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_configurable] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_mod] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_impl] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_match] = ACTIONS(1365), + [anon_sym_pub] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_storage] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_trait] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1365), + [anon_sym_use] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_POUND] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_move] = ACTIONS(1365), + [sym_integer_literal] = ACTIONS(1363), + [aux_sym_string_literal_token1] = ACTIONS(1363), + [sym_char_literal] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1365), + [anon_sym_false] = ACTIONS(1365), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1338), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), + [sym_self] = ACTIONS(1365), + [sym_metavariable] = ACTIONS(1363), + [sym_raw_string_literal] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1363), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_u8] = ACTIONS(1344), - [anon_sym_i8] = ACTIONS(1344), - [anon_sym_u16] = ACTIONS(1344), - [anon_sym_i16] = ACTIONS(1344), - [anon_sym_u32] = ACTIONS(1344), - [anon_sym_i32] = ACTIONS(1344), - [anon_sym_u64] = ACTIONS(1344), - [anon_sym_i64] = ACTIONS(1344), - [anon_sym_u128] = ACTIONS(1344), - [anon_sym_i128] = ACTIONS(1344), - [anon_sym_isize] = ACTIONS(1344), - [anon_sym_usize] = ACTIONS(1344), - [anon_sym_f32] = ACTIONS(1344), - [anon_sym_f64] = ACTIONS(1344), - [anon_sym_bool] = ACTIONS(1344), - [anon_sym_char] = ACTIONS(1344), - [anon_sym_str] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_contract] = ACTIONS(1344), - [anon_sym_script] = ACTIONS(1344), - [anon_sym_predicate] = ACTIONS(1344), - [anon_sym_library] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_abi] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_configurable] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_dep] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_impl] = ACTIONS(1344), - [anon_sym_let] = ACTIONS(1344), - [anon_sym_match] = ACTIONS(1344), - [anon_sym_pub] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_storage] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_trait] = ACTIONS(1344), - [anon_sym_use] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_COLON_COLON] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_move] = ACTIONS(1344), - [sym_integer_literal] = ACTIONS(1342), - [aux_sym_string_literal_token1] = ACTIONS(1342), - [sym_char_literal] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), + [ts_builtin_sym_end] = ACTIONS(1367), + [sym_identifier] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_u8] = ACTIONS(1369), + [anon_sym_i8] = ACTIONS(1369), + [anon_sym_u16] = ACTIONS(1369), + [anon_sym_i16] = ACTIONS(1369), + [anon_sym_u32] = ACTIONS(1369), + [anon_sym_i32] = ACTIONS(1369), + [anon_sym_u64] = ACTIONS(1369), + [anon_sym_i64] = ACTIONS(1369), + [anon_sym_u128] = ACTIONS(1369), + [anon_sym_i128] = ACTIONS(1369), + [anon_sym_u256] = ACTIONS(1369), + [anon_sym_i256] = ACTIONS(1369), + [anon_sym_b256] = ACTIONS(1369), + [anon_sym_isize] = ACTIONS(1369), + [anon_sym_usize] = ACTIONS(1369), + [anon_sym_f32] = ACTIONS(1369), + [anon_sym_f64] = ACTIONS(1369), + [anon_sym_bool] = ACTIONS(1369), + [anon_sym_char] = ACTIONS(1369), + [anon_sym_str] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_contract] = ACTIONS(1369), + [anon_sym_script] = ACTIONS(1369), + [anon_sym_predicate] = ACTIONS(1369), + [anon_sym_library] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_abi] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_configurable] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_mod] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_impl] = ACTIONS(1369), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_match] = ACTIONS(1369), + [anon_sym_pub] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1369), + [anon_sym_storage] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_trait] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_use] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_asm] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_COLON_COLON] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_yield] = ACTIONS(1369), + [anon_sym_move] = ACTIONS(1369), + [sym_integer_literal] = ACTIONS(1367), + [aux_sym_string_literal_token1] = ACTIONS(1367), + [sym_char_literal] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1369), + [anon_sym_false] = ACTIONS(1369), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1344), - [sym_metavariable] = ACTIONS(1342), - [sym_raw_string_literal] = ACTIONS(1342), - [sym_float_literal] = ACTIONS(1342), + [sym_self] = ACTIONS(1369), + [sym_metavariable] = ACTIONS(1367), + [sym_raw_string_literal] = ACTIONS(1367), + [sym_float_literal] = ACTIONS(1367), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_u8] = ACTIONS(1348), - [anon_sym_i8] = ACTIONS(1348), - [anon_sym_u16] = ACTIONS(1348), - [anon_sym_i16] = ACTIONS(1348), - [anon_sym_u32] = ACTIONS(1348), - [anon_sym_i32] = ACTIONS(1348), - [anon_sym_u64] = ACTIONS(1348), - [anon_sym_i64] = ACTIONS(1348), - [anon_sym_u128] = ACTIONS(1348), - [anon_sym_i128] = ACTIONS(1348), - [anon_sym_isize] = ACTIONS(1348), - [anon_sym_usize] = ACTIONS(1348), - [anon_sym_f32] = ACTIONS(1348), - [anon_sym_f64] = ACTIONS(1348), - [anon_sym_bool] = ACTIONS(1348), - [anon_sym_char] = ACTIONS(1348), - [anon_sym_str] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_contract] = ACTIONS(1348), - [anon_sym_script] = ACTIONS(1348), - [anon_sym_predicate] = ACTIONS(1348), - [anon_sym_library] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_abi] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_configurable] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_dep] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_impl] = ACTIONS(1348), - [anon_sym_let] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [anon_sym_pub] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_storage] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_use] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1348), - [anon_sym_move] = ACTIONS(1348), - [sym_integer_literal] = ACTIONS(1346), - [aux_sym_string_literal_token1] = ACTIONS(1346), - [sym_char_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), + [ts_builtin_sym_end] = ACTIONS(1371), + [sym_identifier] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1373), + [anon_sym_i8] = ACTIONS(1373), + [anon_sym_u16] = ACTIONS(1373), + [anon_sym_i16] = ACTIONS(1373), + [anon_sym_u32] = ACTIONS(1373), + [anon_sym_i32] = ACTIONS(1373), + [anon_sym_u64] = ACTIONS(1373), + [anon_sym_i64] = ACTIONS(1373), + [anon_sym_u128] = ACTIONS(1373), + [anon_sym_i128] = ACTIONS(1373), + [anon_sym_u256] = ACTIONS(1373), + [anon_sym_i256] = ACTIONS(1373), + [anon_sym_b256] = ACTIONS(1373), + [anon_sym_isize] = ACTIONS(1373), + [anon_sym_usize] = ACTIONS(1373), + [anon_sym_f32] = ACTIONS(1373), + [anon_sym_f64] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_str] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_contract] = ACTIONS(1373), + [anon_sym_script] = ACTIONS(1373), + [anon_sym_predicate] = ACTIONS(1373), + [anon_sym_library] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_abi] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_configurable] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_mod] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_impl] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(1373), + [anon_sym_match] = ACTIONS(1373), + [anon_sym_pub] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_storage] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_trait] = ACTIONS(1373), + [anon_sym_type] = ACTIONS(1373), + [anon_sym_use] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_COLON_COLON] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_yield] = ACTIONS(1373), + [anon_sym_move] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1371), + [aux_sym_string_literal_token1] = ACTIONS(1371), + [sym_char_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1348), - [sym_metavariable] = ACTIONS(1346), - [sym_raw_string_literal] = ACTIONS(1346), - [sym_float_literal] = ACTIONS(1346), + [sym_self] = ACTIONS(1373), + [sym_metavariable] = ACTIONS(1371), + [sym_raw_string_literal] = ACTIONS(1371), + [sym_float_literal] = ACTIONS(1371), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_contract] = ACTIONS(1352), - [anon_sym_script] = ACTIONS(1352), - [anon_sym_predicate] = ACTIONS(1352), - [anon_sym_library] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_abi] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_configurable] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_dep] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_storage] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), + [ts_builtin_sym_end] = ACTIONS(1375), + [sym_identifier] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_u8] = ACTIONS(1377), + [anon_sym_i8] = ACTIONS(1377), + [anon_sym_u16] = ACTIONS(1377), + [anon_sym_i16] = ACTIONS(1377), + [anon_sym_u32] = ACTIONS(1377), + [anon_sym_i32] = ACTIONS(1377), + [anon_sym_u64] = ACTIONS(1377), + [anon_sym_i64] = ACTIONS(1377), + [anon_sym_u128] = ACTIONS(1377), + [anon_sym_i128] = ACTIONS(1377), + [anon_sym_u256] = ACTIONS(1377), + [anon_sym_i256] = ACTIONS(1377), + [anon_sym_b256] = ACTIONS(1377), + [anon_sym_isize] = ACTIONS(1377), + [anon_sym_usize] = ACTIONS(1377), + [anon_sym_f32] = ACTIONS(1377), + [anon_sym_f64] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_str] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_contract] = ACTIONS(1377), + [anon_sym_script] = ACTIONS(1377), + [anon_sym_predicate] = ACTIONS(1377), + [anon_sym_library] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_abi] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_configurable] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_mod] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_impl] = ACTIONS(1377), + [anon_sym_let] = ACTIONS(1377), + [anon_sym_match] = ACTIONS(1377), + [anon_sym_pub] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_storage] = ACTIONS(1377), + [anon_sym_struct] = ACTIONS(1377), + [anon_sym_trait] = ACTIONS(1377), + [anon_sym_type] = ACTIONS(1377), + [anon_sym_use] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_POUND] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_DOT_DOT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_move] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1375), + [aux_sym_string_literal_token1] = ACTIONS(1375), + [sym_char_literal] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [sym_self] = ACTIONS(1377), + [sym_metavariable] = ACTIONS(1375), + [sym_raw_string_literal] = ACTIONS(1375), + [sym_float_literal] = ACTIONS(1375), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_contract] = ACTIONS(1356), - [anon_sym_script] = ACTIONS(1356), - [anon_sym_predicate] = ACTIONS(1356), - [anon_sym_library] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_abi] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_configurable] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_dep] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_storage] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1381), + [anon_sym_i8] = ACTIONS(1381), + [anon_sym_u16] = ACTIONS(1381), + [anon_sym_i16] = ACTIONS(1381), + [anon_sym_u32] = ACTIONS(1381), + [anon_sym_i32] = ACTIONS(1381), + [anon_sym_u64] = ACTIONS(1381), + [anon_sym_i64] = ACTIONS(1381), + [anon_sym_u128] = ACTIONS(1381), + [anon_sym_i128] = ACTIONS(1381), + [anon_sym_u256] = ACTIONS(1381), + [anon_sym_i256] = ACTIONS(1381), + [anon_sym_b256] = ACTIONS(1381), + [anon_sym_isize] = ACTIONS(1381), + [anon_sym_usize] = ACTIONS(1381), + [anon_sym_f32] = ACTIONS(1381), + [anon_sym_f64] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_str] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_contract] = ACTIONS(1381), + [anon_sym_script] = ACTIONS(1381), + [anon_sym_predicate] = ACTIONS(1381), + [anon_sym_library] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_abi] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_configurable] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_impl] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_pub] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_storage] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_trait] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_move] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1379), + [aux_sym_string_literal_token1] = ACTIONS(1379), + [sym_char_literal] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym_raw_string_literal] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [sym_self] = ACTIONS(1381), + [sym_metavariable] = ACTIONS(1379), + [sym_raw_string_literal] = ACTIONS(1379), + [sym_float_literal] = ACTIONS(1379), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1360), - [anon_sym_i8] = ACTIONS(1360), - [anon_sym_u16] = ACTIONS(1360), - [anon_sym_i16] = ACTIONS(1360), - [anon_sym_u32] = ACTIONS(1360), - [anon_sym_i32] = ACTIONS(1360), - [anon_sym_u64] = ACTIONS(1360), - [anon_sym_i64] = ACTIONS(1360), - [anon_sym_u128] = ACTIONS(1360), - [anon_sym_i128] = ACTIONS(1360), - [anon_sym_isize] = ACTIONS(1360), - [anon_sym_usize] = ACTIONS(1360), - [anon_sym_f32] = ACTIONS(1360), - [anon_sym_f64] = ACTIONS(1360), - [anon_sym_bool] = ACTIONS(1360), - [anon_sym_char] = ACTIONS(1360), - [anon_sym_str] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_contract] = ACTIONS(1360), - [anon_sym_script] = ACTIONS(1360), - [anon_sym_predicate] = ACTIONS(1360), - [anon_sym_library] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_abi] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_configurable] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_dep] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_impl] = ACTIONS(1360), - [anon_sym_let] = ACTIONS(1360), - [anon_sym_match] = ACTIONS(1360), - [anon_sym_pub] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_storage] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_trait] = ACTIONS(1360), - [anon_sym_use] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1360), - [anon_sym_move] = ACTIONS(1360), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), + [ts_builtin_sym_end] = ACTIONS(1383), + [sym_identifier] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_u8] = ACTIONS(1385), + [anon_sym_i8] = ACTIONS(1385), + [anon_sym_u16] = ACTIONS(1385), + [anon_sym_i16] = ACTIONS(1385), + [anon_sym_u32] = ACTIONS(1385), + [anon_sym_i32] = ACTIONS(1385), + [anon_sym_u64] = ACTIONS(1385), + [anon_sym_i64] = ACTIONS(1385), + [anon_sym_u128] = ACTIONS(1385), + [anon_sym_i128] = ACTIONS(1385), + [anon_sym_u256] = ACTIONS(1385), + [anon_sym_i256] = ACTIONS(1385), + [anon_sym_b256] = ACTIONS(1385), + [anon_sym_isize] = ACTIONS(1385), + [anon_sym_usize] = ACTIONS(1385), + [anon_sym_f32] = ACTIONS(1385), + [anon_sym_f64] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_str] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_contract] = ACTIONS(1385), + [anon_sym_script] = ACTIONS(1385), + [anon_sym_predicate] = ACTIONS(1385), + [anon_sym_library] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_abi] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_configurable] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_mod] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1385), + [anon_sym_let] = ACTIONS(1385), + [anon_sym_match] = ACTIONS(1385), + [anon_sym_pub] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_storage] = ACTIONS(1385), + [anon_sym_struct] = ACTIONS(1385), + [anon_sym_trait] = ACTIONS(1385), + [anon_sym_type] = ACTIONS(1385), + [anon_sym_use] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_yield] = ACTIONS(1385), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1383), + [aux_sym_string_literal_token1] = ACTIONS(1383), + [sym_char_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1360), - [sym_metavariable] = ACTIONS(1358), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [sym_self] = ACTIONS(1385), + [sym_metavariable] = ACTIONS(1383), + [sym_raw_string_literal] = ACTIONS(1383), + [sym_float_literal] = ACTIONS(1383), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_contract] = ACTIONS(1364), - [anon_sym_script] = ACTIONS(1364), - [anon_sym_predicate] = ACTIONS(1364), - [anon_sym_library] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_abi] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_configurable] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_dep] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_fn] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_impl] = ACTIONS(1364), - [anon_sym_let] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_pub] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_storage] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_use] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), + [ts_builtin_sym_end] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_u8] = ACTIONS(1389), + [anon_sym_i8] = ACTIONS(1389), + [anon_sym_u16] = ACTIONS(1389), + [anon_sym_i16] = ACTIONS(1389), + [anon_sym_u32] = ACTIONS(1389), + [anon_sym_i32] = ACTIONS(1389), + [anon_sym_u64] = ACTIONS(1389), + [anon_sym_i64] = ACTIONS(1389), + [anon_sym_u128] = ACTIONS(1389), + [anon_sym_i128] = ACTIONS(1389), + [anon_sym_u256] = ACTIONS(1389), + [anon_sym_i256] = ACTIONS(1389), + [anon_sym_b256] = ACTIONS(1389), + [anon_sym_isize] = ACTIONS(1389), + [anon_sym_usize] = ACTIONS(1389), + [anon_sym_f32] = ACTIONS(1389), + [anon_sym_f64] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_str] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_contract] = ACTIONS(1389), + [anon_sym_script] = ACTIONS(1389), + [anon_sym_predicate] = ACTIONS(1389), + [anon_sym_library] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_abi] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_configurable] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_mod] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_impl] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_match] = ACTIONS(1389), + [anon_sym_pub] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_storage] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_trait] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_use] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_POUND] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(1389), + [anon_sym_move] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1387), + [aux_sym_string_literal_token1] = ACTIONS(1387), + [sym_char_literal] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym_raw_string_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [sym_self] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1387), + [sym_raw_string_literal] = ACTIONS(1387), + [sym_float_literal] = ACTIONS(1387), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_contract] = ACTIONS(1368), - [anon_sym_script] = ACTIONS(1368), - [anon_sym_predicate] = ACTIONS(1368), - [anon_sym_library] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_abi] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_configurable] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_dep] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_impl] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_pub] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_storage] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_trait] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(439), + [sym_identifier] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [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_u256] = ACTIONS(441), + [anon_sym_i256] = ACTIONS(441), + [anon_sym_b256] = ACTIONS(441), + [anon_sym_isize] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_f32] = ACTIONS(441), + [anon_sym_f64] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_char] = ACTIONS(441), + [anon_sym_str] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_contract] = ACTIONS(441), + [anon_sym_script] = ACTIONS(441), + [anon_sym_predicate] = ACTIONS(441), + [anon_sym_library] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_abi] = ACTIONS(441), + [anon_sym_break] = ACTIONS(441), + [anon_sym_configurable] = ACTIONS(441), + [anon_sym_const] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(441), + [anon_sym_default] = ACTIONS(441), + [anon_sym_mod] = ACTIONS(441), + [anon_sym_enum] = ACTIONS(441), + [anon_sym_fn] = ACTIONS(441), + [anon_sym_for] = ACTIONS(441), + [anon_sym_if] = ACTIONS(441), + [anon_sym_impl] = ACTIONS(441), + [anon_sym_let] = ACTIONS(441), + [anon_sym_match] = ACTIONS(441), + [anon_sym_pub] = ACTIONS(441), + [anon_sym_return] = ACTIONS(441), + [anon_sym_storage] = ACTIONS(441), + [anon_sym_struct] = ACTIONS(441), + [anon_sym_trait] = ACTIONS(441), + [anon_sym_type] = ACTIONS(441), + [anon_sym_use] = ACTIONS(441), + [anon_sym_while] = ACTIONS(441), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_asm] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_DOT_DOT] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(441), + [sym_integer_literal] = ACTIONS(439), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(439), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym_raw_string_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [sym_self] = ACTIONS(441), + [sym_metavariable] = ACTIONS(439), + [sym_raw_string_literal] = ACTIONS(439), + [sym_float_literal] = ACTIONS(439), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_contract] = ACTIONS(1372), - [anon_sym_script] = ACTIONS(1372), - [anon_sym_predicate] = ACTIONS(1372), - [anon_sym_library] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_abi] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_configurable] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_dep] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_impl] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_pub] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_storage] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_trait] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_yield] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), + [ts_builtin_sym_end] = ACTIONS(1391), + [sym_identifier] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_u8] = ACTIONS(1393), + [anon_sym_i8] = ACTIONS(1393), + [anon_sym_u16] = ACTIONS(1393), + [anon_sym_i16] = ACTIONS(1393), + [anon_sym_u32] = ACTIONS(1393), + [anon_sym_i32] = ACTIONS(1393), + [anon_sym_u64] = ACTIONS(1393), + [anon_sym_i64] = ACTIONS(1393), + [anon_sym_u128] = ACTIONS(1393), + [anon_sym_i128] = ACTIONS(1393), + [anon_sym_u256] = ACTIONS(1393), + [anon_sym_i256] = ACTIONS(1393), + [anon_sym_b256] = ACTIONS(1393), + [anon_sym_isize] = ACTIONS(1393), + [anon_sym_usize] = ACTIONS(1393), + [anon_sym_f32] = ACTIONS(1393), + [anon_sym_f64] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_str] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_contract] = ACTIONS(1393), + [anon_sym_script] = ACTIONS(1393), + [anon_sym_predicate] = ACTIONS(1393), + [anon_sym_library] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_abi] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_configurable] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_mod] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_impl] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_match] = ACTIONS(1393), + [anon_sym_pub] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_storage] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_trait] = ACTIONS(1393), + [anon_sym_type] = ACTIONS(1393), + [anon_sym_use] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_move] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1391), + [aux_sym_string_literal_token1] = ACTIONS(1391), + [sym_char_literal] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym_raw_string_literal] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [sym_self] = ACTIONS(1393), + [sym_metavariable] = ACTIONS(1391), + [sym_raw_string_literal] = ACTIONS(1391), + [sym_float_literal] = ACTIONS(1391), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_contract] = ACTIONS(1376), - [anon_sym_script] = ACTIONS(1376), - [anon_sym_predicate] = ACTIONS(1376), - [anon_sym_library] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_abi] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_configurable] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_dep] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_impl] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_pub] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_storage] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_trait] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_DOT_DOT] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), + [ts_builtin_sym_end] = ACTIONS(1395), + [sym_identifier] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_u8] = ACTIONS(1397), + [anon_sym_i8] = ACTIONS(1397), + [anon_sym_u16] = ACTIONS(1397), + [anon_sym_i16] = ACTIONS(1397), + [anon_sym_u32] = ACTIONS(1397), + [anon_sym_i32] = ACTIONS(1397), + [anon_sym_u64] = ACTIONS(1397), + [anon_sym_i64] = ACTIONS(1397), + [anon_sym_u128] = ACTIONS(1397), + [anon_sym_i128] = ACTIONS(1397), + [anon_sym_u256] = ACTIONS(1397), + [anon_sym_i256] = ACTIONS(1397), + [anon_sym_b256] = ACTIONS(1397), + [anon_sym_isize] = ACTIONS(1397), + [anon_sym_usize] = ACTIONS(1397), + [anon_sym_f32] = ACTIONS(1397), + [anon_sym_f64] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_str] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_contract] = ACTIONS(1397), + [anon_sym_script] = ACTIONS(1397), + [anon_sym_predicate] = ACTIONS(1397), + [anon_sym_library] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_abi] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_configurable] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_mod] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1397), + [anon_sym_let] = ACTIONS(1397), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_pub] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_storage] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_trait] = ACTIONS(1397), + [anon_sym_type] = ACTIONS(1397), + [anon_sym_use] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1395), + [aux_sym_string_literal_token1] = ACTIONS(1395), + [sym_char_literal] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym_raw_string_literal] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [sym_self] = ACTIONS(1397), + [sym_metavariable] = ACTIONS(1395), + [sym_raw_string_literal] = ACTIONS(1395), + [sym_float_literal] = ACTIONS(1395), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_contract] = ACTIONS(1380), - [anon_sym_script] = ACTIONS(1380), - [anon_sym_predicate] = ACTIONS(1380), - [anon_sym_library] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_abi] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_configurable] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_dep] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_storage] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), + [ts_builtin_sym_end] = ACTIONS(425), + [sym_identifier] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(427), + [anon_sym_i8] = ACTIONS(427), + [anon_sym_u16] = ACTIONS(427), + [anon_sym_i16] = ACTIONS(427), + [anon_sym_u32] = ACTIONS(427), + [anon_sym_i32] = ACTIONS(427), + [anon_sym_u64] = ACTIONS(427), + [anon_sym_i64] = ACTIONS(427), + [anon_sym_u128] = ACTIONS(427), + [anon_sym_i128] = ACTIONS(427), + [anon_sym_u256] = ACTIONS(427), + [anon_sym_i256] = ACTIONS(427), + [anon_sym_b256] = ACTIONS(427), + [anon_sym_isize] = ACTIONS(427), + [anon_sym_usize] = ACTIONS(427), + [anon_sym_f32] = ACTIONS(427), + [anon_sym_f64] = ACTIONS(427), + [anon_sym_bool] = ACTIONS(427), + [anon_sym_char] = ACTIONS(427), + [anon_sym_str] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_contract] = ACTIONS(427), + [anon_sym_script] = ACTIONS(427), + [anon_sym_predicate] = ACTIONS(427), + [anon_sym_library] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_abi] = ACTIONS(427), + [anon_sym_break] = ACTIONS(427), + [anon_sym_configurable] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(427), + [anon_sym_mod] = ACTIONS(427), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_fn] = ACTIONS(427), + [anon_sym_for] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_impl] = ACTIONS(427), + [anon_sym_let] = ACTIONS(427), + [anon_sym_match] = ACTIONS(427), + [anon_sym_pub] = ACTIONS(427), + [anon_sym_return] = ACTIONS(427), + [anon_sym_storage] = ACTIONS(427), + [anon_sym_struct] = ACTIONS(427), + [anon_sym_trait] = ACTIONS(427), + [anon_sym_type] = ACTIONS(427), + [anon_sym_use] = ACTIONS(427), + [anon_sym_while] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_asm] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_move] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(425), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_char_literal] = ACTIONS(425), + [anon_sym_true] = ACTIONS(427), + [anon_sym_false] = ACTIONS(427), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym_raw_string_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [sym_self] = ACTIONS(427), + [sym_metavariable] = ACTIONS(425), + [sym_raw_string_literal] = ACTIONS(425), + [sym_float_literal] = ACTIONS(425), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_contract] = ACTIONS(1384), - [anon_sym_script] = ACTIONS(1384), - [anon_sym_predicate] = ACTIONS(1384), - [anon_sym_library] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_abi] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_configurable] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_dep] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_storage] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_DOT_DOT] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), + [ts_builtin_sym_end] = ACTIONS(1399), + [sym_identifier] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_u8] = ACTIONS(1401), + [anon_sym_i8] = ACTIONS(1401), + [anon_sym_u16] = ACTIONS(1401), + [anon_sym_i16] = ACTIONS(1401), + [anon_sym_u32] = ACTIONS(1401), + [anon_sym_i32] = ACTIONS(1401), + [anon_sym_u64] = ACTIONS(1401), + [anon_sym_i64] = ACTIONS(1401), + [anon_sym_u128] = ACTIONS(1401), + [anon_sym_i128] = ACTIONS(1401), + [anon_sym_u256] = ACTIONS(1401), + [anon_sym_i256] = ACTIONS(1401), + [anon_sym_b256] = ACTIONS(1401), + [anon_sym_isize] = ACTIONS(1401), + [anon_sym_usize] = ACTIONS(1401), + [anon_sym_f32] = ACTIONS(1401), + [anon_sym_f64] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_str] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_contract] = ACTIONS(1401), + [anon_sym_script] = ACTIONS(1401), + [anon_sym_predicate] = ACTIONS(1401), + [anon_sym_library] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_abi] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_configurable] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_mod] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_impl] = ACTIONS(1401), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_match] = ACTIONS(1401), + [anon_sym_pub] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_storage] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_trait] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_use] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_move] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1399), + [aux_sym_string_literal_token1] = ACTIONS(1399), + [sym_char_literal] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym_raw_string_literal] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [sym_self] = ACTIONS(1401), + [sym_metavariable] = ACTIONS(1399), + [sym_raw_string_literal] = ACTIONS(1399), + [sym_float_literal] = ACTIONS(1399), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_contract] = ACTIONS(1388), - [anon_sym_script] = ACTIONS(1388), - [anon_sym_predicate] = ACTIONS(1388), - [anon_sym_library] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_abi] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_configurable] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_dep] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_storage] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_yield] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), + [ts_builtin_sym_end] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_u8] = ACTIONS(1405), + [anon_sym_i8] = ACTIONS(1405), + [anon_sym_u16] = ACTIONS(1405), + [anon_sym_i16] = ACTIONS(1405), + [anon_sym_u32] = ACTIONS(1405), + [anon_sym_i32] = ACTIONS(1405), + [anon_sym_u64] = ACTIONS(1405), + [anon_sym_i64] = ACTIONS(1405), + [anon_sym_u128] = ACTIONS(1405), + [anon_sym_i128] = ACTIONS(1405), + [anon_sym_u256] = ACTIONS(1405), + [anon_sym_i256] = ACTIONS(1405), + [anon_sym_b256] = ACTIONS(1405), + [anon_sym_isize] = ACTIONS(1405), + [anon_sym_usize] = ACTIONS(1405), + [anon_sym_f32] = ACTIONS(1405), + [anon_sym_f64] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_str] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_contract] = ACTIONS(1405), + [anon_sym_script] = ACTIONS(1405), + [anon_sym_predicate] = ACTIONS(1405), + [anon_sym_library] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_abi] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_configurable] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1405), + [anon_sym_mod] = ACTIONS(1405), + [anon_sym_enum] = ACTIONS(1405), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1405), + [anon_sym_let] = ACTIONS(1405), + [anon_sym_match] = ACTIONS(1405), + [anon_sym_pub] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_storage] = ACTIONS(1405), + [anon_sym_struct] = ACTIONS(1405), + [anon_sym_trait] = ACTIONS(1405), + [anon_sym_type] = ACTIONS(1405), + [anon_sym_use] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_COLON_COLON] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1403), + [aux_sym_string_literal_token1] = ACTIONS(1403), + [sym_char_literal] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym_raw_string_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [sym_self] = ACTIONS(1405), + [sym_metavariable] = ACTIONS(1403), + [sym_raw_string_literal] = ACTIONS(1403), + [sym_float_literal] = ACTIONS(1403), [sym_block_comment] = ACTIONS(3), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_contract] = ACTIONS(1392), - [anon_sym_script] = ACTIONS(1392), - [anon_sym_predicate] = ACTIONS(1392), - [anon_sym_library] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_abi] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_configurable] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_dep] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_impl] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_pub] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_storage] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_trait] = ACTIONS(1392), - [anon_sym_use] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_DOT_DOT] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), + [ts_builtin_sym_end] = ACTIONS(1407), + [sym_identifier] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_u8] = ACTIONS(1409), + [anon_sym_i8] = ACTIONS(1409), + [anon_sym_u16] = ACTIONS(1409), + [anon_sym_i16] = ACTIONS(1409), + [anon_sym_u32] = ACTIONS(1409), + [anon_sym_i32] = ACTIONS(1409), + [anon_sym_u64] = ACTIONS(1409), + [anon_sym_i64] = ACTIONS(1409), + [anon_sym_u128] = ACTIONS(1409), + [anon_sym_i128] = ACTIONS(1409), + [anon_sym_u256] = ACTIONS(1409), + [anon_sym_i256] = ACTIONS(1409), + [anon_sym_b256] = ACTIONS(1409), + [anon_sym_isize] = ACTIONS(1409), + [anon_sym_usize] = ACTIONS(1409), + [anon_sym_f32] = ACTIONS(1409), + [anon_sym_f64] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_str] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_contract] = ACTIONS(1409), + [anon_sym_script] = ACTIONS(1409), + [anon_sym_predicate] = ACTIONS(1409), + [anon_sym_library] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_abi] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_configurable] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_mod] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_impl] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1409), + [anon_sym_match] = ACTIONS(1409), + [anon_sym_pub] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_storage] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [anon_sym_trait] = ACTIONS(1409), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_use] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_POUND] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_COLON_COLON] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1407), + [aux_sym_string_literal_token1] = ACTIONS(1407), + [sym_char_literal] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym_raw_string_literal] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [sym_self] = ACTIONS(1409), + [sym_metavariable] = ACTIONS(1407), + [sym_raw_string_literal] = ACTIONS(1407), + [sym_float_literal] = ACTIONS(1407), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_contract] = ACTIONS(1396), - [anon_sym_script] = ACTIONS(1396), - [anon_sym_predicate] = ACTIONS(1396), - [anon_sym_library] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_abi] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_configurable] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_dep] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_impl] = ACTIONS(1396), - [anon_sym_let] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1396), - [anon_sym_pub] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_storage] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_trait] = ACTIONS(1396), - [anon_sym_use] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1411), + [sym_identifier] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_u8] = ACTIONS(1413), + [anon_sym_i8] = ACTIONS(1413), + [anon_sym_u16] = ACTIONS(1413), + [anon_sym_i16] = ACTIONS(1413), + [anon_sym_u32] = ACTIONS(1413), + [anon_sym_i32] = ACTIONS(1413), + [anon_sym_u64] = ACTIONS(1413), + [anon_sym_i64] = ACTIONS(1413), + [anon_sym_u128] = ACTIONS(1413), + [anon_sym_i128] = ACTIONS(1413), + [anon_sym_u256] = ACTIONS(1413), + [anon_sym_i256] = ACTIONS(1413), + [anon_sym_b256] = ACTIONS(1413), + [anon_sym_isize] = ACTIONS(1413), + [anon_sym_usize] = ACTIONS(1413), + [anon_sym_f32] = ACTIONS(1413), + [anon_sym_f64] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_str] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1411), + [anon_sym_contract] = ACTIONS(1413), + [anon_sym_script] = ACTIONS(1413), + [anon_sym_predicate] = ACTIONS(1413), + [anon_sym_library] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_abi] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_configurable] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_default] = ACTIONS(1413), + [anon_sym_mod] = ACTIONS(1413), + [anon_sym_enum] = ACTIONS(1413), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_pub] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_storage] = ACTIONS(1413), + [anon_sym_struct] = ACTIONS(1413), + [anon_sym_trait] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_use] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_COLON_COLON] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1411), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym_raw_string_literal] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [sym_self] = ACTIONS(1413), + [sym_metavariable] = ACTIONS(1411), + [sym_raw_string_literal] = ACTIONS(1411), + [sym_float_literal] = ACTIONS(1411), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_contract] = ACTIONS(1400), - [anon_sym_script] = ACTIONS(1400), - [anon_sym_predicate] = ACTIONS(1400), - [anon_sym_library] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_abi] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_configurable] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_dep] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_storage] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(435), + [sym_identifier] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_u8] = ACTIONS(437), + [anon_sym_i8] = ACTIONS(437), + [anon_sym_u16] = ACTIONS(437), + [anon_sym_i16] = ACTIONS(437), + [anon_sym_u32] = ACTIONS(437), + [anon_sym_i32] = ACTIONS(437), + [anon_sym_u64] = ACTIONS(437), + [anon_sym_i64] = ACTIONS(437), + [anon_sym_u128] = ACTIONS(437), + [anon_sym_i128] = ACTIONS(437), + [anon_sym_u256] = ACTIONS(437), + [anon_sym_i256] = ACTIONS(437), + [anon_sym_b256] = ACTIONS(437), + [anon_sym_isize] = ACTIONS(437), + [anon_sym_usize] = ACTIONS(437), + [anon_sym_f32] = ACTIONS(437), + [anon_sym_f64] = ACTIONS(437), + [anon_sym_bool] = ACTIONS(437), + [anon_sym_char] = ACTIONS(437), + [anon_sym_str] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_contract] = ACTIONS(437), + [anon_sym_script] = ACTIONS(437), + [anon_sym_predicate] = ACTIONS(437), + [anon_sym_library] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_SQUOTE] = ACTIONS(437), + [anon_sym_abi] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_configurable] = ACTIONS(437), + [anon_sym_const] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_default] = ACTIONS(437), + [anon_sym_mod] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(437), + [anon_sym_fn] = ACTIONS(437), + [anon_sym_for] = ACTIONS(437), + [anon_sym_if] = ACTIONS(437), + [anon_sym_impl] = ACTIONS(437), + [anon_sym_let] = ACTIONS(437), + [anon_sym_match] = ACTIONS(437), + [anon_sym_pub] = ACTIONS(437), + [anon_sym_return] = ACTIONS(437), + [anon_sym_storage] = ACTIONS(437), + [anon_sym_struct] = ACTIONS(437), + [anon_sym_trait] = ACTIONS(437), + [anon_sym_type] = ACTIONS(437), + [anon_sym_use] = ACTIONS(437), + [anon_sym_while] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_COLON_COLON] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(437), + [anon_sym_move] = ACTIONS(437), + [sym_integer_literal] = ACTIONS(435), + [aux_sym_string_literal_token1] = ACTIONS(435), + [sym_char_literal] = ACTIONS(435), + [anon_sym_true] = ACTIONS(437), + [anon_sym_false] = ACTIONS(437), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym_raw_string_literal] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [sym_self] = ACTIONS(437), + [sym_metavariable] = ACTIONS(435), + [sym_raw_string_literal] = ACTIONS(435), + [sym_float_literal] = ACTIONS(435), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_contract] = ACTIONS(1404), - [anon_sym_script] = ACTIONS(1404), - [anon_sym_predicate] = ACTIONS(1404), - [anon_sym_library] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_abi] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_configurable] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_dep] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_impl] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_pub] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_storage] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_trait] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_u8] = ACTIONS(1417), + [anon_sym_i8] = ACTIONS(1417), + [anon_sym_u16] = ACTIONS(1417), + [anon_sym_i16] = ACTIONS(1417), + [anon_sym_u32] = ACTIONS(1417), + [anon_sym_i32] = ACTIONS(1417), + [anon_sym_u64] = ACTIONS(1417), + [anon_sym_i64] = ACTIONS(1417), + [anon_sym_u128] = ACTIONS(1417), + [anon_sym_i128] = ACTIONS(1417), + [anon_sym_u256] = ACTIONS(1417), + [anon_sym_i256] = ACTIONS(1417), + [anon_sym_b256] = ACTIONS(1417), + [anon_sym_isize] = ACTIONS(1417), + [anon_sym_usize] = ACTIONS(1417), + [anon_sym_f32] = ACTIONS(1417), + [anon_sym_f64] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_str] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_contract] = ACTIONS(1417), + [anon_sym_script] = ACTIONS(1417), + [anon_sym_predicate] = ACTIONS(1417), + [anon_sym_library] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_abi] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_configurable] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_mod] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_impl] = ACTIONS(1417), + [anon_sym_let] = ACTIONS(1417), + [anon_sym_match] = ACTIONS(1417), + [anon_sym_pub] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_storage] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_trait] = ACTIONS(1417), + [anon_sym_type] = ACTIONS(1417), + [anon_sym_use] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_COLON_COLON] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_yield] = ACTIONS(1417), + [anon_sym_move] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1415), + [aux_sym_string_literal_token1] = ACTIONS(1415), + [sym_char_literal] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym_raw_string_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [sym_self] = ACTIONS(1417), + [sym_metavariable] = ACTIONS(1415), + [sym_raw_string_literal] = ACTIONS(1415), + [sym_float_literal] = ACTIONS(1415), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1406), - [sym_identifier] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_u8] = ACTIONS(1408), - [anon_sym_i8] = ACTIONS(1408), - [anon_sym_u16] = ACTIONS(1408), - [anon_sym_i16] = ACTIONS(1408), - [anon_sym_u32] = ACTIONS(1408), - [anon_sym_i32] = ACTIONS(1408), - [anon_sym_u64] = ACTIONS(1408), - [anon_sym_i64] = ACTIONS(1408), - [anon_sym_u128] = ACTIONS(1408), - [anon_sym_i128] = ACTIONS(1408), - [anon_sym_isize] = ACTIONS(1408), - [anon_sym_usize] = ACTIONS(1408), - [anon_sym_f32] = ACTIONS(1408), - [anon_sym_f64] = ACTIONS(1408), - [anon_sym_bool] = ACTIONS(1408), - [anon_sym_char] = ACTIONS(1408), - [anon_sym_str] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_contract] = ACTIONS(1408), - [anon_sym_script] = ACTIONS(1408), - [anon_sym_predicate] = ACTIONS(1408), - [anon_sym_library] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_abi] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_configurable] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_dep] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_impl] = ACTIONS(1408), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_match] = ACTIONS(1408), - [anon_sym_pub] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_storage] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_trait] = ACTIONS(1408), - [anon_sym_use] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_POUND] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_COLON_COLON] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1408), - [anon_sym_move] = ACTIONS(1408), - [sym_integer_literal] = ACTIONS(1406), - [aux_sym_string_literal_token1] = ACTIONS(1406), - [sym_char_literal] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1408), - [anon_sym_false] = ACTIONS(1408), + [ts_builtin_sym_end] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_u8] = ACTIONS(1421), + [anon_sym_i8] = ACTIONS(1421), + [anon_sym_u16] = ACTIONS(1421), + [anon_sym_i16] = ACTIONS(1421), + [anon_sym_u32] = ACTIONS(1421), + [anon_sym_i32] = ACTIONS(1421), + [anon_sym_u64] = ACTIONS(1421), + [anon_sym_i64] = ACTIONS(1421), + [anon_sym_u128] = ACTIONS(1421), + [anon_sym_i128] = ACTIONS(1421), + [anon_sym_u256] = ACTIONS(1421), + [anon_sym_i256] = ACTIONS(1421), + [anon_sym_b256] = ACTIONS(1421), + [anon_sym_isize] = ACTIONS(1421), + [anon_sym_usize] = ACTIONS(1421), + [anon_sym_f32] = ACTIONS(1421), + [anon_sym_f64] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_str] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_contract] = ACTIONS(1421), + [anon_sym_script] = ACTIONS(1421), + [anon_sym_predicate] = ACTIONS(1421), + [anon_sym_library] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_abi] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_configurable] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_impl] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_pub] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_storage] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_trait] = ACTIONS(1421), + [anon_sym_type] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_move] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1419), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1408), - [sym_metavariable] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1406), - [sym_float_literal] = ACTIONS(1406), + [sym_self] = ACTIONS(1421), + [sym_metavariable] = ACTIONS(1419), + [sym_raw_string_literal] = ACTIONS(1419), + [sym_float_literal] = ACTIONS(1419), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_contract] = ACTIONS(1412), - [anon_sym_script] = ACTIONS(1412), - [anon_sym_predicate] = ACTIONS(1412), - [anon_sym_library] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_abi] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_configurable] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_dep] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_impl] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1412), - [anon_sym_pub] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_storage] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_trait] = ACTIONS(1412), - [anon_sym_use] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u128] = ACTIONS(1425), + [anon_sym_i128] = ACTIONS(1425), + [anon_sym_u256] = ACTIONS(1425), + [anon_sym_i256] = ACTIONS(1425), + [anon_sym_b256] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_str] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_contract] = ACTIONS(1425), + [anon_sym_script] = ACTIONS(1425), + [anon_sym_predicate] = ACTIONS(1425), + [anon_sym_library] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_abi] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_configurable] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_impl] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_pub] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_storage] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_trait] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1423), + [aux_sym_string_literal_token1] = ACTIONS(1423), + [sym_char_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym_raw_string_literal] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), + [sym_self] = ACTIONS(1425), + [sym_metavariable] = ACTIONS(1423), + [sym_raw_string_literal] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1423), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_u8] = ACTIONS(1416), - [anon_sym_i8] = ACTIONS(1416), - [anon_sym_u16] = ACTIONS(1416), - [anon_sym_i16] = ACTIONS(1416), - [anon_sym_u32] = ACTIONS(1416), - [anon_sym_i32] = ACTIONS(1416), - [anon_sym_u64] = ACTIONS(1416), - [anon_sym_i64] = ACTIONS(1416), - [anon_sym_u128] = ACTIONS(1416), - [anon_sym_i128] = ACTIONS(1416), - [anon_sym_isize] = ACTIONS(1416), - [anon_sym_usize] = ACTIONS(1416), - [anon_sym_f32] = ACTIONS(1416), - [anon_sym_f64] = ACTIONS(1416), - [anon_sym_bool] = ACTIONS(1416), - [anon_sym_char] = ACTIONS(1416), - [anon_sym_str] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_contract] = ACTIONS(1416), - [anon_sym_script] = ACTIONS(1416), - [anon_sym_predicate] = ACTIONS(1416), - [anon_sym_library] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_abi] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_configurable] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_dep] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_impl] = ACTIONS(1416), - [anon_sym_let] = ACTIONS(1416), - [anon_sym_match] = ACTIONS(1416), - [anon_sym_pub] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_storage] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_trait] = ACTIONS(1416), - [anon_sym_use] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_COLON_COLON] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1416), - [anon_sym_move] = ACTIONS(1416), - [sym_integer_literal] = ACTIONS(1414), - [aux_sym_string_literal_token1] = ACTIONS(1414), - [sym_char_literal] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_u8] = ACTIONS(1429), + [anon_sym_i8] = ACTIONS(1429), + [anon_sym_u16] = ACTIONS(1429), + [anon_sym_i16] = ACTIONS(1429), + [anon_sym_u32] = ACTIONS(1429), + [anon_sym_i32] = ACTIONS(1429), + [anon_sym_u64] = ACTIONS(1429), + [anon_sym_i64] = ACTIONS(1429), + [anon_sym_u128] = ACTIONS(1429), + [anon_sym_i128] = ACTIONS(1429), + [anon_sym_u256] = ACTIONS(1429), + [anon_sym_i256] = ACTIONS(1429), + [anon_sym_b256] = ACTIONS(1429), + [anon_sym_isize] = ACTIONS(1429), + [anon_sym_usize] = ACTIONS(1429), + [anon_sym_f32] = ACTIONS(1429), + [anon_sym_f64] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_str] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_contract] = ACTIONS(1429), + [anon_sym_script] = ACTIONS(1429), + [anon_sym_predicate] = ACTIONS(1429), + [anon_sym_library] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_abi] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_configurable] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_impl] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_pub] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_storage] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_trait] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_move] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1427), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1416), - [sym_metavariable] = ACTIONS(1414), - [sym_raw_string_literal] = ACTIONS(1414), - [sym_float_literal] = ACTIONS(1414), + [sym_self] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym_raw_string_literal] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1420), - [anon_sym_i8] = ACTIONS(1420), - [anon_sym_u16] = ACTIONS(1420), - [anon_sym_i16] = ACTIONS(1420), - [anon_sym_u32] = ACTIONS(1420), - [anon_sym_i32] = ACTIONS(1420), - [anon_sym_u64] = ACTIONS(1420), - [anon_sym_i64] = ACTIONS(1420), - [anon_sym_u128] = ACTIONS(1420), - [anon_sym_i128] = ACTIONS(1420), - [anon_sym_isize] = ACTIONS(1420), - [anon_sym_usize] = ACTIONS(1420), - [anon_sym_f32] = ACTIONS(1420), - [anon_sym_f64] = ACTIONS(1420), - [anon_sym_bool] = ACTIONS(1420), - [anon_sym_char] = ACTIONS(1420), - [anon_sym_str] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_contract] = ACTIONS(1420), - [anon_sym_script] = ACTIONS(1420), - [anon_sym_predicate] = ACTIONS(1420), - [anon_sym_library] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_abi] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_configurable] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_dep] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_impl] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_match] = ACTIONS(1420), - [anon_sym_pub] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_storage] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_trait] = ACTIONS(1420), - [anon_sym_use] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_move] = ACTIONS(1420), - [sym_integer_literal] = ACTIONS(1418), - [aux_sym_string_literal_token1] = ACTIONS(1418), - [sym_char_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_u256] = ACTIONS(1433), + [anon_sym_i256] = ACTIONS(1433), + [anon_sym_b256] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_contract] = ACTIONS(1433), + [anon_sym_script] = ACTIONS(1433), + [anon_sym_predicate] = ACTIONS(1433), + [anon_sym_library] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_abi] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_configurable] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_impl] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_pub] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_storage] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_trait] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_yield] = ACTIONS(1433), + [anon_sym_move] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1431), + [aux_sym_string_literal_token1] = ACTIONS(1431), + [sym_char_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1418), - [sym_raw_string_literal] = ACTIONS(1418), - [sym_float_literal] = ACTIONS(1418), + [sym_self] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym_raw_string_literal] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_u8] = ACTIONS(1424), - [anon_sym_i8] = ACTIONS(1424), - [anon_sym_u16] = ACTIONS(1424), - [anon_sym_i16] = ACTIONS(1424), - [anon_sym_u32] = ACTIONS(1424), - [anon_sym_i32] = ACTIONS(1424), - [anon_sym_u64] = ACTIONS(1424), - [anon_sym_i64] = ACTIONS(1424), - [anon_sym_u128] = ACTIONS(1424), - [anon_sym_i128] = ACTIONS(1424), - [anon_sym_isize] = ACTIONS(1424), - [anon_sym_usize] = ACTIONS(1424), - [anon_sym_f32] = ACTIONS(1424), - [anon_sym_f64] = ACTIONS(1424), - [anon_sym_bool] = ACTIONS(1424), - [anon_sym_char] = ACTIONS(1424), - [anon_sym_str] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_contract] = ACTIONS(1424), - [anon_sym_script] = ACTIONS(1424), - [anon_sym_predicate] = ACTIONS(1424), - [anon_sym_library] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_abi] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_configurable] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_dep] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_impl] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_match] = ACTIONS(1424), - [anon_sym_pub] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_storage] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_trait] = ACTIONS(1424), - [anon_sym_use] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_COLON_COLON] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1424), - [sym_integer_literal] = ACTIONS(1422), - [aux_sym_string_literal_token1] = ACTIONS(1422), - [sym_char_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_u8] = ACTIONS(1437), + [anon_sym_i8] = ACTIONS(1437), + [anon_sym_u16] = ACTIONS(1437), + [anon_sym_i16] = ACTIONS(1437), + [anon_sym_u32] = ACTIONS(1437), + [anon_sym_i32] = ACTIONS(1437), + [anon_sym_u64] = ACTIONS(1437), + [anon_sym_i64] = ACTIONS(1437), + [anon_sym_u128] = ACTIONS(1437), + [anon_sym_i128] = ACTIONS(1437), + [anon_sym_u256] = ACTIONS(1437), + [anon_sym_i256] = ACTIONS(1437), + [anon_sym_b256] = ACTIONS(1437), + [anon_sym_isize] = ACTIONS(1437), + [anon_sym_usize] = ACTIONS(1437), + [anon_sym_f32] = ACTIONS(1437), + [anon_sym_f64] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_str] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_contract] = ACTIONS(1437), + [anon_sym_script] = ACTIONS(1437), + [anon_sym_predicate] = ACTIONS(1437), + [anon_sym_library] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_abi] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_configurable] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1437), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_impl] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_pub] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_storage] = ACTIONS(1437), + [anon_sym_struct] = ACTIONS(1437), + [anon_sym_trait] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_move] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1435), + [aux_sym_string_literal_token1] = ACTIONS(1435), + [sym_char_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1424), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(1422), - [sym_float_literal] = ACTIONS(1422), + [sym_self] = ACTIONS(1437), + [sym_metavariable] = ACTIONS(1435), + [sym_raw_string_literal] = ACTIONS(1435), + [sym_float_literal] = ACTIONS(1435), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_u8] = ACTIONS(1428), - [anon_sym_i8] = ACTIONS(1428), - [anon_sym_u16] = ACTIONS(1428), - [anon_sym_i16] = ACTIONS(1428), - [anon_sym_u32] = ACTIONS(1428), - [anon_sym_i32] = ACTIONS(1428), - [anon_sym_u64] = ACTIONS(1428), - [anon_sym_i64] = ACTIONS(1428), - [anon_sym_u128] = ACTIONS(1428), - [anon_sym_i128] = ACTIONS(1428), - [anon_sym_isize] = ACTIONS(1428), - [anon_sym_usize] = ACTIONS(1428), - [anon_sym_f32] = ACTIONS(1428), - [anon_sym_f64] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_str] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_contract] = ACTIONS(1428), - [anon_sym_script] = ACTIONS(1428), - [anon_sym_predicate] = ACTIONS(1428), - [anon_sym_library] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_abi] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_configurable] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_dep] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_impl] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_match] = ACTIONS(1428), - [anon_sym_pub] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_storage] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_trait] = ACTIONS(1428), - [anon_sym_use] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1428), - [anon_sym_move] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1426), - [aux_sym_string_literal_token1] = ACTIONS(1426), - [sym_char_literal] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_u8] = ACTIONS(1441), + [anon_sym_i8] = ACTIONS(1441), + [anon_sym_u16] = ACTIONS(1441), + [anon_sym_i16] = ACTIONS(1441), + [anon_sym_u32] = ACTIONS(1441), + [anon_sym_i32] = ACTIONS(1441), + [anon_sym_u64] = ACTIONS(1441), + [anon_sym_i64] = ACTIONS(1441), + [anon_sym_u128] = ACTIONS(1441), + [anon_sym_i128] = ACTIONS(1441), + [anon_sym_u256] = ACTIONS(1441), + [anon_sym_i256] = ACTIONS(1441), + [anon_sym_b256] = ACTIONS(1441), + [anon_sym_isize] = ACTIONS(1441), + [anon_sym_usize] = ACTIONS(1441), + [anon_sym_f32] = ACTIONS(1441), + [anon_sym_f64] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_str] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_contract] = ACTIONS(1441), + [anon_sym_script] = ACTIONS(1441), + [anon_sym_predicate] = ACTIONS(1441), + [anon_sym_library] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1441), + [anon_sym_abi] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_configurable] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_impl] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_pub] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_storage] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_trait] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_yield] = ACTIONS(1441), + [anon_sym_move] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1439), + [aux_sym_string_literal_token1] = ACTIONS(1439), + [sym_char_literal] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1428), - [sym_metavariable] = ACTIONS(1426), - [sym_raw_string_literal] = ACTIONS(1426), - [sym_float_literal] = ACTIONS(1426), + [sym_self] = ACTIONS(1441), + [sym_metavariable] = ACTIONS(1439), + [sym_raw_string_literal] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1439), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_u8] = ACTIONS(1432), - [anon_sym_i8] = ACTIONS(1432), - [anon_sym_u16] = ACTIONS(1432), - [anon_sym_i16] = ACTIONS(1432), - [anon_sym_u32] = ACTIONS(1432), - [anon_sym_i32] = ACTIONS(1432), - [anon_sym_u64] = ACTIONS(1432), - [anon_sym_i64] = ACTIONS(1432), - [anon_sym_u128] = ACTIONS(1432), - [anon_sym_i128] = ACTIONS(1432), - [anon_sym_isize] = ACTIONS(1432), - [anon_sym_usize] = ACTIONS(1432), - [anon_sym_f32] = ACTIONS(1432), - [anon_sym_f64] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_str] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_contract] = ACTIONS(1432), - [anon_sym_script] = ACTIONS(1432), - [anon_sym_predicate] = ACTIONS(1432), - [anon_sym_library] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_abi] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_configurable] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_dep] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_impl] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(1432), - [anon_sym_match] = ACTIONS(1432), - [anon_sym_pub] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_storage] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_trait] = ACTIONS(1432), - [anon_sym_use] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(1443), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_u8] = ACTIONS(1445), + [anon_sym_i8] = ACTIONS(1445), + [anon_sym_u16] = ACTIONS(1445), + [anon_sym_i16] = ACTIONS(1445), + [anon_sym_u32] = ACTIONS(1445), + [anon_sym_i32] = ACTIONS(1445), + [anon_sym_u64] = ACTIONS(1445), + [anon_sym_i64] = ACTIONS(1445), + [anon_sym_u128] = ACTIONS(1445), + [anon_sym_i128] = ACTIONS(1445), + [anon_sym_u256] = ACTIONS(1445), + [anon_sym_i256] = ACTIONS(1445), + [anon_sym_b256] = ACTIONS(1445), + [anon_sym_isize] = ACTIONS(1445), + [anon_sym_usize] = ACTIONS(1445), + [anon_sym_f32] = ACTIONS(1445), + [anon_sym_f64] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_str] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_contract] = ACTIONS(1445), + [anon_sym_script] = ACTIONS(1445), + [anon_sym_predicate] = ACTIONS(1445), + [anon_sym_library] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_abi] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_configurable] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_impl] = ACTIONS(1445), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1445), + [anon_sym_pub] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_storage] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_trait] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_use] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_COLON_COLON] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1445), + [anon_sym_move] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [aux_sym_string_literal_token1] = ACTIONS(1443), + [sym_char_literal] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1432), - [sym_metavariable] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [sym_self] = ACTIONS(1445), + [sym_metavariable] = ACTIONS(1443), + [sym_raw_string_literal] = ACTIONS(1443), + [sym_float_literal] = ACTIONS(1443), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_u8] = ACTIONS(1436), - [anon_sym_i8] = ACTIONS(1436), - [anon_sym_u16] = ACTIONS(1436), - [anon_sym_i16] = ACTIONS(1436), - [anon_sym_u32] = ACTIONS(1436), - [anon_sym_i32] = ACTIONS(1436), - [anon_sym_u64] = ACTIONS(1436), - [anon_sym_i64] = ACTIONS(1436), - [anon_sym_u128] = ACTIONS(1436), - [anon_sym_i128] = ACTIONS(1436), - [anon_sym_isize] = ACTIONS(1436), - [anon_sym_usize] = ACTIONS(1436), - [anon_sym_f32] = ACTIONS(1436), - [anon_sym_f64] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_str] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_contract] = ACTIONS(1436), - [anon_sym_script] = ACTIONS(1436), - [anon_sym_predicate] = ACTIONS(1436), - [anon_sym_library] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_abi] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_configurable] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_dep] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_impl] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_pub] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_storage] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_trait] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_COLON_COLON] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_DOT_DOT] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_move] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_u8] = ACTIONS(1449), + [anon_sym_i8] = ACTIONS(1449), + [anon_sym_u16] = ACTIONS(1449), + [anon_sym_i16] = ACTIONS(1449), + [anon_sym_u32] = ACTIONS(1449), + [anon_sym_i32] = ACTIONS(1449), + [anon_sym_u64] = ACTIONS(1449), + [anon_sym_i64] = ACTIONS(1449), + [anon_sym_u128] = ACTIONS(1449), + [anon_sym_i128] = ACTIONS(1449), + [anon_sym_u256] = ACTIONS(1449), + [anon_sym_i256] = ACTIONS(1449), + [anon_sym_b256] = ACTIONS(1449), + [anon_sym_isize] = ACTIONS(1449), + [anon_sym_usize] = ACTIONS(1449), + [anon_sym_f32] = ACTIONS(1449), + [anon_sym_f64] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_str] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_contract] = ACTIONS(1449), + [anon_sym_script] = ACTIONS(1449), + [anon_sym_predicate] = ACTIONS(1449), + [anon_sym_library] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1449), + [anon_sym_abi] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_configurable] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_mod] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_impl] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(1449), + [anon_sym_match] = ACTIONS(1449), + [anon_sym_pub] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_storage] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_trait] = ACTIONS(1449), + [anon_sym_type] = ACTIONS(1449), + [anon_sym_use] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_COLON_COLON] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1449), + [anon_sym_move] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1447), + [aux_sym_string_literal_token1] = ACTIONS(1447), + [sym_char_literal] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1436), - [sym_metavariable] = ACTIONS(1434), - [sym_raw_string_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), + [sym_self] = ACTIONS(1449), + [sym_metavariable] = ACTIONS(1447), + [sym_raw_string_literal] = ACTIONS(1447), + [sym_float_literal] = ACTIONS(1447), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_contract] = ACTIONS(1440), - [anon_sym_script] = ACTIONS(1440), - [anon_sym_predicate] = ACTIONS(1440), - [anon_sym_library] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_abi] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_configurable] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_dep] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_impl] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_pub] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_storage] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_trait] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_u8] = ACTIONS(1453), + [anon_sym_i8] = ACTIONS(1453), + [anon_sym_u16] = ACTIONS(1453), + [anon_sym_i16] = ACTIONS(1453), + [anon_sym_u32] = ACTIONS(1453), + [anon_sym_i32] = ACTIONS(1453), + [anon_sym_u64] = ACTIONS(1453), + [anon_sym_i64] = ACTIONS(1453), + [anon_sym_u128] = ACTIONS(1453), + [anon_sym_i128] = ACTIONS(1453), + [anon_sym_u256] = ACTIONS(1453), + [anon_sym_i256] = ACTIONS(1453), + [anon_sym_b256] = ACTIONS(1453), + [anon_sym_isize] = ACTIONS(1453), + [anon_sym_usize] = ACTIONS(1453), + [anon_sym_f32] = ACTIONS(1453), + [anon_sym_f64] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_str] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_contract] = ACTIONS(1453), + [anon_sym_script] = ACTIONS(1453), + [anon_sym_predicate] = ACTIONS(1453), + [anon_sym_library] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1453), + [anon_sym_abi] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_configurable] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_default] = ACTIONS(1453), + [anon_sym_mod] = ACTIONS(1453), + [anon_sym_enum] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_impl] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_pub] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_storage] = ACTIONS(1453), + [anon_sym_struct] = ACTIONS(1453), + [anon_sym_trait] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_COLON_COLON] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1453), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1451), + [aux_sym_string_literal_token1] = ACTIONS(1451), + [sym_char_literal] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym_raw_string_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), + [sym_self] = ACTIONS(1453), + [sym_metavariable] = ACTIONS(1451), + [sym_raw_string_literal] = ACTIONS(1451), + [sym_float_literal] = ACTIONS(1451), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_contract] = ACTIONS(1444), - [anon_sym_script] = ACTIONS(1444), - [anon_sym_predicate] = ACTIONS(1444), - [anon_sym_library] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_abi] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_configurable] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_dep] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_impl] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_pub] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_storage] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_trait] = ACTIONS(1444), - [anon_sym_use] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_u8] = ACTIONS(1457), + [anon_sym_i8] = ACTIONS(1457), + [anon_sym_u16] = ACTIONS(1457), + [anon_sym_i16] = ACTIONS(1457), + [anon_sym_u32] = ACTIONS(1457), + [anon_sym_i32] = ACTIONS(1457), + [anon_sym_u64] = ACTIONS(1457), + [anon_sym_i64] = ACTIONS(1457), + [anon_sym_u128] = ACTIONS(1457), + [anon_sym_i128] = ACTIONS(1457), + [anon_sym_u256] = ACTIONS(1457), + [anon_sym_i256] = ACTIONS(1457), + [anon_sym_b256] = ACTIONS(1457), + [anon_sym_isize] = ACTIONS(1457), + [anon_sym_usize] = ACTIONS(1457), + [anon_sym_f32] = ACTIONS(1457), + [anon_sym_f64] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_str] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_contract] = ACTIONS(1457), + [anon_sym_script] = ACTIONS(1457), + [anon_sym_predicate] = ACTIONS(1457), + [anon_sym_library] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_abi] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_configurable] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_mod] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_impl] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_match] = ACTIONS(1457), + [anon_sym_pub] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_storage] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_trait] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_use] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1455), + [aux_sym_string_literal_token1] = ACTIONS(1455), + [sym_char_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym_raw_string_literal] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), + [sym_self] = ACTIONS(1457), + [sym_metavariable] = ACTIONS(1455), + [sym_raw_string_literal] = ACTIONS(1455), + [sym_float_literal] = ACTIONS(1455), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_contract] = ACTIONS(1448), - [anon_sym_script] = ACTIONS(1448), - [anon_sym_predicate] = ACTIONS(1448), - [anon_sym_library] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_abi] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_configurable] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_dep] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_impl] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_match] = ACTIONS(1448), - [anon_sym_pub] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_storage] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_trait] = ACTIONS(1448), - [anon_sym_use] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_DOT_DOT] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1459), + [sym_identifier] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_u8] = ACTIONS(1461), + [anon_sym_i8] = ACTIONS(1461), + [anon_sym_u16] = ACTIONS(1461), + [anon_sym_i16] = ACTIONS(1461), + [anon_sym_u32] = ACTIONS(1461), + [anon_sym_i32] = ACTIONS(1461), + [anon_sym_u64] = ACTIONS(1461), + [anon_sym_i64] = ACTIONS(1461), + [anon_sym_u128] = ACTIONS(1461), + [anon_sym_i128] = ACTIONS(1461), + [anon_sym_u256] = ACTIONS(1461), + [anon_sym_i256] = ACTIONS(1461), + [anon_sym_b256] = ACTIONS(1461), + [anon_sym_isize] = ACTIONS(1461), + [anon_sym_usize] = ACTIONS(1461), + [anon_sym_f32] = ACTIONS(1461), + [anon_sym_f64] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_str] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_contract] = ACTIONS(1461), + [anon_sym_script] = ACTIONS(1461), + [anon_sym_predicate] = ACTIONS(1461), + [anon_sym_library] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1461), + [anon_sym_abi] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_configurable] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_mod] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_impl] = ACTIONS(1461), + [anon_sym_let] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [anon_sym_pub] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_storage] = ACTIONS(1461), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_trait] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_use] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1461), + [anon_sym_move] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1459), + [aux_sym_string_literal_token1] = ACTIONS(1459), + [sym_char_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym_raw_string_literal] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), + [sym_self] = ACTIONS(1461), + [sym_metavariable] = ACTIONS(1459), + [sym_raw_string_literal] = ACTIONS(1459), + [sym_float_literal] = ACTIONS(1459), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_contract] = ACTIONS(1452), - [anon_sym_script] = ACTIONS(1452), - [anon_sym_predicate] = ACTIONS(1452), - [anon_sym_library] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_abi] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_configurable] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_dep] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_storage] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_DOT_DOT] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_u8] = ACTIONS(1465), + [anon_sym_i8] = ACTIONS(1465), + [anon_sym_u16] = ACTIONS(1465), + [anon_sym_i16] = ACTIONS(1465), + [anon_sym_u32] = ACTIONS(1465), + [anon_sym_i32] = ACTIONS(1465), + [anon_sym_u64] = ACTIONS(1465), + [anon_sym_i64] = ACTIONS(1465), + [anon_sym_u128] = ACTIONS(1465), + [anon_sym_i128] = ACTIONS(1465), + [anon_sym_u256] = ACTIONS(1465), + [anon_sym_i256] = ACTIONS(1465), + [anon_sym_b256] = ACTIONS(1465), + [anon_sym_isize] = ACTIONS(1465), + [anon_sym_usize] = ACTIONS(1465), + [anon_sym_f32] = ACTIONS(1465), + [anon_sym_f64] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_str] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_contract] = ACTIONS(1465), + [anon_sym_script] = ACTIONS(1465), + [anon_sym_predicate] = ACTIONS(1465), + [anon_sym_library] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_abi] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_configurable] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_mod] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_impl] = ACTIONS(1465), + [anon_sym_let] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [anon_sym_pub] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_storage] = ACTIONS(1465), + [anon_sym_struct] = ACTIONS(1465), + [anon_sym_trait] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_use] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_COLON_COLON] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(1465), + [anon_sym_move] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1463), + [aux_sym_string_literal_token1] = ACTIONS(1463), + [sym_char_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym_raw_string_literal] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), + [sym_self] = ACTIONS(1465), + [sym_metavariable] = ACTIONS(1463), + [sym_raw_string_literal] = ACTIONS(1463), + [sym_float_literal] = ACTIONS(1463), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_contract] = ACTIONS(1456), - [anon_sym_script] = ACTIONS(1456), - [anon_sym_predicate] = ACTIONS(1456), - [anon_sym_library] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_abi] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_configurable] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_dep] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_impl] = ACTIONS(1456), - [anon_sym_let] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_pub] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_storage] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_trait] = ACTIONS(1456), - [anon_sym_use] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_u8] = ACTIONS(1469), + [anon_sym_i8] = ACTIONS(1469), + [anon_sym_u16] = ACTIONS(1469), + [anon_sym_i16] = ACTIONS(1469), + [anon_sym_u32] = ACTIONS(1469), + [anon_sym_i32] = ACTIONS(1469), + [anon_sym_u64] = ACTIONS(1469), + [anon_sym_i64] = ACTIONS(1469), + [anon_sym_u128] = ACTIONS(1469), + [anon_sym_i128] = ACTIONS(1469), + [anon_sym_u256] = ACTIONS(1469), + [anon_sym_i256] = ACTIONS(1469), + [anon_sym_b256] = ACTIONS(1469), + [anon_sym_isize] = ACTIONS(1469), + [anon_sym_usize] = ACTIONS(1469), + [anon_sym_f32] = ACTIONS(1469), + [anon_sym_f64] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_str] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_contract] = ACTIONS(1469), + [anon_sym_script] = ACTIONS(1469), + [anon_sym_predicate] = ACTIONS(1469), + [anon_sym_library] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_abi] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_configurable] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_mod] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_impl] = ACTIONS(1469), + [anon_sym_let] = ACTIONS(1469), + [anon_sym_match] = ACTIONS(1469), + [anon_sym_pub] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_storage] = ACTIONS(1469), + [anon_sym_struct] = ACTIONS(1469), + [anon_sym_trait] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1469), + [anon_sym_use] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_COLON_COLON] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_move] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1467), + [aux_sym_string_literal_token1] = ACTIONS(1467), + [sym_char_literal] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym_raw_string_literal] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), + [sym_self] = ACTIONS(1469), + [sym_metavariable] = ACTIONS(1467), + [sym_raw_string_literal] = ACTIONS(1467), + [sym_float_literal] = ACTIONS(1467), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1460), - [anon_sym_i8] = ACTIONS(1460), - [anon_sym_u16] = ACTIONS(1460), - [anon_sym_i16] = ACTIONS(1460), - [anon_sym_u32] = ACTIONS(1460), - [anon_sym_i32] = ACTIONS(1460), - [anon_sym_u64] = ACTIONS(1460), - [anon_sym_i64] = ACTIONS(1460), - [anon_sym_u128] = ACTIONS(1460), - [anon_sym_i128] = ACTIONS(1460), - [anon_sym_isize] = ACTIONS(1460), - [anon_sym_usize] = ACTIONS(1460), - [anon_sym_f32] = ACTIONS(1460), - [anon_sym_f64] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_str] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_contract] = ACTIONS(1460), - [anon_sym_script] = ACTIONS(1460), - [anon_sym_predicate] = ACTIONS(1460), - [anon_sym_library] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_abi] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_configurable] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_dep] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_impl] = ACTIONS(1460), - [anon_sym_let] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1460), - [anon_sym_pub] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_storage] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_trait] = ACTIONS(1460), - [anon_sym_use] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_u256] = ACTIONS(1473), + [anon_sym_i256] = ACTIONS(1473), + [anon_sym_b256] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_contract] = ACTIONS(1473), + [anon_sym_script] = ACTIONS(1473), + [anon_sym_predicate] = ACTIONS(1473), + [anon_sym_library] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_abi] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_configurable] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_mod] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_impl] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_pub] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_storage] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_trait] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1460), - [sym_metavariable] = ACTIONS(1458), - [sym_raw_string_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), + [sym_self] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym_raw_string_literal] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_u8] = ACTIONS(1464), - [anon_sym_i8] = ACTIONS(1464), - [anon_sym_u16] = ACTIONS(1464), - [anon_sym_i16] = ACTIONS(1464), - [anon_sym_u32] = ACTIONS(1464), - [anon_sym_i32] = ACTIONS(1464), - [anon_sym_u64] = ACTIONS(1464), - [anon_sym_i64] = ACTIONS(1464), - [anon_sym_u128] = ACTIONS(1464), - [anon_sym_i128] = ACTIONS(1464), - [anon_sym_isize] = ACTIONS(1464), - [anon_sym_usize] = ACTIONS(1464), - [anon_sym_f32] = ACTIONS(1464), - [anon_sym_f64] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_str] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_contract] = ACTIONS(1464), - [anon_sym_script] = ACTIONS(1464), - [anon_sym_predicate] = ACTIONS(1464), - [anon_sym_library] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_abi] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_configurable] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_dep] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_impl] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_pub] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_storage] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_trait] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_COLON_COLON] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1464), - [anon_sym_move] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1462), - [aux_sym_string_literal_token1] = ACTIONS(1462), - [sym_char_literal] = ACTIONS(1462), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_u256] = ACTIONS(1477), + [anon_sym_i256] = ACTIONS(1477), + [anon_sym_b256] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_contract] = ACTIONS(1477), + [anon_sym_script] = ACTIONS(1477), + [anon_sym_predicate] = ACTIONS(1477), + [anon_sym_library] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_abi] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_configurable] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_mod] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1477), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_impl] = ACTIONS(1477), + [anon_sym_let] = ACTIONS(1477), + [anon_sym_match] = ACTIONS(1477), + [anon_sym_pub] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_storage] = ACTIONS(1477), + [anon_sym_struct] = ACTIONS(1477), + [anon_sym_trait] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1477), + [anon_sym_use] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_yield] = ACTIONS(1477), + [anon_sym_move] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1464), - [sym_metavariable] = ACTIONS(1462), - [sym_raw_string_literal] = ACTIONS(1462), - [sym_float_literal] = ACTIONS(1462), + [sym_self] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym_raw_string_literal] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_contract] = ACTIONS(1468), - [anon_sym_script] = ACTIONS(1468), - [anon_sym_predicate] = ACTIONS(1468), - [anon_sym_library] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_abi] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_configurable] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_dep] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_impl] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_pub] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_storage] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_trait] = ACTIONS(1468), - [anon_sym_use] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_COLON_COLON] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_DOT_DOT] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_yield] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1466), - [aux_sym_string_literal_token1] = ACTIONS(1466), - [sym_char_literal] = ACTIONS(1466), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1479), + [sym_identifier] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_u8] = ACTIONS(1481), + [anon_sym_i8] = ACTIONS(1481), + [anon_sym_u16] = ACTIONS(1481), + [anon_sym_i16] = ACTIONS(1481), + [anon_sym_u32] = ACTIONS(1481), + [anon_sym_i32] = ACTIONS(1481), + [anon_sym_u64] = ACTIONS(1481), + [anon_sym_i64] = ACTIONS(1481), + [anon_sym_u128] = ACTIONS(1481), + [anon_sym_i128] = ACTIONS(1481), + [anon_sym_u256] = ACTIONS(1481), + [anon_sym_i256] = ACTIONS(1481), + [anon_sym_b256] = ACTIONS(1481), + [anon_sym_isize] = ACTIONS(1481), + [anon_sym_usize] = ACTIONS(1481), + [anon_sym_f32] = ACTIONS(1481), + [anon_sym_f64] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_str] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_contract] = ACTIONS(1481), + [anon_sym_script] = ACTIONS(1481), + [anon_sym_predicate] = ACTIONS(1481), + [anon_sym_library] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_abi] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_configurable] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_enum] = ACTIONS(1481), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_impl] = ACTIONS(1481), + [anon_sym_let] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [anon_sym_pub] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_storage] = ACTIONS(1481), + [anon_sym_struct] = ACTIONS(1481), + [anon_sym_trait] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1481), + [anon_sym_use] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1481), + [anon_sym_move] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1479), + [aux_sym_string_literal_token1] = ACTIONS(1479), + [sym_char_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1466), - [sym_raw_string_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1466), + [sym_self] = ACTIONS(1481), + [sym_metavariable] = ACTIONS(1479), + [sym_raw_string_literal] = ACTIONS(1479), + [sym_float_literal] = ACTIONS(1479), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_contract] = ACTIONS(1472), - [anon_sym_script] = ACTIONS(1472), - [anon_sym_predicate] = ACTIONS(1472), - [anon_sym_library] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_abi] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_configurable] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_dep] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_impl] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_pub] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_storage] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_trait] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_COLON_COLON] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_move] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1470), - [aux_sym_string_literal_token1] = ACTIONS(1470), - [sym_char_literal] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_u8] = ACTIONS(1485), + [anon_sym_i8] = ACTIONS(1485), + [anon_sym_u16] = ACTIONS(1485), + [anon_sym_i16] = ACTIONS(1485), + [anon_sym_u32] = ACTIONS(1485), + [anon_sym_i32] = ACTIONS(1485), + [anon_sym_u64] = ACTIONS(1485), + [anon_sym_i64] = ACTIONS(1485), + [anon_sym_u128] = ACTIONS(1485), + [anon_sym_i128] = ACTIONS(1485), + [anon_sym_u256] = ACTIONS(1485), + [anon_sym_i256] = ACTIONS(1485), + [anon_sym_b256] = ACTIONS(1485), + [anon_sym_isize] = ACTIONS(1485), + [anon_sym_usize] = ACTIONS(1485), + [anon_sym_f32] = ACTIONS(1485), + [anon_sym_f64] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_str] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_contract] = ACTIONS(1485), + [anon_sym_script] = ACTIONS(1485), + [anon_sym_predicate] = ACTIONS(1485), + [anon_sym_library] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1485), + [anon_sym_abi] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_configurable] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1485), + [anon_sym_mod] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1485), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_impl] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_pub] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_storage] = ACTIONS(1485), + [anon_sym_struct] = ACTIONS(1485), + [anon_sym_trait] = ACTIONS(1485), + [anon_sym_type] = ACTIONS(1485), + [anon_sym_use] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_COLON_COLON] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_move] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1483), + [aux_sym_string_literal_token1] = ACTIONS(1483), + [sym_char_literal] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1470), - [sym_raw_string_literal] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), + [sym_self] = ACTIONS(1485), + [sym_metavariable] = ACTIONS(1483), + [sym_raw_string_literal] = ACTIONS(1483), + [sym_float_literal] = ACTIONS(1483), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1476), - [anon_sym_i8] = ACTIONS(1476), - [anon_sym_u16] = ACTIONS(1476), - [anon_sym_i16] = ACTIONS(1476), - [anon_sym_u32] = ACTIONS(1476), - [anon_sym_i32] = ACTIONS(1476), - [anon_sym_u64] = ACTIONS(1476), - [anon_sym_i64] = ACTIONS(1476), - [anon_sym_u128] = ACTIONS(1476), - [anon_sym_i128] = ACTIONS(1476), - [anon_sym_isize] = ACTIONS(1476), - [anon_sym_usize] = ACTIONS(1476), - [anon_sym_f32] = ACTIONS(1476), - [anon_sym_f64] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_str] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_contract] = ACTIONS(1476), - [anon_sym_script] = ACTIONS(1476), - [anon_sym_predicate] = ACTIONS(1476), - [anon_sym_library] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_abi] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_configurable] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_dep] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_impl] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(1476), - [anon_sym_match] = ACTIONS(1476), - [anon_sym_pub] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_storage] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_trait] = ACTIONS(1476), - [anon_sym_use] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_COLON_COLON] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_yield] = ACTIONS(1476), - [anon_sym_move] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1474), - [aux_sym_string_literal_token1] = ACTIONS(1474), - [sym_char_literal] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1489), + [anon_sym_i8] = ACTIONS(1489), + [anon_sym_u16] = ACTIONS(1489), + [anon_sym_i16] = ACTIONS(1489), + [anon_sym_u32] = ACTIONS(1489), + [anon_sym_i32] = ACTIONS(1489), + [anon_sym_u64] = ACTIONS(1489), + [anon_sym_i64] = ACTIONS(1489), + [anon_sym_u128] = ACTIONS(1489), + [anon_sym_i128] = ACTIONS(1489), + [anon_sym_u256] = ACTIONS(1489), + [anon_sym_i256] = ACTIONS(1489), + [anon_sym_b256] = ACTIONS(1489), + [anon_sym_isize] = ACTIONS(1489), + [anon_sym_usize] = ACTIONS(1489), + [anon_sym_f32] = ACTIONS(1489), + [anon_sym_f64] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_str] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_contract] = ACTIONS(1489), + [anon_sym_script] = ACTIONS(1489), + [anon_sym_predicate] = ACTIONS(1489), + [anon_sym_library] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1489), + [anon_sym_abi] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_configurable] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_mod] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_impl] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_pub] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_storage] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_trait] = ACTIONS(1489), + [anon_sym_type] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_yield] = ACTIONS(1489), + [anon_sym_move] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1487), + [aux_sym_string_literal_token1] = ACTIONS(1487), + [sym_char_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1476), - [sym_metavariable] = ACTIONS(1474), - [sym_raw_string_literal] = ACTIONS(1474), - [sym_float_literal] = ACTIONS(1474), + [sym_self] = ACTIONS(1489), + [sym_metavariable] = ACTIONS(1487), + [sym_raw_string_literal] = ACTIONS(1487), + [sym_float_literal] = ACTIONS(1487), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_u8] = ACTIONS(1480), - [anon_sym_i8] = ACTIONS(1480), - [anon_sym_u16] = ACTIONS(1480), - [anon_sym_i16] = ACTIONS(1480), - [anon_sym_u32] = ACTIONS(1480), - [anon_sym_i32] = ACTIONS(1480), - [anon_sym_u64] = ACTIONS(1480), - [anon_sym_i64] = ACTIONS(1480), - [anon_sym_u128] = ACTIONS(1480), - [anon_sym_i128] = ACTIONS(1480), - [anon_sym_isize] = ACTIONS(1480), - [anon_sym_usize] = ACTIONS(1480), - [anon_sym_f32] = ACTIONS(1480), - [anon_sym_f64] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_str] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_contract] = ACTIONS(1480), - [anon_sym_script] = ACTIONS(1480), - [anon_sym_predicate] = ACTIONS(1480), - [anon_sym_library] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1480), - [anon_sym_abi] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_configurable] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_dep] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_impl] = ACTIONS(1480), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_match] = ACTIONS(1480), - [anon_sym_pub] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_storage] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_trait] = ACTIONS(1480), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1480), - [anon_sym_move] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1478), - [aux_sym_string_literal_token1] = ACTIONS(1478), - [sym_char_literal] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1491), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1493), + [anon_sym_i8] = ACTIONS(1493), + [anon_sym_u16] = ACTIONS(1493), + [anon_sym_i16] = ACTIONS(1493), + [anon_sym_u32] = ACTIONS(1493), + [anon_sym_i32] = ACTIONS(1493), + [anon_sym_u64] = ACTIONS(1493), + [anon_sym_i64] = ACTIONS(1493), + [anon_sym_u128] = ACTIONS(1493), + [anon_sym_i128] = ACTIONS(1493), + [anon_sym_u256] = ACTIONS(1493), + [anon_sym_i256] = ACTIONS(1493), + [anon_sym_b256] = ACTIONS(1493), + [anon_sym_isize] = ACTIONS(1493), + [anon_sym_usize] = ACTIONS(1493), + [anon_sym_f32] = ACTIONS(1493), + [anon_sym_f64] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_str] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_contract] = ACTIONS(1493), + [anon_sym_script] = ACTIONS(1493), + [anon_sym_predicate] = ACTIONS(1493), + [anon_sym_library] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_abi] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_configurable] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_impl] = ACTIONS(1493), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_match] = ACTIONS(1493), + [anon_sym_pub] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_storage] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_trait] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_use] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_COLON_COLON] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_yield] = ACTIONS(1493), + [anon_sym_move] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1491), + [aux_sym_string_literal_token1] = ACTIONS(1491), + [sym_char_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1480), - [sym_metavariable] = ACTIONS(1478), - [sym_raw_string_literal] = ACTIONS(1478), - [sym_float_literal] = ACTIONS(1478), + [sym_self] = ACTIONS(1493), + [sym_metavariable] = ACTIONS(1491), + [sym_raw_string_literal] = ACTIONS(1491), + [sym_float_literal] = ACTIONS(1491), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_u8] = ACTIONS(1484), - [anon_sym_i8] = ACTIONS(1484), - [anon_sym_u16] = ACTIONS(1484), - [anon_sym_i16] = ACTIONS(1484), - [anon_sym_u32] = ACTIONS(1484), - [anon_sym_i32] = ACTIONS(1484), - [anon_sym_u64] = ACTIONS(1484), - [anon_sym_i64] = ACTIONS(1484), - [anon_sym_u128] = ACTIONS(1484), - [anon_sym_i128] = ACTIONS(1484), - [anon_sym_isize] = ACTIONS(1484), - [anon_sym_usize] = ACTIONS(1484), - [anon_sym_f32] = ACTIONS(1484), - [anon_sym_f64] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_str] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_contract] = ACTIONS(1484), - [anon_sym_script] = ACTIONS(1484), - [anon_sym_predicate] = ACTIONS(1484), - [anon_sym_library] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_abi] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_configurable] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_dep] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_impl] = ACTIONS(1484), - [anon_sym_let] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_pub] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_storage] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_trait] = ACTIONS(1484), - [anon_sym_use] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1482), - [aux_sym_string_literal_token1] = ACTIONS(1482), - [sym_char_literal] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1497), + [anon_sym_i8] = ACTIONS(1497), + [anon_sym_u16] = ACTIONS(1497), + [anon_sym_i16] = ACTIONS(1497), + [anon_sym_u32] = ACTIONS(1497), + [anon_sym_i32] = ACTIONS(1497), + [anon_sym_u64] = ACTIONS(1497), + [anon_sym_i64] = ACTIONS(1497), + [anon_sym_u128] = ACTIONS(1497), + [anon_sym_i128] = ACTIONS(1497), + [anon_sym_u256] = ACTIONS(1497), + [anon_sym_i256] = ACTIONS(1497), + [anon_sym_b256] = ACTIONS(1497), + [anon_sym_isize] = ACTIONS(1497), + [anon_sym_usize] = ACTIONS(1497), + [anon_sym_f32] = ACTIONS(1497), + [anon_sym_f64] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_str] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_contract] = ACTIONS(1497), + [anon_sym_script] = ACTIONS(1497), + [anon_sym_predicate] = ACTIONS(1497), + [anon_sym_library] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_abi] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_configurable] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_mod] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_impl] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_pub] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_storage] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_trait] = ACTIONS(1497), + [anon_sym_type] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1497), + [anon_sym_move] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1495), + [aux_sym_string_literal_token1] = ACTIONS(1495), + [sym_char_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1484), - [sym_metavariable] = ACTIONS(1482), - [sym_raw_string_literal] = ACTIONS(1482), - [sym_float_literal] = ACTIONS(1482), + [sym_self] = ACTIONS(1497), + [sym_metavariable] = ACTIONS(1495), + [sym_raw_string_literal] = ACTIONS(1495), + [sym_float_literal] = ACTIONS(1495), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1488), - [anon_sym_i8] = ACTIONS(1488), - [anon_sym_u16] = ACTIONS(1488), - [anon_sym_i16] = ACTIONS(1488), - [anon_sym_u32] = ACTIONS(1488), - [anon_sym_i32] = ACTIONS(1488), - [anon_sym_u64] = ACTIONS(1488), - [anon_sym_i64] = ACTIONS(1488), - [anon_sym_u128] = ACTIONS(1488), - [anon_sym_i128] = ACTIONS(1488), - [anon_sym_isize] = ACTIONS(1488), - [anon_sym_usize] = ACTIONS(1488), - [anon_sym_f32] = ACTIONS(1488), - [anon_sym_f64] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_str] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_contract] = ACTIONS(1488), - [anon_sym_script] = ACTIONS(1488), - [anon_sym_predicate] = ACTIONS(1488), - [anon_sym_library] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1488), - [anon_sym_abi] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_configurable] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_dep] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_impl] = ACTIONS(1488), - [anon_sym_let] = ACTIONS(1488), - [anon_sym_match] = ACTIONS(1488), - [anon_sym_pub] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_storage] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_trait] = ACTIONS(1488), - [anon_sym_use] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_COLON_COLON] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1486), - [aux_sym_string_literal_token1] = ACTIONS(1486), - [sym_char_literal] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_u8] = ACTIONS(1501), + [anon_sym_i8] = ACTIONS(1501), + [anon_sym_u16] = ACTIONS(1501), + [anon_sym_i16] = ACTIONS(1501), + [anon_sym_u32] = ACTIONS(1501), + [anon_sym_i32] = ACTIONS(1501), + [anon_sym_u64] = ACTIONS(1501), + [anon_sym_i64] = ACTIONS(1501), + [anon_sym_u128] = ACTIONS(1501), + [anon_sym_i128] = ACTIONS(1501), + [anon_sym_u256] = ACTIONS(1501), + [anon_sym_i256] = ACTIONS(1501), + [anon_sym_b256] = ACTIONS(1501), + [anon_sym_isize] = ACTIONS(1501), + [anon_sym_usize] = ACTIONS(1501), + [anon_sym_f32] = ACTIONS(1501), + [anon_sym_f64] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_str] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_contract] = ACTIONS(1501), + [anon_sym_script] = ACTIONS(1501), + [anon_sym_predicate] = ACTIONS(1501), + [anon_sym_library] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1501), + [anon_sym_abi] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_configurable] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_enum] = ACTIONS(1501), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_impl] = ACTIONS(1501), + [anon_sym_let] = ACTIONS(1501), + [anon_sym_match] = ACTIONS(1501), + [anon_sym_pub] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_storage] = ACTIONS(1501), + [anon_sym_struct] = ACTIONS(1501), + [anon_sym_trait] = ACTIONS(1501), + [anon_sym_type] = ACTIONS(1501), + [anon_sym_use] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_COLON_COLON] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1501), + [anon_sym_move] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1499), + [aux_sym_string_literal_token1] = ACTIONS(1499), + [sym_char_literal] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1488), - [sym_metavariable] = ACTIONS(1486), - [sym_raw_string_literal] = ACTIONS(1486), - [sym_float_literal] = ACTIONS(1486), + [sym_self] = ACTIONS(1501), + [sym_metavariable] = ACTIONS(1499), + [sym_raw_string_literal] = ACTIONS(1499), + [sym_float_literal] = ACTIONS(1499), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1492), - [anon_sym_i8] = ACTIONS(1492), - [anon_sym_u16] = ACTIONS(1492), - [anon_sym_i16] = ACTIONS(1492), - [anon_sym_u32] = ACTIONS(1492), - [anon_sym_i32] = ACTIONS(1492), - [anon_sym_u64] = ACTIONS(1492), - [anon_sym_i64] = ACTIONS(1492), - [anon_sym_u128] = ACTIONS(1492), - [anon_sym_i128] = ACTIONS(1492), - [anon_sym_isize] = ACTIONS(1492), - [anon_sym_usize] = ACTIONS(1492), - [anon_sym_f32] = ACTIONS(1492), - [anon_sym_f64] = ACTIONS(1492), - [anon_sym_bool] = ACTIONS(1492), - [anon_sym_char] = ACTIONS(1492), - [anon_sym_str] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_contract] = ACTIONS(1492), - [anon_sym_script] = ACTIONS(1492), - [anon_sym_predicate] = ACTIONS(1492), - [anon_sym_library] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1492), - [anon_sym_abi] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_configurable] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_dep] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_impl] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_pub] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_storage] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_trait] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_COLON_COLON] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1492), - [anon_sym_move] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1490), - [aux_sym_string_literal_token1] = ACTIONS(1490), - [sym_char_literal] = ACTIONS(1490), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_u8] = ACTIONS(1505), + [anon_sym_i8] = ACTIONS(1505), + [anon_sym_u16] = ACTIONS(1505), + [anon_sym_i16] = ACTIONS(1505), + [anon_sym_u32] = ACTIONS(1505), + [anon_sym_i32] = ACTIONS(1505), + [anon_sym_u64] = ACTIONS(1505), + [anon_sym_i64] = ACTIONS(1505), + [anon_sym_u128] = ACTIONS(1505), + [anon_sym_i128] = ACTIONS(1505), + [anon_sym_u256] = ACTIONS(1505), + [anon_sym_i256] = ACTIONS(1505), + [anon_sym_b256] = ACTIONS(1505), + [anon_sym_isize] = ACTIONS(1505), + [anon_sym_usize] = ACTIONS(1505), + [anon_sym_f32] = ACTIONS(1505), + [anon_sym_f64] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_str] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_contract] = ACTIONS(1505), + [anon_sym_script] = ACTIONS(1505), + [anon_sym_predicate] = ACTIONS(1505), + [anon_sym_library] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_abi] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_configurable] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_mod] = ACTIONS(1505), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_impl] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_pub] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_storage] = ACTIONS(1505), + [anon_sym_struct] = ACTIONS(1505), + [anon_sym_trait] = ACTIONS(1505), + [anon_sym_type] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_COLON_COLON] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [aux_sym_string_literal_token1] = ACTIONS(1503), + [sym_char_literal] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1492), - [sym_metavariable] = ACTIONS(1490), - [sym_raw_string_literal] = ACTIONS(1490), - [sym_float_literal] = ACTIONS(1490), + [sym_self] = ACTIONS(1505), + [sym_metavariable] = ACTIONS(1503), + [sym_raw_string_literal] = ACTIONS(1503), + [sym_float_literal] = ACTIONS(1503), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_u8] = ACTIONS(1496), - [anon_sym_i8] = ACTIONS(1496), - [anon_sym_u16] = ACTIONS(1496), - [anon_sym_i16] = ACTIONS(1496), - [anon_sym_u32] = ACTIONS(1496), - [anon_sym_i32] = ACTIONS(1496), - [anon_sym_u64] = ACTIONS(1496), - [anon_sym_i64] = ACTIONS(1496), - [anon_sym_u128] = ACTIONS(1496), - [anon_sym_i128] = ACTIONS(1496), - [anon_sym_isize] = ACTIONS(1496), - [anon_sym_usize] = ACTIONS(1496), - [anon_sym_f32] = ACTIONS(1496), - [anon_sym_f64] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_str] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_contract] = ACTIONS(1496), - [anon_sym_script] = ACTIONS(1496), - [anon_sym_predicate] = ACTIONS(1496), - [anon_sym_library] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1496), - [anon_sym_abi] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_configurable] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_dep] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_impl] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_match] = ACTIONS(1496), - [anon_sym_pub] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_storage] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_trait] = ACTIONS(1496), - [anon_sym_use] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_COLON_COLON] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_yield] = ACTIONS(1496), - [anon_sym_move] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1494), - [aux_sym_string_literal_token1] = ACTIONS(1494), - [sym_char_literal] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_u256] = ACTIONS(1509), + [anon_sym_i256] = ACTIONS(1509), + [anon_sym_b256] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_contract] = ACTIONS(1509), + [anon_sym_script] = ACTIONS(1509), + [anon_sym_predicate] = ACTIONS(1509), + [anon_sym_library] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_abi] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_configurable] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_impl] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_pub] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_storage] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_trait] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1496), - [sym_metavariable] = ACTIONS(1494), - [sym_raw_string_literal] = ACTIONS(1494), - [sym_float_literal] = ACTIONS(1494), + [sym_self] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1507), + [sym_raw_string_literal] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_u8] = ACTIONS(1500), - [anon_sym_i8] = ACTIONS(1500), - [anon_sym_u16] = ACTIONS(1500), - [anon_sym_i16] = ACTIONS(1500), - [anon_sym_u32] = ACTIONS(1500), - [anon_sym_i32] = ACTIONS(1500), - [anon_sym_u64] = ACTIONS(1500), - [anon_sym_i64] = ACTIONS(1500), - [anon_sym_u128] = ACTIONS(1500), - [anon_sym_i128] = ACTIONS(1500), - [anon_sym_isize] = ACTIONS(1500), - [anon_sym_usize] = ACTIONS(1500), - [anon_sym_f32] = ACTIONS(1500), - [anon_sym_f64] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_str] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_contract] = ACTIONS(1500), - [anon_sym_script] = ACTIONS(1500), - [anon_sym_predicate] = ACTIONS(1500), - [anon_sym_library] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1500), - [anon_sym_abi] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_configurable] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_dep] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_impl] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_match] = ACTIONS(1500), - [anon_sym_pub] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_storage] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_trait] = ACTIONS(1500), - [anon_sym_use] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_COLON_COLON] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_move] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1498), - [aux_sym_string_literal_token1] = ACTIONS(1498), - [sym_char_literal] = ACTIONS(1498), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_u8] = ACTIONS(1513), + [anon_sym_i8] = ACTIONS(1513), + [anon_sym_u16] = ACTIONS(1513), + [anon_sym_i16] = ACTIONS(1513), + [anon_sym_u32] = ACTIONS(1513), + [anon_sym_i32] = ACTIONS(1513), + [anon_sym_u64] = ACTIONS(1513), + [anon_sym_i64] = ACTIONS(1513), + [anon_sym_u128] = ACTIONS(1513), + [anon_sym_i128] = ACTIONS(1513), + [anon_sym_u256] = ACTIONS(1513), + [anon_sym_i256] = ACTIONS(1513), + [anon_sym_b256] = ACTIONS(1513), + [anon_sym_isize] = ACTIONS(1513), + [anon_sym_usize] = ACTIONS(1513), + [anon_sym_f32] = ACTIONS(1513), + [anon_sym_f64] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_str] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_contract] = ACTIONS(1513), + [anon_sym_script] = ACTIONS(1513), + [anon_sym_predicate] = ACTIONS(1513), + [anon_sym_library] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_abi] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_configurable] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_impl] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_pub] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_storage] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_trait] = ACTIONS(1513), + [anon_sym_type] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_COLON_COLON] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_yield] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1511), + [aux_sym_string_literal_token1] = ACTIONS(1511), + [sym_char_literal] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1500), - [sym_metavariable] = ACTIONS(1498), - [sym_raw_string_literal] = ACTIONS(1498), - [sym_float_literal] = ACTIONS(1498), + [sym_self] = ACTIONS(1513), + [sym_metavariable] = ACTIONS(1511), + [sym_raw_string_literal] = ACTIONS(1511), + [sym_float_literal] = ACTIONS(1511), [sym_block_comment] = ACTIONS(3), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_u8] = ACTIONS(1504), - [anon_sym_i8] = ACTIONS(1504), - [anon_sym_u16] = ACTIONS(1504), - [anon_sym_i16] = ACTIONS(1504), - [anon_sym_u32] = ACTIONS(1504), - [anon_sym_i32] = ACTIONS(1504), - [anon_sym_u64] = ACTIONS(1504), - [anon_sym_i64] = ACTIONS(1504), - [anon_sym_u128] = ACTIONS(1504), - [anon_sym_i128] = ACTIONS(1504), - [anon_sym_isize] = ACTIONS(1504), - [anon_sym_usize] = ACTIONS(1504), - [anon_sym_f32] = ACTIONS(1504), - [anon_sym_f64] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_str] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_contract] = ACTIONS(1504), - [anon_sym_script] = ACTIONS(1504), - [anon_sym_predicate] = ACTIONS(1504), - [anon_sym_library] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_abi] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_configurable] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_dep] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_impl] = ACTIONS(1504), - [anon_sym_let] = ACTIONS(1504), - [anon_sym_match] = ACTIONS(1504), - [anon_sym_pub] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_storage] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_trait] = ACTIONS(1504), - [anon_sym_use] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1504), - [anon_sym_move] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1502), - [aux_sym_string_literal_token1] = ACTIONS(1502), - [sym_char_literal] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_u8] = ACTIONS(1517), + [anon_sym_i8] = ACTIONS(1517), + [anon_sym_u16] = ACTIONS(1517), + [anon_sym_i16] = ACTIONS(1517), + [anon_sym_u32] = ACTIONS(1517), + [anon_sym_i32] = ACTIONS(1517), + [anon_sym_u64] = ACTIONS(1517), + [anon_sym_i64] = ACTIONS(1517), + [anon_sym_u128] = ACTIONS(1517), + [anon_sym_i128] = ACTIONS(1517), + [anon_sym_u256] = ACTIONS(1517), + [anon_sym_i256] = ACTIONS(1517), + [anon_sym_b256] = ACTIONS(1517), + [anon_sym_isize] = ACTIONS(1517), + [anon_sym_usize] = ACTIONS(1517), + [anon_sym_f32] = ACTIONS(1517), + [anon_sym_f64] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_str] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_contract] = ACTIONS(1517), + [anon_sym_script] = ACTIONS(1517), + [anon_sym_predicate] = ACTIONS(1517), + [anon_sym_library] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_abi] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_configurable] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_mod] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_impl] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_pub] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_storage] = ACTIONS(1517), + [anon_sym_struct] = ACTIONS(1517), + [anon_sym_trait] = ACTIONS(1517), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_use] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_move] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1515), + [aux_sym_string_literal_token1] = ACTIONS(1515), + [sym_char_literal] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1504), - [sym_metavariable] = ACTIONS(1502), - [sym_raw_string_literal] = ACTIONS(1502), - [sym_float_literal] = ACTIONS(1502), + [sym_self] = ACTIONS(1517), + [sym_metavariable] = ACTIONS(1515), + [sym_raw_string_literal] = ACTIONS(1515), + [sym_float_literal] = ACTIONS(1515), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_u8] = ACTIONS(1508), - [anon_sym_i8] = ACTIONS(1508), - [anon_sym_u16] = ACTIONS(1508), - [anon_sym_i16] = ACTIONS(1508), - [anon_sym_u32] = ACTIONS(1508), - [anon_sym_i32] = ACTIONS(1508), - [anon_sym_u64] = ACTIONS(1508), - [anon_sym_i64] = ACTIONS(1508), - [anon_sym_u128] = ACTIONS(1508), - [anon_sym_i128] = ACTIONS(1508), - [anon_sym_isize] = ACTIONS(1508), - [anon_sym_usize] = ACTIONS(1508), - [anon_sym_f32] = ACTIONS(1508), - [anon_sym_f64] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_str] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_contract] = ACTIONS(1508), - [anon_sym_script] = ACTIONS(1508), - [anon_sym_predicate] = ACTIONS(1508), - [anon_sym_library] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_abi] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_configurable] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_dep] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_impl] = ACTIONS(1508), - [anon_sym_let] = ACTIONS(1508), - [anon_sym_match] = ACTIONS(1508), - [anon_sym_pub] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_storage] = ACTIONS(1508), - [anon_sym_struct] = ACTIONS(1508), - [anon_sym_trait] = ACTIONS(1508), - [anon_sym_use] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_COLON_COLON] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_yield] = ACTIONS(1508), - [anon_sym_move] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1506), - [aux_sym_string_literal_token1] = ACTIONS(1506), - [sym_char_literal] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_u8] = ACTIONS(1521), + [anon_sym_i8] = ACTIONS(1521), + [anon_sym_u16] = ACTIONS(1521), + [anon_sym_i16] = ACTIONS(1521), + [anon_sym_u32] = ACTIONS(1521), + [anon_sym_i32] = ACTIONS(1521), + [anon_sym_u64] = ACTIONS(1521), + [anon_sym_i64] = ACTIONS(1521), + [anon_sym_u128] = ACTIONS(1521), + [anon_sym_i128] = ACTIONS(1521), + [anon_sym_u256] = ACTIONS(1521), + [anon_sym_i256] = ACTIONS(1521), + [anon_sym_b256] = ACTIONS(1521), + [anon_sym_isize] = ACTIONS(1521), + [anon_sym_usize] = ACTIONS(1521), + [anon_sym_f32] = ACTIONS(1521), + [anon_sym_f64] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_str] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_contract] = ACTIONS(1521), + [anon_sym_script] = ACTIONS(1521), + [anon_sym_predicate] = ACTIONS(1521), + [anon_sym_library] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_abi] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_configurable] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_mod] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_impl] = ACTIONS(1521), + [anon_sym_let] = ACTIONS(1521), + [anon_sym_match] = ACTIONS(1521), + [anon_sym_pub] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_storage] = ACTIONS(1521), + [anon_sym_struct] = ACTIONS(1521), + [anon_sym_trait] = ACTIONS(1521), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_use] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1519), + [aux_sym_string_literal_token1] = ACTIONS(1519), + [sym_char_literal] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1508), - [sym_metavariable] = ACTIONS(1506), - [sym_raw_string_literal] = ACTIONS(1506), - [sym_float_literal] = ACTIONS(1506), + [sym_self] = ACTIONS(1521), + [sym_metavariable] = ACTIONS(1519), + [sym_raw_string_literal] = ACTIONS(1519), + [sym_float_literal] = ACTIONS(1519), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_u8] = ACTIONS(1512), - [anon_sym_i8] = ACTIONS(1512), - [anon_sym_u16] = ACTIONS(1512), - [anon_sym_i16] = ACTIONS(1512), - [anon_sym_u32] = ACTIONS(1512), - [anon_sym_i32] = ACTIONS(1512), - [anon_sym_u64] = ACTIONS(1512), - [anon_sym_i64] = ACTIONS(1512), - [anon_sym_u128] = ACTIONS(1512), - [anon_sym_i128] = ACTIONS(1512), - [anon_sym_isize] = ACTIONS(1512), - [anon_sym_usize] = ACTIONS(1512), - [anon_sym_f32] = ACTIONS(1512), - [anon_sym_f64] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_str] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_contract] = ACTIONS(1512), - [anon_sym_script] = ACTIONS(1512), - [anon_sym_predicate] = ACTIONS(1512), - [anon_sym_library] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_abi] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_configurable] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_dep] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_impl] = ACTIONS(1512), - [anon_sym_let] = ACTIONS(1512), - [anon_sym_match] = ACTIONS(1512), - [anon_sym_pub] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_storage] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_trait] = ACTIONS(1512), - [anon_sym_use] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_COLON_COLON] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1512), - [anon_sym_move] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1510), - [aux_sym_string_literal_token1] = ACTIONS(1510), - [sym_char_literal] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_identifier] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_u8] = ACTIONS(1525), + [anon_sym_i8] = ACTIONS(1525), + [anon_sym_u16] = ACTIONS(1525), + [anon_sym_i16] = ACTIONS(1525), + [anon_sym_u32] = ACTIONS(1525), + [anon_sym_i32] = ACTIONS(1525), + [anon_sym_u64] = ACTIONS(1525), + [anon_sym_i64] = ACTIONS(1525), + [anon_sym_u128] = ACTIONS(1525), + [anon_sym_i128] = ACTIONS(1525), + [anon_sym_u256] = ACTIONS(1525), + [anon_sym_i256] = ACTIONS(1525), + [anon_sym_b256] = ACTIONS(1525), + [anon_sym_isize] = ACTIONS(1525), + [anon_sym_usize] = ACTIONS(1525), + [anon_sym_f32] = ACTIONS(1525), + [anon_sym_f64] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_str] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_contract] = ACTIONS(1525), + [anon_sym_script] = ACTIONS(1525), + [anon_sym_predicate] = ACTIONS(1525), + [anon_sym_library] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1525), + [anon_sym_abi] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_configurable] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_default] = ACTIONS(1525), + [anon_sym_mod] = ACTIONS(1525), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_impl] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_pub] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_storage] = ACTIONS(1525), + [anon_sym_struct] = ACTIONS(1525), + [anon_sym_trait] = ACTIONS(1525), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_yield] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1523), + [aux_sym_string_literal_token1] = ACTIONS(1523), + [sym_char_literal] = ACTIONS(1523), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1512), - [sym_metavariable] = ACTIONS(1510), - [sym_raw_string_literal] = ACTIONS(1510), - [sym_float_literal] = ACTIONS(1510), + [sym_self] = ACTIONS(1525), + [sym_metavariable] = ACTIONS(1523), + [sym_raw_string_literal] = ACTIONS(1523), + [sym_float_literal] = ACTIONS(1523), [sym_block_comment] = ACTIONS(3), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_u8] = ACTIONS(1516), - [anon_sym_i8] = ACTIONS(1516), - [anon_sym_u16] = ACTIONS(1516), - [anon_sym_i16] = ACTIONS(1516), - [anon_sym_u32] = ACTIONS(1516), - [anon_sym_i32] = ACTIONS(1516), - [anon_sym_u64] = ACTIONS(1516), - [anon_sym_i64] = ACTIONS(1516), - [anon_sym_u128] = ACTIONS(1516), - [anon_sym_i128] = ACTIONS(1516), - [anon_sym_isize] = ACTIONS(1516), - [anon_sym_usize] = ACTIONS(1516), - [anon_sym_f32] = ACTIONS(1516), - [anon_sym_f64] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_str] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_contract] = ACTIONS(1516), - [anon_sym_script] = ACTIONS(1516), - [anon_sym_predicate] = ACTIONS(1516), - [anon_sym_library] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_abi] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_configurable] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_dep] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_impl] = ACTIONS(1516), - [anon_sym_let] = ACTIONS(1516), - [anon_sym_match] = ACTIONS(1516), - [anon_sym_pub] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_storage] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_trait] = ACTIONS(1516), - [anon_sym_use] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1516), - [anon_sym_move] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1514), - [aux_sym_string_literal_token1] = ACTIONS(1514), - [sym_char_literal] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_u256] = ACTIONS(1529), + [anon_sym_i256] = ACTIONS(1529), + [anon_sym_b256] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_contract] = ACTIONS(1529), + [anon_sym_script] = ACTIONS(1529), + [anon_sym_predicate] = ACTIONS(1529), + [anon_sym_library] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_abi] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_configurable] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_mod] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_impl] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_pub] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_storage] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_trait] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1516), - [sym_metavariable] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1514), - [sym_float_literal] = ACTIONS(1514), + [sym_self] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym_raw_string_literal] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_u8] = ACTIONS(1520), - [anon_sym_i8] = ACTIONS(1520), - [anon_sym_u16] = ACTIONS(1520), - [anon_sym_i16] = ACTIONS(1520), - [anon_sym_u32] = ACTIONS(1520), - [anon_sym_i32] = ACTIONS(1520), - [anon_sym_u64] = ACTIONS(1520), - [anon_sym_i64] = ACTIONS(1520), - [anon_sym_u128] = ACTIONS(1520), - [anon_sym_i128] = ACTIONS(1520), - [anon_sym_isize] = ACTIONS(1520), - [anon_sym_usize] = ACTIONS(1520), - [anon_sym_f32] = ACTIONS(1520), - [anon_sym_f64] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_str] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_contract] = ACTIONS(1520), - [anon_sym_script] = ACTIONS(1520), - [anon_sym_predicate] = ACTIONS(1520), - [anon_sym_library] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_abi] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_configurable] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_dep] = ACTIONS(1520), - [anon_sym_enum] = ACTIONS(1520), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_impl] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1520), - [anon_sym_match] = ACTIONS(1520), - [anon_sym_pub] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_storage] = ACTIONS(1520), - [anon_sym_struct] = ACTIONS(1520), - [anon_sym_trait] = ACTIONS(1520), - [anon_sym_use] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1520), - [anon_sym_move] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1518), - [aux_sym_string_literal_token1] = ACTIONS(1518), - [sym_char_literal] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), + [ts_builtin_sym_end] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_u8] = ACTIONS(1533), + [anon_sym_i8] = ACTIONS(1533), + [anon_sym_u16] = ACTIONS(1533), + [anon_sym_i16] = ACTIONS(1533), + [anon_sym_u32] = ACTIONS(1533), + [anon_sym_i32] = ACTIONS(1533), + [anon_sym_u64] = ACTIONS(1533), + [anon_sym_i64] = ACTIONS(1533), + [anon_sym_u128] = ACTIONS(1533), + [anon_sym_i128] = ACTIONS(1533), + [anon_sym_u256] = ACTIONS(1533), + [anon_sym_i256] = ACTIONS(1533), + [anon_sym_b256] = ACTIONS(1533), + [anon_sym_isize] = ACTIONS(1533), + [anon_sym_usize] = ACTIONS(1533), + [anon_sym_f32] = ACTIONS(1533), + [anon_sym_f64] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_str] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_contract] = ACTIONS(1533), + [anon_sym_script] = ACTIONS(1533), + [anon_sym_predicate] = ACTIONS(1533), + [anon_sym_library] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1533), + [anon_sym_abi] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_configurable] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_default] = ACTIONS(1533), + [anon_sym_mod] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_impl] = ACTIONS(1533), + [anon_sym_let] = ACTIONS(1533), + [anon_sym_match] = ACTIONS(1533), + [anon_sym_pub] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_storage] = ACTIONS(1533), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_trait] = ACTIONS(1533), + [anon_sym_type] = ACTIONS(1533), + [anon_sym_use] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_yield] = ACTIONS(1533), + [anon_sym_move] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1531), + [aux_sym_string_literal_token1] = ACTIONS(1531), + [sym_char_literal] = ACTIONS(1531), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1520), - [sym_metavariable] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1518), - [sym_float_literal] = ACTIONS(1518), + [sym_self] = ACTIONS(1533), + [sym_metavariable] = ACTIONS(1531), + [sym_raw_string_literal] = ACTIONS(1531), + [sym_float_literal] = ACTIONS(1531), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1522), - [sym_identifier] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_u8] = ACTIONS(1524), - [anon_sym_i8] = ACTIONS(1524), - [anon_sym_u16] = ACTIONS(1524), - [anon_sym_i16] = ACTIONS(1524), - [anon_sym_u32] = ACTIONS(1524), - [anon_sym_i32] = ACTIONS(1524), - [anon_sym_u64] = ACTIONS(1524), - [anon_sym_i64] = ACTIONS(1524), - [anon_sym_u128] = ACTIONS(1524), - [anon_sym_i128] = ACTIONS(1524), - [anon_sym_isize] = ACTIONS(1524), - [anon_sym_usize] = ACTIONS(1524), - [anon_sym_f32] = ACTIONS(1524), - [anon_sym_f64] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_str] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_contract] = ACTIONS(1524), - [anon_sym_script] = ACTIONS(1524), - [anon_sym_predicate] = ACTIONS(1524), - [anon_sym_library] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_abi] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_configurable] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_dep] = ACTIONS(1524), - [anon_sym_enum] = ACTIONS(1524), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_impl] = ACTIONS(1524), - [anon_sym_let] = ACTIONS(1524), - [anon_sym_match] = ACTIONS(1524), - [anon_sym_pub] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_storage] = ACTIONS(1524), - [anon_sym_struct] = ACTIONS(1524), - [anon_sym_trait] = ACTIONS(1524), - [anon_sym_use] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_COLON_COLON] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1524), - [anon_sym_move] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1522), - [aux_sym_string_literal_token1] = ACTIONS(1522), - [sym_char_literal] = ACTIONS(1522), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_identifier] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_u8] = ACTIONS(1537), + [anon_sym_i8] = ACTIONS(1537), + [anon_sym_u16] = ACTIONS(1537), + [anon_sym_i16] = ACTIONS(1537), + [anon_sym_u32] = ACTIONS(1537), + [anon_sym_i32] = ACTIONS(1537), + [anon_sym_u64] = ACTIONS(1537), + [anon_sym_i64] = ACTIONS(1537), + [anon_sym_u128] = ACTIONS(1537), + [anon_sym_i128] = ACTIONS(1537), + [anon_sym_u256] = ACTIONS(1537), + [anon_sym_i256] = ACTIONS(1537), + [anon_sym_b256] = ACTIONS(1537), + [anon_sym_isize] = ACTIONS(1537), + [anon_sym_usize] = ACTIONS(1537), + [anon_sym_f32] = ACTIONS(1537), + [anon_sym_f64] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_str] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_contract] = ACTIONS(1537), + [anon_sym_script] = ACTIONS(1537), + [anon_sym_predicate] = ACTIONS(1537), + [anon_sym_library] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_abi] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_configurable] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_mod] = ACTIONS(1537), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_impl] = ACTIONS(1537), + [anon_sym_let] = ACTIONS(1537), + [anon_sym_match] = ACTIONS(1537), + [anon_sym_pub] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_storage] = ACTIONS(1537), + [anon_sym_struct] = ACTIONS(1537), + [anon_sym_trait] = ACTIONS(1537), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_use] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_POUND] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_move] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1535), + [aux_sym_string_literal_token1] = ACTIONS(1535), + [sym_char_literal] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1524), - [sym_metavariable] = ACTIONS(1522), - [sym_raw_string_literal] = ACTIONS(1522), - [sym_float_literal] = ACTIONS(1522), + [sym_self] = ACTIONS(1537), + [sym_metavariable] = ACTIONS(1535), + [sym_raw_string_literal] = ACTIONS(1535), + [sym_float_literal] = ACTIONS(1535), [sym_block_comment] = ACTIONS(3), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1526), - [sym_identifier] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_u8] = ACTIONS(1528), - [anon_sym_i8] = ACTIONS(1528), - [anon_sym_u16] = ACTIONS(1528), - [anon_sym_i16] = ACTIONS(1528), - [anon_sym_u32] = ACTIONS(1528), - [anon_sym_i32] = ACTIONS(1528), - [anon_sym_u64] = ACTIONS(1528), - [anon_sym_i64] = ACTIONS(1528), - [anon_sym_u128] = ACTIONS(1528), - [anon_sym_i128] = ACTIONS(1528), - [anon_sym_isize] = ACTIONS(1528), - [anon_sym_usize] = ACTIONS(1528), - [anon_sym_f32] = ACTIONS(1528), - [anon_sym_f64] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_str] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_contract] = ACTIONS(1528), - [anon_sym_script] = ACTIONS(1528), - [anon_sym_predicate] = ACTIONS(1528), - [anon_sym_library] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_abi] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_configurable] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1528), - [anon_sym_dep] = ACTIONS(1528), - [anon_sym_enum] = ACTIONS(1528), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_impl] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_pub] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_storage] = ACTIONS(1528), - [anon_sym_struct] = ACTIONS(1528), - [anon_sym_trait] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1526), - [anon_sym_COLON_COLON] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1528), - [anon_sym_move] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1526), - [aux_sym_string_literal_token1] = ACTIONS(1526), - [sym_char_literal] = ACTIONS(1526), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_u8] = ACTIONS(1541), + [anon_sym_i8] = ACTIONS(1541), + [anon_sym_u16] = ACTIONS(1541), + [anon_sym_i16] = ACTIONS(1541), + [anon_sym_u32] = ACTIONS(1541), + [anon_sym_i32] = ACTIONS(1541), + [anon_sym_u64] = ACTIONS(1541), + [anon_sym_i64] = ACTIONS(1541), + [anon_sym_u128] = ACTIONS(1541), + [anon_sym_i128] = ACTIONS(1541), + [anon_sym_u256] = ACTIONS(1541), + [anon_sym_i256] = ACTIONS(1541), + [anon_sym_b256] = ACTIONS(1541), + [anon_sym_isize] = ACTIONS(1541), + [anon_sym_usize] = ACTIONS(1541), + [anon_sym_f32] = ACTIONS(1541), + [anon_sym_f64] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_str] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_contract] = ACTIONS(1541), + [anon_sym_script] = ACTIONS(1541), + [anon_sym_predicate] = ACTIONS(1541), + [anon_sym_library] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_abi] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_configurable] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_mod] = ACTIONS(1541), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_impl] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1541), + [anon_sym_match] = ACTIONS(1541), + [anon_sym_pub] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_storage] = ACTIONS(1541), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_trait] = ACTIONS(1541), + [anon_sym_type] = ACTIONS(1541), + [anon_sym_use] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_yield] = ACTIONS(1541), + [anon_sym_move] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1539), + [aux_sym_string_literal_token1] = ACTIONS(1539), + [sym_char_literal] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1526), - [sym_raw_string_literal] = ACTIONS(1526), - [sym_float_literal] = ACTIONS(1526), + [sym_self] = ACTIONS(1541), + [sym_metavariable] = ACTIONS(1539), + [sym_raw_string_literal] = ACTIONS(1539), + [sym_float_literal] = ACTIONS(1539), [sym_block_comment] = ACTIONS(3), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_identifier] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_contract] = ACTIONS(1532), - [anon_sym_script] = ACTIONS(1532), - [anon_sym_predicate] = ACTIONS(1532), - [anon_sym_library] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_abi] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_configurable] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_default] = ACTIONS(1532), - [anon_sym_dep] = ACTIONS(1532), - [anon_sym_enum] = ACTIONS(1532), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_impl] = ACTIONS(1532), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_match] = ACTIONS(1532), - [anon_sym_pub] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_storage] = ACTIONS(1532), - [anon_sym_struct] = ACTIONS(1532), - [anon_sym_trait] = ACTIONS(1532), - [anon_sym_use] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_POUND] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_COLON_COLON] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_yield] = ACTIONS(1532), - [anon_sym_move] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1530), - [aux_sym_string_literal_token1] = ACTIONS(1530), - [sym_char_literal] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1545), + [anon_sym_i8] = ACTIONS(1545), + [anon_sym_u16] = ACTIONS(1545), + [anon_sym_i16] = ACTIONS(1545), + [anon_sym_u32] = ACTIONS(1545), + [anon_sym_i32] = ACTIONS(1545), + [anon_sym_u64] = ACTIONS(1545), + [anon_sym_i64] = ACTIONS(1545), + [anon_sym_u128] = ACTIONS(1545), + [anon_sym_i128] = ACTIONS(1545), + [anon_sym_u256] = ACTIONS(1545), + [anon_sym_i256] = ACTIONS(1545), + [anon_sym_b256] = ACTIONS(1545), + [anon_sym_isize] = ACTIONS(1545), + [anon_sym_usize] = ACTIONS(1545), + [anon_sym_f32] = ACTIONS(1545), + [anon_sym_f64] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_str] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_contract] = ACTIONS(1545), + [anon_sym_script] = ACTIONS(1545), + [anon_sym_predicate] = ACTIONS(1545), + [anon_sym_library] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1545), + [anon_sym_abi] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_configurable] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_pub] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_storage] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_trait] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_COLON_COLON] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_move] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1543), + [aux_sym_string_literal_token1] = ACTIONS(1543), + [sym_char_literal] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1532), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(1530), - [sym_float_literal] = ACTIONS(1530), + [sym_self] = ACTIONS(1545), + [sym_metavariable] = ACTIONS(1543), + [sym_raw_string_literal] = ACTIONS(1543), + [sym_float_literal] = ACTIONS(1543), [sym_block_comment] = ACTIONS(3), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1534), - [sym_identifier] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_u8] = ACTIONS(1536), - [anon_sym_i8] = ACTIONS(1536), - [anon_sym_u16] = ACTIONS(1536), - [anon_sym_i16] = ACTIONS(1536), - [anon_sym_u32] = ACTIONS(1536), - [anon_sym_i32] = ACTIONS(1536), - [anon_sym_u64] = ACTIONS(1536), - [anon_sym_i64] = ACTIONS(1536), - [anon_sym_u128] = ACTIONS(1536), - [anon_sym_i128] = ACTIONS(1536), - [anon_sym_isize] = ACTIONS(1536), - [anon_sym_usize] = ACTIONS(1536), - [anon_sym_f32] = ACTIONS(1536), - [anon_sym_f64] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_str] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1534), - [anon_sym_contract] = ACTIONS(1536), - [anon_sym_script] = ACTIONS(1536), - [anon_sym_predicate] = ACTIONS(1536), - [anon_sym_library] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1536), - [anon_sym_abi] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_configurable] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_dep] = ACTIONS(1536), - [anon_sym_enum] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_impl] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_pub] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_storage] = ACTIONS(1536), - [anon_sym_struct] = ACTIONS(1536), - [anon_sym_trait] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1536), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_COLON_COLON] = ACTIONS(1534), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), - [anon_sym_DOT_DOT] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_yield] = ACTIONS(1536), - [anon_sym_move] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1534), - [aux_sym_string_literal_token1] = ACTIONS(1534), - [sym_char_literal] = ACTIONS(1534), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_u8] = ACTIONS(1549), + [anon_sym_i8] = ACTIONS(1549), + [anon_sym_u16] = ACTIONS(1549), + [anon_sym_i16] = ACTIONS(1549), + [anon_sym_u32] = ACTIONS(1549), + [anon_sym_i32] = ACTIONS(1549), + [anon_sym_u64] = ACTIONS(1549), + [anon_sym_i64] = ACTIONS(1549), + [anon_sym_u128] = ACTIONS(1549), + [anon_sym_i128] = ACTIONS(1549), + [anon_sym_u256] = ACTIONS(1549), + [anon_sym_i256] = ACTIONS(1549), + [anon_sym_b256] = ACTIONS(1549), + [anon_sym_isize] = ACTIONS(1549), + [anon_sym_usize] = ACTIONS(1549), + [anon_sym_f32] = ACTIONS(1549), + [anon_sym_f64] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_str] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_contract] = ACTIONS(1549), + [anon_sym_script] = ACTIONS(1549), + [anon_sym_predicate] = ACTIONS(1549), + [anon_sym_library] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [anon_sym_abi] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_configurable] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_mod] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_impl] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1549), + [anon_sym_pub] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_storage] = ACTIONS(1549), + [anon_sym_struct] = ACTIONS(1549), + [anon_sym_trait] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_use] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_POUND] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_COLON_COLON] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_move] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1547), + [aux_sym_string_literal_token1] = ACTIONS(1547), + [sym_char_literal] = ACTIONS(1547), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1534), - [sym_raw_string_literal] = ACTIONS(1534), - [sym_float_literal] = ACTIONS(1534), + [sym_self] = ACTIONS(1549), + [sym_metavariable] = ACTIONS(1547), + [sym_raw_string_literal] = ACTIONS(1547), + [sym_float_literal] = ACTIONS(1547), [sym_block_comment] = ACTIONS(3), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_u8] = ACTIONS(1540), - [anon_sym_i8] = ACTIONS(1540), - [anon_sym_u16] = ACTIONS(1540), - [anon_sym_i16] = ACTIONS(1540), - [anon_sym_u32] = ACTIONS(1540), - [anon_sym_i32] = ACTIONS(1540), - [anon_sym_u64] = ACTIONS(1540), - [anon_sym_i64] = ACTIONS(1540), - [anon_sym_u128] = ACTIONS(1540), - [anon_sym_i128] = ACTIONS(1540), - [anon_sym_isize] = ACTIONS(1540), - [anon_sym_usize] = ACTIONS(1540), - [anon_sym_f32] = ACTIONS(1540), - [anon_sym_f64] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_str] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_contract] = ACTIONS(1540), - [anon_sym_script] = ACTIONS(1540), - [anon_sym_predicate] = ACTIONS(1540), - [anon_sym_library] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_abi] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_configurable] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_dep] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_impl] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_pub] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_storage] = ACTIONS(1540), - [anon_sym_struct] = ACTIONS(1540), - [anon_sym_trait] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_yield] = ACTIONS(1540), - [anon_sym_move] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1538), - [aux_sym_string_literal_token1] = ACTIONS(1538), - [sym_char_literal] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_u256] = ACTIONS(1553), + [anon_sym_i256] = ACTIONS(1553), + [anon_sym_b256] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_contract] = ACTIONS(1553), + [anon_sym_script] = ACTIONS(1553), + [anon_sym_predicate] = ACTIONS(1553), + [anon_sym_library] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_abi] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_configurable] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_mod] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_impl] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_pub] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_storage] = ACTIONS(1553), + [anon_sym_struct] = ACTIONS(1553), + [anon_sym_trait] = ACTIONS(1553), + [anon_sym_type] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_move] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1551), + [aux_sym_string_literal_token1] = ACTIONS(1551), + [sym_char_literal] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(1538), - [sym_float_literal] = ACTIONS(1538), + [sym_self] = ACTIONS(1553), + [sym_metavariable] = ACTIONS(1551), + [sym_raw_string_literal] = ACTIONS(1551), + [sym_float_literal] = ACTIONS(1551), [sym_block_comment] = ACTIONS(3), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_u8] = ACTIONS(1544), - [anon_sym_i8] = ACTIONS(1544), - [anon_sym_u16] = ACTIONS(1544), - [anon_sym_i16] = ACTIONS(1544), - [anon_sym_u32] = ACTIONS(1544), - [anon_sym_i32] = ACTIONS(1544), - [anon_sym_u64] = ACTIONS(1544), - [anon_sym_i64] = ACTIONS(1544), - [anon_sym_u128] = ACTIONS(1544), - [anon_sym_i128] = ACTIONS(1544), - [anon_sym_isize] = ACTIONS(1544), - [anon_sym_usize] = ACTIONS(1544), - [anon_sym_f32] = ACTIONS(1544), - [anon_sym_f64] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_str] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_contract] = ACTIONS(1544), - [anon_sym_script] = ACTIONS(1544), - [anon_sym_predicate] = ACTIONS(1544), - [anon_sym_library] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1544), - [anon_sym_abi] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_configurable] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_dep] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(1544), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_impl] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_pub] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_storage] = ACTIONS(1544), - [anon_sym_struct] = ACTIONS(1544), - [anon_sym_trait] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_move] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1542), - [aux_sym_string_literal_token1] = ACTIONS(1542), - [sym_char_literal] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), + [ts_builtin_sym_end] = ACTIONS(1555), + [sym_identifier] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_u8] = ACTIONS(1557), + [anon_sym_i8] = ACTIONS(1557), + [anon_sym_u16] = ACTIONS(1557), + [anon_sym_i16] = ACTIONS(1557), + [anon_sym_u32] = ACTIONS(1557), + [anon_sym_i32] = ACTIONS(1557), + [anon_sym_u64] = ACTIONS(1557), + [anon_sym_i64] = ACTIONS(1557), + [anon_sym_u128] = ACTIONS(1557), + [anon_sym_i128] = ACTIONS(1557), + [anon_sym_u256] = ACTIONS(1557), + [anon_sym_i256] = ACTIONS(1557), + [anon_sym_b256] = ACTIONS(1557), + [anon_sym_isize] = ACTIONS(1557), + [anon_sym_usize] = ACTIONS(1557), + [anon_sym_f32] = ACTIONS(1557), + [anon_sym_f64] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_str] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_contract] = ACTIONS(1557), + [anon_sym_script] = ACTIONS(1557), + [anon_sym_predicate] = ACTIONS(1557), + [anon_sym_library] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1557), + [anon_sym_abi] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_configurable] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_mod] = ACTIONS(1557), + [anon_sym_enum] = ACTIONS(1557), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_impl] = ACTIONS(1557), + [anon_sym_let] = ACTIONS(1557), + [anon_sym_match] = ACTIONS(1557), + [anon_sym_pub] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_storage] = ACTIONS(1557), + [anon_sym_struct] = ACTIONS(1557), + [anon_sym_trait] = ACTIONS(1557), + [anon_sym_type] = ACTIONS(1557), + [anon_sym_use] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_yield] = ACTIONS(1557), + [anon_sym_move] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1555), + [aux_sym_string_literal_token1] = ACTIONS(1555), + [sym_char_literal] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1544), - [sym_metavariable] = ACTIONS(1542), - [sym_raw_string_literal] = ACTIONS(1542), - [sym_float_literal] = ACTIONS(1542), + [sym_self] = ACTIONS(1557), + [sym_metavariable] = ACTIONS(1555), + [sym_raw_string_literal] = ACTIONS(1555), + [sym_float_literal] = ACTIONS(1555), [sym_block_comment] = ACTIONS(3), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_u8] = ACTIONS(1548), - [anon_sym_i8] = ACTIONS(1548), - [anon_sym_u16] = ACTIONS(1548), - [anon_sym_i16] = ACTIONS(1548), - [anon_sym_u32] = ACTIONS(1548), - [anon_sym_i32] = ACTIONS(1548), - [anon_sym_u64] = ACTIONS(1548), - [anon_sym_i64] = ACTIONS(1548), - [anon_sym_u128] = ACTIONS(1548), - [anon_sym_i128] = ACTIONS(1548), - [anon_sym_isize] = ACTIONS(1548), - [anon_sym_usize] = ACTIONS(1548), - [anon_sym_f32] = ACTIONS(1548), - [anon_sym_f64] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_str] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_contract] = ACTIONS(1548), - [anon_sym_script] = ACTIONS(1548), - [anon_sym_predicate] = ACTIONS(1548), - [anon_sym_library] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_abi] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_configurable] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_dep] = ACTIONS(1548), - [anon_sym_enum] = ACTIONS(1548), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_impl] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_pub] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_storage] = ACTIONS(1548), - [anon_sym_struct] = ACTIONS(1548), - [anon_sym_trait] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_POUND] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_asm] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_COLON_COLON] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1548), - [anon_sym_move] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1546), - [aux_sym_string_literal_token1] = ACTIONS(1546), - [sym_char_literal] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), + [ts_builtin_sym_end] = ACTIONS(1559), + [sym_identifier] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_u8] = ACTIONS(1561), + [anon_sym_i8] = ACTIONS(1561), + [anon_sym_u16] = ACTIONS(1561), + [anon_sym_i16] = ACTIONS(1561), + [anon_sym_u32] = ACTIONS(1561), + [anon_sym_i32] = ACTIONS(1561), + [anon_sym_u64] = ACTIONS(1561), + [anon_sym_i64] = ACTIONS(1561), + [anon_sym_u128] = ACTIONS(1561), + [anon_sym_i128] = ACTIONS(1561), + [anon_sym_u256] = ACTIONS(1561), + [anon_sym_i256] = ACTIONS(1561), + [anon_sym_b256] = ACTIONS(1561), + [anon_sym_isize] = ACTIONS(1561), + [anon_sym_usize] = ACTIONS(1561), + [anon_sym_f32] = ACTIONS(1561), + [anon_sym_f64] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_str] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_contract] = ACTIONS(1561), + [anon_sym_script] = ACTIONS(1561), + [anon_sym_predicate] = ACTIONS(1561), + [anon_sym_library] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_abi] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_configurable] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_default] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_enum] = ACTIONS(1561), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_impl] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_match] = ACTIONS(1561), + [anon_sym_pub] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_storage] = ACTIONS(1561), + [anon_sym_struct] = ACTIONS(1561), + [anon_sym_trait] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_use] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_POUND] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_COLON_COLON] = ACTIONS(1559), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_DOT_DOT] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_yield] = ACTIONS(1561), + [anon_sym_move] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1559), + [aux_sym_string_literal_token1] = ACTIONS(1559), + [sym_char_literal] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1548), - [sym_metavariable] = ACTIONS(1546), - [sym_raw_string_literal] = ACTIONS(1546), - [sym_float_literal] = ACTIONS(1546), + [sym_self] = ACTIONS(1561), + [sym_metavariable] = ACTIONS(1559), + [sym_raw_string_literal] = ACTIONS(1559), + [sym_float_literal] = ACTIONS(1559), [sym_block_comment] = ACTIONS(3), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1550), - [sym_identifier] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_contract] = ACTIONS(1552), - [anon_sym_script] = ACTIONS(1552), - [anon_sym_predicate] = ACTIONS(1552), - [anon_sym_library] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), - [anon_sym_abi] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_configurable] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1552), - [anon_sym_dep] = ACTIONS(1552), - [anon_sym_enum] = ACTIONS(1552), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_impl] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(1552), - [anon_sym_match] = ACTIONS(1552), - [anon_sym_pub] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_storage] = ACTIONS(1552), - [anon_sym_struct] = ACTIONS(1552), - [anon_sym_trait] = ACTIONS(1552), - [anon_sym_use] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_asm] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_COLON_COLON] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_yield] = ACTIONS(1552), - [anon_sym_move] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1550), - [aux_sym_string_literal_token1] = ACTIONS(1550), - [sym_char_literal] = ACTIONS(1550), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), + [ts_builtin_sym_end] = ACTIONS(1563), + [sym_identifier] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_u8] = ACTIONS(1565), + [anon_sym_i8] = ACTIONS(1565), + [anon_sym_u16] = ACTIONS(1565), + [anon_sym_i16] = ACTIONS(1565), + [anon_sym_u32] = ACTIONS(1565), + [anon_sym_i32] = ACTIONS(1565), + [anon_sym_u64] = ACTIONS(1565), + [anon_sym_i64] = ACTIONS(1565), + [anon_sym_u128] = ACTIONS(1565), + [anon_sym_i128] = ACTIONS(1565), + [anon_sym_u256] = ACTIONS(1565), + [anon_sym_i256] = ACTIONS(1565), + [anon_sym_b256] = ACTIONS(1565), + [anon_sym_isize] = ACTIONS(1565), + [anon_sym_usize] = ACTIONS(1565), + [anon_sym_f32] = ACTIONS(1565), + [anon_sym_f64] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_str] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_contract] = ACTIONS(1565), + [anon_sym_script] = ACTIONS(1565), + [anon_sym_predicate] = ACTIONS(1565), + [anon_sym_library] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1565), + [anon_sym_abi] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_configurable] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_default] = ACTIONS(1565), + [anon_sym_mod] = ACTIONS(1565), + [anon_sym_enum] = ACTIONS(1565), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_impl] = ACTIONS(1565), + [anon_sym_let] = ACTIONS(1565), + [anon_sym_match] = ACTIONS(1565), + [anon_sym_pub] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_storage] = ACTIONS(1565), + [anon_sym_struct] = ACTIONS(1565), + [anon_sym_trait] = ACTIONS(1565), + [anon_sym_type] = ACTIONS(1565), + [anon_sym_use] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1563), + [anon_sym_COLON_COLON] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_yield] = ACTIONS(1565), + [anon_sym_move] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1563), + [aux_sym_string_literal_token1] = ACTIONS(1563), + [sym_char_literal] = ACTIONS(1563), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1552), - [sym_metavariable] = ACTIONS(1550), - [sym_raw_string_literal] = ACTIONS(1550), - [sym_float_literal] = ACTIONS(1550), + [sym_self] = ACTIONS(1565), + [sym_metavariable] = ACTIONS(1563), + [sym_raw_string_literal] = ACTIONS(1563), + [sym_float_literal] = ACTIONS(1563), [sym_block_comment] = ACTIONS(3), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_u8] = ACTIONS(1556), - [anon_sym_i8] = ACTIONS(1556), - [anon_sym_u16] = ACTIONS(1556), - [anon_sym_i16] = ACTIONS(1556), - [anon_sym_u32] = ACTIONS(1556), - [anon_sym_i32] = ACTIONS(1556), - [anon_sym_u64] = ACTIONS(1556), - [anon_sym_i64] = ACTIONS(1556), - [anon_sym_u128] = ACTIONS(1556), - [anon_sym_i128] = ACTIONS(1556), - [anon_sym_isize] = ACTIONS(1556), - [anon_sym_usize] = ACTIONS(1556), - [anon_sym_f32] = ACTIONS(1556), - [anon_sym_f64] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_str] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_contract] = ACTIONS(1556), - [anon_sym_script] = ACTIONS(1556), - [anon_sym_predicate] = ACTIONS(1556), - [anon_sym_library] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_abi] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_configurable] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_dep] = ACTIONS(1556), - [anon_sym_enum] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_impl] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_pub] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_storage] = ACTIONS(1556), - [anon_sym_struct] = ACTIONS(1556), - [anon_sym_trait] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_asm] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_COLON_COLON] = ACTIONS(1554), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_yield] = ACTIONS(1556), - [anon_sym_move] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1554), - [aux_sym_string_literal_token1] = ACTIONS(1554), - [sym_char_literal] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1569), + [anon_sym_i8] = ACTIONS(1569), + [anon_sym_u16] = ACTIONS(1569), + [anon_sym_i16] = ACTIONS(1569), + [anon_sym_u32] = ACTIONS(1569), + [anon_sym_i32] = ACTIONS(1569), + [anon_sym_u64] = ACTIONS(1569), + [anon_sym_i64] = ACTIONS(1569), + [anon_sym_u128] = ACTIONS(1569), + [anon_sym_i128] = ACTIONS(1569), + [anon_sym_u256] = ACTIONS(1569), + [anon_sym_i256] = ACTIONS(1569), + [anon_sym_b256] = ACTIONS(1569), + [anon_sym_isize] = ACTIONS(1569), + [anon_sym_usize] = ACTIONS(1569), + [anon_sym_f32] = ACTIONS(1569), + [anon_sym_f64] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_str] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_contract] = ACTIONS(1569), + [anon_sym_script] = ACTIONS(1569), + [anon_sym_predicate] = ACTIONS(1569), + [anon_sym_library] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_abi] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_configurable] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1569), + [anon_sym_mod] = ACTIONS(1569), + [anon_sym_enum] = ACTIONS(1569), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_impl] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_pub] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_storage] = ACTIONS(1569), + [anon_sym_struct] = ACTIONS(1569), + [anon_sym_trait] = ACTIONS(1569), + [anon_sym_type] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_COLON_COLON] = ACTIONS(1567), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_move] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1567), + [aux_sym_string_literal_token1] = ACTIONS(1567), + [sym_char_literal] = ACTIONS(1567), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1556), - [sym_metavariable] = ACTIONS(1554), - [sym_raw_string_literal] = ACTIONS(1554), - [sym_float_literal] = ACTIONS(1554), + [sym_self] = ACTIONS(1569), + [sym_metavariable] = ACTIONS(1567), + [sym_raw_string_literal] = ACTIONS(1567), + [sym_float_literal] = ACTIONS(1567), [sym_block_comment] = ACTIONS(3), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(1558), - [sym_identifier] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_u8] = ACTIONS(1560), - [anon_sym_i8] = ACTIONS(1560), - [anon_sym_u16] = ACTIONS(1560), - [anon_sym_i16] = ACTIONS(1560), - [anon_sym_u32] = ACTIONS(1560), - [anon_sym_i32] = ACTIONS(1560), - [anon_sym_u64] = ACTIONS(1560), - [anon_sym_i64] = ACTIONS(1560), - [anon_sym_u128] = ACTIONS(1560), - [anon_sym_i128] = ACTIONS(1560), - [anon_sym_isize] = ACTIONS(1560), - [anon_sym_usize] = ACTIONS(1560), - [anon_sym_f32] = ACTIONS(1560), - [anon_sym_f64] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_str] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_contract] = ACTIONS(1560), - [anon_sym_script] = ACTIONS(1560), - [anon_sym_predicate] = ACTIONS(1560), - [anon_sym_library] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1560), - [anon_sym_abi] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_configurable] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_dep] = ACTIONS(1560), - [anon_sym_enum] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_impl] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_pub] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_storage] = ACTIONS(1560), - [anon_sym_struct] = ACTIONS(1560), - [anon_sym_trait] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_asm] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1558), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1558), - [anon_sym_DOT_DOT] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_yield] = ACTIONS(1560), - [anon_sym_move] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1558), - [aux_sym_string_literal_token1] = ACTIONS(1558), - [sym_char_literal] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_u8] = ACTIONS(1573), + [anon_sym_i8] = ACTIONS(1573), + [anon_sym_u16] = ACTIONS(1573), + [anon_sym_i16] = ACTIONS(1573), + [anon_sym_u32] = ACTIONS(1573), + [anon_sym_i32] = ACTIONS(1573), + [anon_sym_u64] = ACTIONS(1573), + [anon_sym_i64] = ACTIONS(1573), + [anon_sym_u128] = ACTIONS(1573), + [anon_sym_i128] = ACTIONS(1573), + [anon_sym_u256] = ACTIONS(1573), + [anon_sym_i256] = ACTIONS(1573), + [anon_sym_b256] = ACTIONS(1573), + [anon_sym_isize] = ACTIONS(1573), + [anon_sym_usize] = ACTIONS(1573), + [anon_sym_f32] = ACTIONS(1573), + [anon_sym_f64] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_str] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_contract] = ACTIONS(1573), + [anon_sym_script] = ACTIONS(1573), + [anon_sym_predicate] = ACTIONS(1573), + [anon_sym_library] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1573), + [anon_sym_abi] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_configurable] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1573), + [anon_sym_enum] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1573), + [anon_sym_pub] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_storage] = ACTIONS(1573), + [anon_sym_struct] = ACTIONS(1573), + [anon_sym_trait] = ACTIONS(1573), + [anon_sym_type] = ACTIONS(1573), + [anon_sym_use] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_COLON_COLON] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_yield] = ACTIONS(1573), + [anon_sym_move] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1571), + [aux_sym_string_literal_token1] = ACTIONS(1571), + [sym_char_literal] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1560), - [sym_metavariable] = ACTIONS(1558), - [sym_raw_string_literal] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1558), + [sym_self] = ACTIONS(1573), + [sym_metavariable] = ACTIONS(1571), + [sym_raw_string_literal] = ACTIONS(1571), + [sym_float_literal] = ACTIONS(1571), [sym_block_comment] = ACTIONS(3), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1562), - [sym_identifier] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_u8] = ACTIONS(1564), - [anon_sym_i8] = ACTIONS(1564), - [anon_sym_u16] = ACTIONS(1564), - [anon_sym_i16] = ACTIONS(1564), - [anon_sym_u32] = ACTIONS(1564), - [anon_sym_i32] = ACTIONS(1564), - [anon_sym_u64] = ACTIONS(1564), - [anon_sym_i64] = ACTIONS(1564), - [anon_sym_u128] = ACTIONS(1564), - [anon_sym_i128] = ACTIONS(1564), - [anon_sym_isize] = ACTIONS(1564), - [anon_sym_usize] = ACTIONS(1564), - [anon_sym_f32] = ACTIONS(1564), - [anon_sym_f64] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_str] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_contract] = ACTIONS(1564), - [anon_sym_script] = ACTIONS(1564), - [anon_sym_predicate] = ACTIONS(1564), - [anon_sym_library] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1564), - [anon_sym_abi] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_configurable] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_dep] = ACTIONS(1564), - [anon_sym_enum] = ACTIONS(1564), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_impl] = ACTIONS(1564), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1564), - [anon_sym_pub] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_storage] = ACTIONS(1564), - [anon_sym_struct] = ACTIONS(1564), - [anon_sym_trait] = ACTIONS(1564), - [anon_sym_use] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_asm] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_COLON_COLON] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_yield] = ACTIONS(1564), - [anon_sym_move] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [aux_sym_string_literal_token1] = ACTIONS(1562), - [sym_char_literal] = ACTIONS(1562), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym_identifier] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_u8] = ACTIONS(1577), + [anon_sym_i8] = ACTIONS(1577), + [anon_sym_u16] = ACTIONS(1577), + [anon_sym_i16] = ACTIONS(1577), + [anon_sym_u32] = ACTIONS(1577), + [anon_sym_i32] = ACTIONS(1577), + [anon_sym_u64] = ACTIONS(1577), + [anon_sym_i64] = ACTIONS(1577), + [anon_sym_u128] = ACTIONS(1577), + [anon_sym_i128] = ACTIONS(1577), + [anon_sym_u256] = ACTIONS(1577), + [anon_sym_i256] = ACTIONS(1577), + [anon_sym_b256] = ACTIONS(1577), + [anon_sym_isize] = ACTIONS(1577), + [anon_sym_usize] = ACTIONS(1577), + [anon_sym_f32] = ACTIONS(1577), + [anon_sym_f64] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_str] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_contract] = ACTIONS(1577), + [anon_sym_script] = ACTIONS(1577), + [anon_sym_predicate] = ACTIONS(1577), + [anon_sym_library] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1577), + [anon_sym_abi] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_configurable] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_default] = ACTIONS(1577), + [anon_sym_mod] = ACTIONS(1577), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_impl] = ACTIONS(1577), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_match] = ACTIONS(1577), + [anon_sym_pub] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_storage] = ACTIONS(1577), + [anon_sym_struct] = ACTIONS(1577), + [anon_sym_trait] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_use] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_POUND] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_COLON_COLON] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_yield] = ACTIONS(1577), + [anon_sym_move] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1575), + [aux_sym_string_literal_token1] = ACTIONS(1575), + [sym_char_literal] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1564), - [sym_metavariable] = ACTIONS(1562), - [sym_raw_string_literal] = ACTIONS(1562), - [sym_float_literal] = ACTIONS(1562), + [sym_self] = ACTIONS(1577), + [sym_metavariable] = ACTIONS(1575), + [sym_raw_string_literal] = ACTIONS(1575), + [sym_float_literal] = ACTIONS(1575), [sym_block_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [sym_identifier] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_contract] = ACTIONS(1568), - [anon_sym_script] = ACTIONS(1568), - [anon_sym_predicate] = ACTIONS(1568), - [anon_sym_library] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1568), - [anon_sym_abi] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_configurable] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1568), - [anon_sym_dep] = ACTIONS(1568), - [anon_sym_enum] = ACTIONS(1568), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_impl] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [anon_sym_pub] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_storage] = ACTIONS(1568), - [anon_sym_struct] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_use] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_POUND] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_asm] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_COLON_COLON] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1566), - [anon_sym_DOT_DOT] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_yield] = ACTIONS(1568), - [anon_sym_move] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1566), - [aux_sym_string_literal_token1] = ACTIONS(1566), - [sym_char_literal] = ACTIONS(1566), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_u8] = ACTIONS(1581), + [anon_sym_i8] = ACTIONS(1581), + [anon_sym_u16] = ACTIONS(1581), + [anon_sym_i16] = ACTIONS(1581), + [anon_sym_u32] = ACTIONS(1581), + [anon_sym_i32] = ACTIONS(1581), + [anon_sym_u64] = ACTIONS(1581), + [anon_sym_i64] = ACTIONS(1581), + [anon_sym_u128] = ACTIONS(1581), + [anon_sym_i128] = ACTIONS(1581), + [anon_sym_u256] = ACTIONS(1581), + [anon_sym_i256] = ACTIONS(1581), + [anon_sym_b256] = ACTIONS(1581), + [anon_sym_isize] = ACTIONS(1581), + [anon_sym_usize] = ACTIONS(1581), + [anon_sym_f32] = ACTIONS(1581), + [anon_sym_f64] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_str] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_contract] = ACTIONS(1581), + [anon_sym_script] = ACTIONS(1581), + [anon_sym_predicate] = ACTIONS(1581), + [anon_sym_library] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1581), + [anon_sym_abi] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_configurable] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_enum] = ACTIONS(1581), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_impl] = ACTIONS(1581), + [anon_sym_let] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_pub] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_storage] = ACTIONS(1581), + [anon_sym_struct] = ACTIONS(1581), + [anon_sym_trait] = ACTIONS(1581), + [anon_sym_type] = ACTIONS(1581), + [anon_sym_use] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1579), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_yield] = ACTIONS(1581), + [anon_sym_move] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1579), + [aux_sym_string_literal_token1] = ACTIONS(1579), + [sym_char_literal] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1568), - [sym_metavariable] = ACTIONS(1566), - [sym_raw_string_literal] = ACTIONS(1566), - [sym_float_literal] = ACTIONS(1566), + [sym_self] = ACTIONS(1581), + [sym_metavariable] = ACTIONS(1579), + [sym_raw_string_literal] = ACTIONS(1579), + [sym_float_literal] = ACTIONS(1579), [sym_block_comment] = ACTIONS(3), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_u8] = ACTIONS(1572), - [anon_sym_i8] = ACTIONS(1572), - [anon_sym_u16] = ACTIONS(1572), - [anon_sym_i16] = ACTIONS(1572), - [anon_sym_u32] = ACTIONS(1572), - [anon_sym_i32] = ACTIONS(1572), - [anon_sym_u64] = ACTIONS(1572), - [anon_sym_i64] = ACTIONS(1572), - [anon_sym_u128] = ACTIONS(1572), - [anon_sym_i128] = ACTIONS(1572), - [anon_sym_isize] = ACTIONS(1572), - [anon_sym_usize] = ACTIONS(1572), - [anon_sym_f32] = ACTIONS(1572), - [anon_sym_f64] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_str] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_contract] = ACTIONS(1572), - [anon_sym_script] = ACTIONS(1572), - [anon_sym_predicate] = ACTIONS(1572), - [anon_sym_library] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1572), - [anon_sym_abi] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_configurable] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_default] = ACTIONS(1572), - [anon_sym_dep] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1572), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_impl] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(1572), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_pub] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_storage] = ACTIONS(1572), - [anon_sym_struct] = ACTIONS(1572), - [anon_sym_trait] = ACTIONS(1572), - [anon_sym_use] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(1570), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_asm] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1570), - [anon_sym_COLON_COLON] = ACTIONS(1570), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1570), - [aux_sym_string_literal_token1] = ACTIONS(1570), - [sym_char_literal] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_identifier] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_u256] = ACTIONS(1585), + [anon_sym_i256] = ACTIONS(1585), + [anon_sym_b256] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_contract] = ACTIONS(1585), + [anon_sym_script] = ACTIONS(1585), + [anon_sym_predicate] = ACTIONS(1585), + [anon_sym_library] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_abi] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_configurable] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1585), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_impl] = ACTIONS(1585), + [anon_sym_let] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_pub] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_storage] = ACTIONS(1585), + [anon_sym_struct] = ACTIONS(1585), + [anon_sym_trait] = ACTIONS(1585), + [anon_sym_type] = ACTIONS(1585), + [anon_sym_use] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_COLON_COLON] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_move] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1583), + [aux_sym_string_literal_token1] = ACTIONS(1583), + [sym_char_literal] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1572), - [sym_metavariable] = ACTIONS(1570), - [sym_raw_string_literal] = ACTIONS(1570), - [sym_float_literal] = ACTIONS(1570), + [sym_self] = ACTIONS(1585), + [sym_metavariable] = ACTIONS(1583), + [sym_raw_string_literal] = ACTIONS(1583), + [sym_float_literal] = ACTIONS(1583), [sym_block_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1574), - [sym_identifier] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_u8] = ACTIONS(1576), - [anon_sym_i8] = ACTIONS(1576), - [anon_sym_u16] = ACTIONS(1576), - [anon_sym_i16] = ACTIONS(1576), - [anon_sym_u32] = ACTIONS(1576), - [anon_sym_i32] = ACTIONS(1576), - [anon_sym_u64] = ACTIONS(1576), - [anon_sym_i64] = ACTIONS(1576), - [anon_sym_u128] = ACTIONS(1576), - [anon_sym_i128] = ACTIONS(1576), - [anon_sym_isize] = ACTIONS(1576), - [anon_sym_usize] = ACTIONS(1576), - [anon_sym_f32] = ACTIONS(1576), - [anon_sym_f64] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_str] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_contract] = ACTIONS(1576), - [anon_sym_script] = ACTIONS(1576), - [anon_sym_predicate] = ACTIONS(1576), - [anon_sym_library] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1576), - [anon_sym_abi] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_configurable] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_dep] = ACTIONS(1576), - [anon_sym_enum] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_impl] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_pub] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_storage] = ACTIONS(1576), - [anon_sym_struct] = ACTIONS(1576), - [anon_sym_trait] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(1574), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_asm] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_DOT_DOT] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_yield] = ACTIONS(1576), - [anon_sym_move] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1574), - [aux_sym_string_literal_token1] = ACTIONS(1574), - [sym_char_literal] = ACTIONS(1574), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym_identifier] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_u8] = ACTIONS(1589), + [anon_sym_i8] = ACTIONS(1589), + [anon_sym_u16] = ACTIONS(1589), + [anon_sym_i16] = ACTIONS(1589), + [anon_sym_u32] = ACTIONS(1589), + [anon_sym_i32] = ACTIONS(1589), + [anon_sym_u64] = ACTIONS(1589), + [anon_sym_i64] = ACTIONS(1589), + [anon_sym_u128] = ACTIONS(1589), + [anon_sym_i128] = ACTIONS(1589), + [anon_sym_u256] = ACTIONS(1589), + [anon_sym_i256] = ACTIONS(1589), + [anon_sym_b256] = ACTIONS(1589), + [anon_sym_isize] = ACTIONS(1589), + [anon_sym_usize] = ACTIONS(1589), + [anon_sym_f32] = ACTIONS(1589), + [anon_sym_f64] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_str] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_contract] = ACTIONS(1589), + [anon_sym_script] = ACTIONS(1589), + [anon_sym_predicate] = ACTIONS(1589), + [anon_sym_library] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_abi] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_configurable] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_mod] = ACTIONS(1589), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_impl] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_pub] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_storage] = ACTIONS(1589), + [anon_sym_struct] = ACTIONS(1589), + [anon_sym_trait] = ACTIONS(1589), + [anon_sym_type] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_LT] = ACTIONS(1587), + [anon_sym_COLON_COLON] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_move] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1587), + [aux_sym_string_literal_token1] = ACTIONS(1587), + [sym_char_literal] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1576), - [sym_metavariable] = ACTIONS(1574), - [sym_raw_string_literal] = ACTIONS(1574), - [sym_float_literal] = ACTIONS(1574), + [sym_self] = ACTIONS(1589), + [sym_metavariable] = ACTIONS(1587), + [sym_raw_string_literal] = ACTIONS(1587), + [sym_float_literal] = ACTIONS(1587), [sym_block_comment] = ACTIONS(3), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(1578), - [sym_identifier] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_u8] = ACTIONS(1580), - [anon_sym_i8] = ACTIONS(1580), - [anon_sym_u16] = ACTIONS(1580), - [anon_sym_i16] = ACTIONS(1580), - [anon_sym_u32] = ACTIONS(1580), - [anon_sym_i32] = ACTIONS(1580), - [anon_sym_u64] = ACTIONS(1580), - [anon_sym_i64] = ACTIONS(1580), - [anon_sym_u128] = ACTIONS(1580), - [anon_sym_i128] = ACTIONS(1580), - [anon_sym_isize] = ACTIONS(1580), - [anon_sym_usize] = ACTIONS(1580), - [anon_sym_f32] = ACTIONS(1580), - [anon_sym_f64] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_str] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_contract] = ACTIONS(1580), - [anon_sym_script] = ACTIONS(1580), - [anon_sym_predicate] = ACTIONS(1580), - [anon_sym_library] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1580), - [anon_sym_abi] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_configurable] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_default] = ACTIONS(1580), - [anon_sym_dep] = ACTIONS(1580), - [anon_sym_enum] = ACTIONS(1580), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_impl] = ACTIONS(1580), - [anon_sym_let] = ACTIONS(1580), - [anon_sym_match] = ACTIONS(1580), - [anon_sym_pub] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_storage] = ACTIONS(1580), - [anon_sym_struct] = ACTIONS(1580), - [anon_sym_trait] = ACTIONS(1580), - [anon_sym_use] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(1578), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_asm] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1578), - [anon_sym_COLON_COLON] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1578), - [anon_sym_DOT_DOT] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1578), - [anon_sym_yield] = ACTIONS(1580), - [anon_sym_move] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1578), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1578), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), + [sym_primitive_type] = STATE(1174), + [sym_attribute_item] = STATE(414), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_match_arm] = STATE(411), + [sym_last_match_arm] = STATE(2032), + [sym_match_pattern] = STATE(2033), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_enum_variant_list_repeat1] = STATE(414), + [aux_sym_match_block_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1578), - [sym_raw_string_literal] = ACTIONS(1578), - [sym_float_literal] = ACTIONS(1578), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_u8] = ACTIONS(1584), - [anon_sym_i8] = ACTIONS(1584), - [anon_sym_u16] = ACTIONS(1584), - [anon_sym_i16] = ACTIONS(1584), - [anon_sym_u32] = ACTIONS(1584), - [anon_sym_i32] = ACTIONS(1584), - [anon_sym_u64] = ACTIONS(1584), - [anon_sym_i64] = ACTIONS(1584), - [anon_sym_u128] = ACTIONS(1584), - [anon_sym_i128] = ACTIONS(1584), - [anon_sym_isize] = ACTIONS(1584), - [anon_sym_usize] = ACTIONS(1584), - [anon_sym_f32] = ACTIONS(1584), - [anon_sym_f64] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_str] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_contract] = ACTIONS(1584), - [anon_sym_script] = ACTIONS(1584), - [anon_sym_predicate] = ACTIONS(1584), - [anon_sym_library] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1584), - [anon_sym_abi] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_configurable] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_dep] = ACTIONS(1584), - [anon_sym_enum] = ACTIONS(1584), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_impl] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1584), - [anon_sym_pub] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_storage] = ACTIONS(1584), - [anon_sym_struct] = ACTIONS(1584), - [anon_sym_trait] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(1582), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_asm] = ACTIONS(1584), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_COLON_COLON] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_yield] = ACTIONS(1584), - [anon_sym_move] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1582), - [aux_sym_string_literal_token1] = ACTIONS(1582), - [sym_char_literal] = ACTIONS(1582), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), + [sym_primitive_type] = STATE(1174), + [sym_attribute_item] = STATE(414), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_match_arm] = STATE(411), + [sym_last_match_arm] = STATE(2125), + [sym_match_pattern] = STATE(2033), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_enum_variant_list_repeat1] = STATE(414), + [aux_sym_match_block_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1584), - [sym_metavariable] = ACTIONS(1582), - [sym_raw_string_literal] = ACTIONS(1582), - [sym_float_literal] = ACTIONS(1582), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(1586), - [sym_identifier] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_u8] = ACTIONS(1588), - [anon_sym_i8] = ACTIONS(1588), - [anon_sym_u16] = ACTIONS(1588), - [anon_sym_i16] = ACTIONS(1588), - [anon_sym_u32] = ACTIONS(1588), - [anon_sym_i32] = ACTIONS(1588), - [anon_sym_u64] = ACTIONS(1588), - [anon_sym_i64] = ACTIONS(1588), - [anon_sym_u128] = ACTIONS(1588), - [anon_sym_i128] = ACTIONS(1588), - [anon_sym_isize] = ACTIONS(1588), - [anon_sym_usize] = ACTIONS(1588), - [anon_sym_f32] = ACTIONS(1588), - [anon_sym_f64] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_str] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_contract] = ACTIONS(1588), - [anon_sym_script] = ACTIONS(1588), - [anon_sym_predicate] = ACTIONS(1588), - [anon_sym_library] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1588), - [anon_sym_abi] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_configurable] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1588), - [anon_sym_dep] = ACTIONS(1588), - [anon_sym_enum] = ACTIONS(1588), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_impl] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_match] = ACTIONS(1588), - [anon_sym_pub] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_storage] = ACTIONS(1588), - [anon_sym_struct] = ACTIONS(1588), - [anon_sym_trait] = ACTIONS(1588), - [anon_sym_use] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_POUND] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_asm] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_COLON_COLON] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1586), - [anon_sym_DOT_DOT] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_PIPE] = ACTIONS(1586), - [anon_sym_yield] = ACTIONS(1588), - [anon_sym_move] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1586), - [aux_sym_string_literal_token1] = ACTIONS(1586), - [sym_char_literal] = ACTIONS(1586), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), + [sym_primitive_type] = STATE(1174), + [sym_attribute_item] = STATE(414), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_match_arm] = STATE(411), + [sym_last_match_arm] = STATE(2028), + [sym_match_pattern] = STATE(2033), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_enum_variant_list_repeat1] = STATE(414), + [aux_sym_match_block_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1588), - [sym_metavariable] = ACTIONS(1586), - [sym_raw_string_literal] = ACTIONS(1586), - [sym_float_literal] = ACTIONS(1586), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_u8] = ACTIONS(1592), - [anon_sym_i8] = ACTIONS(1592), - [anon_sym_u16] = ACTIONS(1592), - [anon_sym_i16] = ACTIONS(1592), - [anon_sym_u32] = ACTIONS(1592), - [anon_sym_i32] = ACTIONS(1592), - [anon_sym_u64] = ACTIONS(1592), - [anon_sym_i64] = ACTIONS(1592), - [anon_sym_u128] = ACTIONS(1592), - [anon_sym_i128] = ACTIONS(1592), - [anon_sym_isize] = ACTIONS(1592), - [anon_sym_usize] = ACTIONS(1592), - [anon_sym_f32] = ACTIONS(1592), - [anon_sym_f64] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_str] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_contract] = ACTIONS(1592), - [anon_sym_script] = ACTIONS(1592), - [anon_sym_predicate] = ACTIONS(1592), - [anon_sym_library] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1592), - [anon_sym_abi] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_configurable] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_default] = ACTIONS(1592), - [anon_sym_dep] = ACTIONS(1592), - [anon_sym_enum] = ACTIONS(1592), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_impl] = ACTIONS(1592), - [anon_sym_let] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [anon_sym_pub] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_storage] = ACTIONS(1592), - [anon_sym_struct] = ACTIONS(1592), - [anon_sym_trait] = ACTIONS(1592), - [anon_sym_use] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_POUND] = ACTIONS(1590), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_asm] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1590), - [anon_sym_COLON_COLON] = ACTIONS(1590), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_DOT_DOT] = ACTIONS(1590), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_move] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1590), - [aux_sym_string_literal_token1] = ACTIONS(1590), - [sym_char_literal] = ACTIONS(1590), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), + [sym_primitive_type] = STATE(1174), + [sym_attribute_item] = STATE(413), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_match_arm] = STATE(411), + [sym_match_pattern] = STATE(2103), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_enum_variant_list_repeat1] = STATE(413), + [aux_sym_match_block_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(1591), + [anon_sym_u8] = ACTIONS(1594), + [anon_sym_i8] = ACTIONS(1594), + [anon_sym_u16] = ACTIONS(1594), + [anon_sym_i16] = ACTIONS(1594), + [anon_sym_u32] = ACTIONS(1594), + [anon_sym_i32] = ACTIONS(1594), + [anon_sym_u64] = ACTIONS(1594), + [anon_sym_i64] = ACTIONS(1594), + [anon_sym_u128] = ACTIONS(1594), + [anon_sym_i128] = ACTIONS(1594), + [anon_sym_u256] = ACTIONS(1594), + [anon_sym_i256] = ACTIONS(1594), + [anon_sym_b256] = ACTIONS(1594), + [anon_sym_isize] = ACTIONS(1594), + [anon_sym_usize] = ACTIONS(1594), + [anon_sym_f32] = ACTIONS(1594), + [anon_sym_f64] = ACTIONS(1594), + [anon_sym_bool] = ACTIONS(1594), + [anon_sym_char] = ACTIONS(1594), + [anon_sym_str] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1615), + [anon_sym_COLON_COLON] = ACTIONS(1618), + [anon_sym__] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_ref] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(1630), + [anon_sym_DOT_DOT] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_deref] = ACTIONS(1639), + [sym_integer_literal] = ACTIONS(1642), + [aux_sym_string_literal_token1] = ACTIONS(1645), + [sym_char_literal] = ACTIONS(1642), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1592), - [sym_metavariable] = ACTIONS(1590), - [sym_raw_string_literal] = ACTIONS(1590), - [sym_float_literal] = ACTIONS(1590), + [sym_self] = ACTIONS(1651), + [sym_metavariable] = ACTIONS(1654), + [sym_raw_string_literal] = ACTIONS(1642), + [sym_float_literal] = ACTIONS(1642), [sym_block_comment] = ACTIONS(3), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(1594), - [sym_identifier] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_u8] = ACTIONS(1596), - [anon_sym_i8] = ACTIONS(1596), - [anon_sym_u16] = ACTIONS(1596), - [anon_sym_i16] = ACTIONS(1596), - [anon_sym_u32] = ACTIONS(1596), - [anon_sym_i32] = ACTIONS(1596), - [anon_sym_u64] = ACTIONS(1596), - [anon_sym_i64] = ACTIONS(1596), - [anon_sym_u128] = ACTIONS(1596), - [anon_sym_i128] = ACTIONS(1596), - [anon_sym_isize] = ACTIONS(1596), - [anon_sym_usize] = ACTIONS(1596), - [anon_sym_f32] = ACTIONS(1596), - [anon_sym_f64] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_str] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_contract] = ACTIONS(1596), - [anon_sym_script] = ACTIONS(1596), - [anon_sym_predicate] = ACTIONS(1596), - [anon_sym_library] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1594), - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_abi] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_configurable] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_dep] = ACTIONS(1596), - [anon_sym_enum] = ACTIONS(1596), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_impl] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_pub] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_storage] = ACTIONS(1596), - [anon_sym_struct] = ACTIONS(1596), - [anon_sym_trait] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1594), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_asm] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(1594), - [anon_sym_COLON_COLON] = ACTIONS(1594), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_DOT_DOT] = ACTIONS(1594), - [anon_sym_DASH] = ACTIONS(1594), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_yield] = ACTIONS(1596), - [anon_sym_move] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1594), - [aux_sym_string_literal_token1] = ACTIONS(1594), - [sym_char_literal] = ACTIONS(1594), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1596), - [sym_metavariable] = ACTIONS(1594), - [sym_raw_string_literal] = ACTIONS(1594), - [sym_float_literal] = ACTIONS(1594), + [sym_primitive_type] = STATE(412), + [sym_delim_token_tree] = STATE(412), + [sym__delim_tokens] = STATE(412), + [sym__non_delim_token] = STATE(412), + [sym__literal] = STATE(412), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1657), + [anon_sym_u8] = ACTIONS(1660), + [anon_sym_i8] = ACTIONS(1660), + [anon_sym_u16] = ACTIONS(1660), + [anon_sym_i16] = ACTIONS(1660), + [anon_sym_u32] = ACTIONS(1660), + [anon_sym_i32] = ACTIONS(1660), + [anon_sym_u64] = ACTIONS(1660), + [anon_sym_i64] = ACTIONS(1660), + [anon_sym_u128] = ACTIONS(1660), + [anon_sym_i128] = ACTIONS(1660), + [anon_sym_u256] = ACTIONS(1660), + [anon_sym_i256] = ACTIONS(1660), + [anon_sym_b256] = ACTIONS(1660), + [anon_sym_isize] = ACTIONS(1660), + [anon_sym_usize] = ACTIONS(1660), + [anon_sym_f32] = ACTIONS(1660), + [anon_sym_f64] = ACTIONS(1660), + [anon_sym_bool] = ACTIONS(1660), + [anon_sym_char] = ACTIONS(1660), + [anon_sym_str] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1669), + [aux_sym__non_special_token_token1] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_abi] = ACTIONS(1657), + [anon_sym_as] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_configurable] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1657), + [anon_sym_mod] = ACTIONS(1657), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_impl] = ACTIONS(1657), + [anon_sym_let] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_pub] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_storage] = ACTIONS(1657), + [anon_sym_struct] = ACTIONS(1657), + [anon_sym_trait] = ACTIONS(1657), + [anon_sym_type] = ACTIONS(1657), + [anon_sym_use] = ACTIONS(1657), + [anon_sym_where] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1657), + [sym_mutable_specifier] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1680), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1686), + [anon_sym_false] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1657), + [sym_raw_string_literal] = ACTIONS(1680), + [sym_float_literal] = ACTIONS(1680), [sym_block_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1598), - [sym_identifier] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_u8] = ACTIONS(1600), - [anon_sym_i8] = ACTIONS(1600), - [anon_sym_u16] = ACTIONS(1600), - [anon_sym_i16] = ACTIONS(1600), - [anon_sym_u32] = ACTIONS(1600), - [anon_sym_i32] = ACTIONS(1600), - [anon_sym_u64] = ACTIONS(1600), - [anon_sym_i64] = ACTIONS(1600), - [anon_sym_u128] = ACTIONS(1600), - [anon_sym_i128] = ACTIONS(1600), - [anon_sym_isize] = ACTIONS(1600), - [anon_sym_usize] = ACTIONS(1600), - [anon_sym_f32] = ACTIONS(1600), - [anon_sym_f64] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_str] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_contract] = ACTIONS(1600), - [anon_sym_script] = ACTIONS(1600), - [anon_sym_predicate] = ACTIONS(1600), - [anon_sym_library] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1600), - [anon_sym_abi] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_configurable] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_default] = ACTIONS(1600), - [anon_sym_dep] = ACTIONS(1600), - [anon_sym_enum] = ACTIONS(1600), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_impl] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_pub] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_storage] = ACTIONS(1600), - [anon_sym_struct] = ACTIONS(1600), - [anon_sym_trait] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_asm] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1598), - [anon_sym_COLON_COLON] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_yield] = ACTIONS(1600), - [anon_sym_move] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1598), - [aux_sym_string_literal_token1] = ACTIONS(1598), - [sym_char_literal] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), + [sym_primitive_type] = STATE(1174), + [sym_attribute_item] = STATE(476), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_match_pattern] = STATE(2159), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_enum_variant_list_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1600), - [sym_metavariable] = ACTIONS(1598), - [sym_raw_string_literal] = ACTIONS(1598), - [sym_float_literal] = ACTIONS(1598), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(1602), - [sym_identifier] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_u8] = ACTIONS(1604), - [anon_sym_i8] = ACTIONS(1604), - [anon_sym_u16] = ACTIONS(1604), - [anon_sym_i16] = ACTIONS(1604), - [anon_sym_u32] = ACTIONS(1604), - [anon_sym_i32] = ACTIONS(1604), - [anon_sym_u64] = ACTIONS(1604), - [anon_sym_i64] = ACTIONS(1604), - [anon_sym_u128] = ACTIONS(1604), - [anon_sym_i128] = ACTIONS(1604), - [anon_sym_isize] = ACTIONS(1604), - [anon_sym_usize] = ACTIONS(1604), - [anon_sym_f32] = ACTIONS(1604), - [anon_sym_f64] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_str] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_contract] = ACTIONS(1604), - [anon_sym_script] = ACTIONS(1604), - [anon_sym_predicate] = ACTIONS(1604), - [anon_sym_library] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_abi] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_configurable] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_dep] = ACTIONS(1604), - [anon_sym_enum] = ACTIONS(1604), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_impl] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_pub] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_storage] = ACTIONS(1604), - [anon_sym_struct] = ACTIONS(1604), - [anon_sym_trait] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_POUND] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_asm] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_COLON_COLON] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1602), - [anon_sym_DOT_DOT] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_yield] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1602), - [aux_sym_string_literal_token1] = ACTIONS(1602), - [sym_char_literal] = ACTIONS(1602), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), + [sym_primitive_type] = STATE(1174), + [sym_attribute_item] = STATE(476), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_match_pattern] = STATE(2027), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [aux_sym_enum_variant_list_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1604), - [sym_metavariable] = ACTIONS(1602), - [sym_raw_string_literal] = ACTIONS(1602), - [sym_float_literal] = ACTIONS(1602), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [sym_identifier] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_contract] = ACTIONS(1608), - [anon_sym_script] = ACTIONS(1608), - [anon_sym_predicate] = ACTIONS(1608), - [anon_sym_library] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1608), - [anon_sym_abi] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_configurable] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_dep] = ACTIONS(1608), - [anon_sym_enum] = ACTIONS(1608), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_impl] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_pub] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_storage] = ACTIONS(1608), - [anon_sym_struct] = ACTIONS(1608), - [anon_sym_trait] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_asm] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1606), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1606), - [anon_sym_DOT_DOT] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_move] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1606), - [aux_sym_string_literal_token1] = ACTIONS(1606), - [sym_char_literal] = ACTIONS(1606), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), + [sym_primitive_type] = STATE(1174), + [sym_asm_parameter] = STATE(1636), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1536), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1608), - [sym_metavariable] = ACTIONS(1606), - [sym_raw_string_literal] = ACTIONS(1606), - [sym_float_literal] = ACTIONS(1606), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [416] = { - [sym_primitive_type] = STATE(1036), - [sym_attribute_item] = STATE(418), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_match_arm] = STATE(416), - [sym_match_pattern] = STATE(1995), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1764), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_enum_variant_list_repeat1] = STATE(418), - [aux_sym_match_block_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1613), - [anon_sym_i8] = ACTIONS(1613), - [anon_sym_u16] = ACTIONS(1613), - [anon_sym_i16] = ACTIONS(1613), - [anon_sym_u32] = ACTIONS(1613), - [anon_sym_i32] = ACTIONS(1613), - [anon_sym_u64] = ACTIONS(1613), - [anon_sym_i64] = ACTIONS(1613), - [anon_sym_u128] = ACTIONS(1613), - [anon_sym_i128] = ACTIONS(1613), - [anon_sym_isize] = ACTIONS(1613), - [anon_sym_usize] = ACTIONS(1613), - [anon_sym_f32] = ACTIONS(1613), - [anon_sym_f64] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_char] = ACTIONS(1613), - [anon_sym_str] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_default] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_COLON_COLON] = ACTIONS(1637), - [anon_sym__] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_ref] = ACTIONS(1646), - [sym_mutable_specifier] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_deref] = ACTIONS(1658), - [sym_integer_literal] = ACTIONS(1661), - [aux_sym_string_literal_token1] = ACTIONS(1664), - [sym_char_literal] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1670), - [sym_metavariable] = ACTIONS(1673), - [sym_raw_string_literal] = ACTIONS(1661), - [sym_float_literal] = ACTIONS(1661), + [sym_primitive_type] = STATE(419), + [sym_delim_token_tree] = STATE(419), + [sym__delim_tokens] = STATE(419), + [sym__non_delim_token] = STATE(419), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(419), + [sym_identifier] = ACTIONS(1695), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_RBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [aux_sym__non_special_token_token1] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_abi] = ACTIONS(1695), + [anon_sym_as] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_configurable] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_impl] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_storage] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_trait] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_where] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [sym_mutable_specifier] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1709), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1695), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [417] = { - [sym_primitive_type] = STATE(1036), - [sym_attribute_item] = STATE(480), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_match_pattern] = STATE(2049), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1764), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_enum_variant_list_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_primitive_type] = STATE(412), + [sym_delim_token_tree] = STATE(412), + [sym__delim_tokens] = STATE(412), + [sym__non_delim_token] = STATE(412), + [sym__literal] = STATE(412), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_RBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [aux_sym__non_special_token_token1] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), + [anon_sym_abi] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_configurable] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_impl] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_pub] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_storage] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_trait] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_where] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [sym_mutable_specifier] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1717), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [418] = { - [sym_primitive_type] = STATE(1036), - [sym_attribute_item] = STATE(480), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_match_pattern] = STATE(2141), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1764), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [aux_sym_enum_variant_list_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(354), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_primitive_type] = STATE(412), + [sym_delim_token_tree] = STATE(412), + [sym__delim_tokens] = STATE(412), + [sym__non_delim_token] = STATE(412), + [sym__literal] = STATE(412), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1707), + [aux_sym__non_special_token_token1] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), + [anon_sym_abi] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_configurable] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_impl] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_pub] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_storage] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_trait] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_where] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [sym_mutable_specifier] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1717), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [419] = { - [sym_primitive_type] = STATE(419), - [sym_delim_token_tree] = STATE(419), - [sym__delim_tokens] = STATE(419), - [sym__non_delim_token] = STATE(419), - [sym__literal] = STATE(419), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1676), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1685), - [anon_sym_RBRACK] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_RPAREN] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1688), - [aux_sym__non_special_token_token1] = ACTIONS(1676), - [anon_sym_SQUOTE] = ACTIONS(1676), - [anon_sym_abi] = ACTIONS(1676), - [anon_sym_as] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_configurable] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_dep] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), - [anon_sym_fn] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_impl] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_match] = ACTIONS(1676), - [anon_sym_pub] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_storage] = ACTIONS(1676), - [anon_sym_struct] = ACTIONS(1676), - [anon_sym_trait] = ACTIONS(1676), - [anon_sym_use] = ACTIONS(1676), - [anon_sym_where] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [sym_mutable_specifier] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1699), - [aux_sym_string_literal_token1] = ACTIONS(1702), - [sym_char_literal] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1676), - [sym_raw_string_literal] = ACTIONS(1699), - [sym_float_literal] = ACTIONS(1699), + [sym_primitive_type] = STATE(412), + [sym_delim_token_tree] = STATE(412), + [sym__delim_tokens] = STATE(412), + [sym__non_delim_token] = STATE(412), + [sym__literal] = STATE(412), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_RBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [aux_sym__non_special_token_token1] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), + [anon_sym_abi] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_configurable] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_impl] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_pub] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_storage] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_trait] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_where] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [sym_mutable_specifier] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1717), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [420] = { - [sym_primitive_type] = STATE(1036), - [sym_asm_parameter] = STATE(1765), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1501), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_primitive_type] = STATE(412), + [sym_delim_token_tree] = STATE(412), + [sym__delim_tokens] = STATE(412), + [sym__non_delim_token] = STATE(412), + [sym__literal] = STATE(412), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1719), + [aux_sym__non_special_token_token1] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), + [anon_sym_abi] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_configurable] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_impl] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_pub] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_storage] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_trait] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_where] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [sym_mutable_specifier] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1717), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [421] = { - [sym_primitive_type] = STATE(1036), - [sym_parameter] = STATE(1667), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1524), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(1714), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1718), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_primitive_type] = STATE(412), + [sym_delim_token_tree] = STATE(412), + [sym__delim_tokens] = STATE(412), + [sym__non_delim_token] = STATE(412), + [sym__literal] = STATE(412), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1707), + [aux_sym__non_special_token_token1] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), + [anon_sym_abi] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_configurable] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_impl] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_pub] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_storage] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_trait] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_where] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [sym_mutable_specifier] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1717), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [422] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1553), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_asm_parameter] = STATE(1936), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1536), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [423] = { - [sym_primitive_type] = STATE(1036), - [sym_asm_parameter] = STATE(1936), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1501), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1555), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [424] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1568), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_RBRACK] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_primitive_type] = STATE(412), + [sym_delim_token_tree] = STATE(412), + [sym__delim_tokens] = STATE(412), + [sym__non_delim_token] = STATE(412), + [sym__literal] = STATE(412), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1723), + [aux_sym__non_special_token_token1] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), + [anon_sym_abi] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_configurable] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_impl] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_pub] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_storage] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_trait] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_where] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [sym_mutable_specifier] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1717), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [425] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1545), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_parameter] = STATE(1761), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1499), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(1731), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1735), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [426] = { - [sym_primitive_type] = STATE(1036), - [sym_asm_parameter] = STATE(1936), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1501), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_primitive_type] = STATE(424), + [sym_delim_token_tree] = STATE(424), + [sym__delim_tokens] = STATE(424), + [sym__non_delim_token] = STATE(424), + [sym__literal] = STATE(424), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1737), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1703), + [aux_sym__non_special_token_token1] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1737), + [anon_sym_abi] = ACTIONS(1737), + [anon_sym_as] = ACTIONS(1737), + [anon_sym_break] = ACTIONS(1737), + [anon_sym_configurable] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1737), + [anon_sym_continue] = ACTIONS(1737), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_mod] = ACTIONS(1737), + [anon_sym_enum] = ACTIONS(1737), + [anon_sym_fn] = ACTIONS(1737), + [anon_sym_for] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1737), + [anon_sym_impl] = ACTIONS(1737), + [anon_sym_let] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [anon_sym_pub] = ACTIONS(1737), + [anon_sym_return] = ACTIONS(1737), + [anon_sym_storage] = ACTIONS(1737), + [anon_sym_struct] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_use] = ACTIONS(1737), + [anon_sym_where] = ACTIONS(1737), + [anon_sym_while] = ACTIONS(1737), + [sym_mutable_specifier] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1739), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1737), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [427] = { - [sym_primitive_type] = STATE(1036), - [sym_parameter] = STATE(1834), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1776), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(1714), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1481), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1718), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [428] = { - [sym_primitive_type] = STATE(429), - [sym_delim_token_tree] = STATE(429), - [sym__delim_tokens] = STATE(429), - [sym__non_delim_token] = STATE(429), - [sym__literal] = STATE(429), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(429), - [sym_identifier] = ACTIONS(1730), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [aux_sym__non_special_token_token1] = ACTIONS(1730), - [anon_sym_SQUOTE] = ACTIONS(1730), - [anon_sym_abi] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_configurable] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_dep] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_fn] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_impl] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1730), - [anon_sym_match] = ACTIONS(1730), - [anon_sym_pub] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_storage] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_trait] = ACTIONS(1730), - [anon_sym_use] = ACTIONS(1730), - [anon_sym_where] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [sym_mutable_specifier] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1744), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1484), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [429] = { - [sym_primitive_type] = STATE(419), - [sym_delim_token_tree] = STATE(419), - [sym__delim_tokens] = STATE(419), - [sym__non_delim_token] = STATE(419), - [sym__literal] = STATE(419), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1752), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [aux_sym__non_special_token_token1] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_abi] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_configurable] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_dep] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_storage] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [sym_mutable_specifier] = ACTIONS(1752), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1752), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(1174), + [sym_asm_parameter] = STATE(1936), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1536), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [430] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1506), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_primitive_type] = STATE(418), + [sym_delim_token_tree] = STATE(418), + [sym__delim_tokens] = STATE(418), + [sym__non_delim_token] = STATE(418), + [sym__literal] = STATE(418), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(418), + [sym_identifier] = ACTIONS(1745), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1707), + [aux_sym__non_special_token_token1] = ACTIONS(1745), + [anon_sym_SQUOTE] = ACTIONS(1745), + [anon_sym_abi] = ACTIONS(1745), + [anon_sym_as] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_configurable] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_mod] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_fn] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_impl] = ACTIONS(1745), + [anon_sym_let] = ACTIONS(1745), + [anon_sym_match] = ACTIONS(1745), + [anon_sym_pub] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_storage] = ACTIONS(1745), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_trait] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1745), + [anon_sym_use] = ACTIONS(1745), + [anon_sym_where] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [sym_mutable_specifier] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(1747), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1745), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [431] = { - [sym_primitive_type] = STATE(446), - [sym_delim_token_tree] = STATE(446), - [sym__delim_tokens] = STATE(446), - [sym__non_delim_token] = STATE(446), - [sym__literal] = STATE(446), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(446), - [sym_identifier] = ACTIONS(1760), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1762), - [aux_sym__non_special_token_token1] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_abi] = ACTIONS(1760), - [anon_sym_as] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_configurable] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_dep] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_fn] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_impl] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_match] = ACTIONS(1760), - [anon_sym_pub] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_storage] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_trait] = ACTIONS(1760), - [anon_sym_use] = ACTIONS(1760), - [anon_sym_where] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [sym_mutable_specifier] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1764), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1760), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(417), + [sym_delim_token_tree] = STATE(417), + [sym__delim_tokens] = STATE(417), + [sym__non_delim_token] = STATE(417), + [sym__literal] = STATE(417), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1749), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_RBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [aux_sym__non_special_token_token1] = ACTIONS(1749), + [anon_sym_SQUOTE] = ACTIONS(1749), + [anon_sym_abi] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_configurable] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_mod] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [anon_sym_fn] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_impl] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_pub] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_storage] = ACTIONS(1749), + [anon_sym_struct] = ACTIONS(1749), + [anon_sym_trait] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_where] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [sym_mutable_specifier] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1753), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1749), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [432] = { - [sym_primitive_type] = STATE(442), - [sym_delim_token_tree] = STATE(442), - [sym__delim_tokens] = STATE(442), - [sym__non_delim_token] = STATE(442), - [sym__literal] = STATE(442), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1766), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_RPAREN] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1742), - [aux_sym__non_special_token_token1] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1766), - [anon_sym_abi] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_configurable] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_default] = ACTIONS(1766), - [anon_sym_dep] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_fn] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_impl] = ACTIONS(1766), - [anon_sym_let] = ACTIONS(1766), - [anon_sym_match] = ACTIONS(1766), - [anon_sym_pub] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_storage] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_trait] = ACTIONS(1766), - [anon_sym_use] = ACTIONS(1766), - [anon_sym_where] = ACTIONS(1766), - [anon_sym_while] = ACTIONS(1766), - [sym_mutable_specifier] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1768), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1766), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(421), + [sym_delim_token_tree] = STATE(421), + [sym__delim_tokens] = STATE(421), + [sym__non_delim_token] = STATE(421), + [sym__literal] = STATE(421), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1755), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_LBRACE] = ACTIONS(1707), + [aux_sym__non_special_token_token1] = ACTIONS(1755), + [anon_sym_SQUOTE] = ACTIONS(1755), + [anon_sym_abi] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_configurable] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_mod] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_fn] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_impl] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_pub] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_storage] = ACTIONS(1755), + [anon_sym_struct] = ACTIONS(1755), + [anon_sym_trait] = ACTIONS(1755), + [anon_sym_type] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_where] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [sym_mutable_specifier] = ACTIONS(1755), + [anon_sym_DOLLAR] = ACTIONS(1757), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1755), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [433] = { - [sym_primitive_type] = STATE(438), - [sym_delim_token_tree] = STATE(438), - [sym__delim_tokens] = STATE(438), - [sym__non_delim_token] = STATE(438), - [sym__literal] = STATE(438), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(1770), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [aux_sym__non_special_token_token1] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1770), - [anon_sym_abi] = ACTIONS(1770), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_configurable] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_dep] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_fn] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_impl] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_pub] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_storage] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_trait] = ACTIONS(1770), - [anon_sym_use] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [sym_mutable_specifier] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1770), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(420), + [sym_delim_token_tree] = STATE(420), + [sym__delim_tokens] = STATE(420), + [sym__non_delim_token] = STATE(420), + [sym__literal] = STATE(420), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_delim_token_tree_repeat1] = STATE(420), + [sym_identifier] = ACTIONS(1759), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1751), + [aux_sym__non_special_token_token1] = ACTIONS(1759), + [anon_sym_SQUOTE] = ACTIONS(1759), + [anon_sym_abi] = ACTIONS(1759), + [anon_sym_as] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_configurable] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_mod] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_fn] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_impl] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_pub] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_storage] = ACTIONS(1759), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_trait] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_use] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [sym_mutable_specifier] = ACTIONS(1759), + [anon_sym_DOLLAR] = ACTIONS(1761), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1759), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [434] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1506), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_asm_parameter] = STATE(1936), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1536), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [435] = { - [sym_primitive_type] = STATE(419), - [sym_delim_token_tree] = STATE(419), - [sym__delim_tokens] = STATE(419), - [sym__non_delim_token] = STATE(419), - [sym__literal] = STATE(419), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1752), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1754), - [aux_sym__non_special_token_token1] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_abi] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_configurable] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_dep] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_storage] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [sym_mutable_specifier] = ACTIONS(1752), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1752), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1476), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [436] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1506), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_RBRACK] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1476), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [437] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1506), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_RBRACK] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1476), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [438] = { - [sym_primitive_type] = STATE(419), - [sym_delim_token_tree] = STATE(419), - [sym__delim_tokens] = STATE(419), - [sym__non_delim_token] = STATE(419), - [sym__literal] = STATE(419), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1752), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [aux_sym__non_special_token_token1] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_abi] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_configurable] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_dep] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_storage] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [sym_mutable_specifier] = ACTIONS(1752), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1752), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1476), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [439] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1506), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_parameter] = STATE(1964), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1720), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(1731), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1735), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [440] = { - [sym_primitive_type] = STATE(444), - [sym_delim_token_tree] = STATE(444), - [sym__delim_tokens] = STATE(444), - [sym__non_delim_token] = STATE(444), - [sym__literal] = STATE(444), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(1784), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1742), - [aux_sym__non_special_token_token1] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_abi] = ACTIONS(1784), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_configurable] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_dep] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_impl] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_pub] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_storage] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_trait] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [sym_mutable_specifier] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1784), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1476), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [441] = { - [sym_primitive_type] = STATE(435), - [sym_delim_token_tree] = STATE(435), - [sym__delim_tokens] = STATE(435), - [sym__non_delim_token] = STATE(435), - [sym__literal] = STATE(435), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(435), - [sym_identifier] = ACTIONS(1788), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1738), - [aux_sym__non_special_token_token1] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_abi] = ACTIONS(1788), - [anon_sym_as] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_configurable] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_dep] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_fn] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_impl] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_pub] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_storage] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_trait] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_where] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [sym_mutable_specifier] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1788), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1476), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [442] = { - [sym_primitive_type] = STATE(419), - [sym_delim_token_tree] = STATE(419), - [sym__delim_tokens] = STATE(419), - [sym__non_delim_token] = STATE(419), - [sym__literal] = STATE(419), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1752), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1742), - [aux_sym__non_special_token_token1] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_abi] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_configurable] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_dep] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_storage] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [sym_mutable_specifier] = ACTIONS(1752), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1752), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1241), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [443] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1506), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1465), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(1775), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [444] = { - [sym_primitive_type] = STATE(419), - [sym_delim_token_tree] = STATE(419), - [sym__delim_tokens] = STATE(419), - [sym__non_delim_token] = STATE(419), - [sym__literal] = STATE(419), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1752), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1742), - [aux_sym__non_special_token_token1] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_abi] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_configurable] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_dep] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_storage] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [sym_mutable_specifier] = ACTIONS(1752), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1752), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1969), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [445] = { - [sym_primitive_type] = STATE(1036), - [sym_asm_parameter] = STATE(1936), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1501), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1877), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [446] = { - [sym_primitive_type] = STATE(419), - [sym_delim_token_tree] = STATE(419), - [sym__delim_tokens] = STATE(419), - [sym__non_delim_token] = STATE(419), - [sym__literal] = STATE(419), - [sym_string_literal] = STATE(486), - [sym_boolean_literal] = STATE(486), - [aux_sym_delim_token_tree_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1752), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1780), - [aux_sym__non_special_token_token1] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_abi] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_configurable] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_dep] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_storage] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [sym_mutable_specifier] = ACTIONS(1752), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(1708), - [sym_self] = ACTIONS(1752), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1808), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [447] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1436), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1701), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [448] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1506), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1854), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [449] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1218), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1630), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1798), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1777), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [450] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1861), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1241), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(1779), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1781), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [451] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1473), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1840), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [452] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1222), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1485), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1783), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [453] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1954), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1812), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [454] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1219), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1234), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [455] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1218), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1239), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [456] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1219), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1450), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1802), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [457] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1961), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1239), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1787), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [458] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1241), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1447), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [459] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1856), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1476), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [460] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1451), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1216), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [461] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1587), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [462] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1219), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [463] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1831), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1244), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [464] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1805), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1793), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [465] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1914), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [466] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1237), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1773), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [467] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1881), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1471), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [468] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1224), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [469] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1867), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1174), + [sym_bracketed_type] = STATE(2084), + [sym_generic_type] = STATE(2083), + [sym_generic_type_with_turbofish] = STATE(2081), + [sym_scoped_identifier] = STATE(1126), + [sym_scoped_type_identifier] = STATE(1673), + [sym_const_block] = STATE(1226), + [sym__pattern] = STATE(1230), + [sym_tuple_pattern] = STATE(1226), + [sym_slice_pattern] = STATE(1226), + [sym_tuple_struct_pattern] = STATE(1226), + [sym_struct_pattern] = STATE(1226), + [sym_remaining_field_pattern] = STATE(1226), + [sym_mut_pattern] = STATE(1226), + [sym_range_pattern] = STATE(1226), + [sym_ref_pattern] = STATE(1226), + [sym_deref_pattern] = STATE(1226), + [sym_captured_pattern] = STATE(1226), + [sym_reference_pattern] = STATE(1226), + [sym_or_pattern] = STATE(1226), + [sym__literal_pattern] = STATE(1193), + [sym_negative_literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), + [sym_identifier] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_const] = ACTIONS(883), + [anon_sym_default] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym__] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_ref] = ACTIONS(805), + [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(891), + [sym_metavariable] = ACTIONS(893), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [470] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1229), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1109), + [sym_function_modifiers] = STATE(2169), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(2045), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1105), + [sym_bounded_type] = STATE(1176), + [sym_type_binding] = STATE(1901), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(2052), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(1901), + [sym__literal] = STATE(1901), + [sym_string_literal] = STATE(1850), + [sym_boolean_literal] = STATE(1850), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(1807), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1819), + [sym_raw_string_literal] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, [471] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1787), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1109), + [sym_function_modifiers] = STATE(2169), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(2045), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1105), + [sym_bounded_type] = STATE(1176), + [sym_type_binding] = STATE(1901), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(2052), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(1901), + [sym__literal] = STATE(1901), + [sym_string_literal] = STATE(1850), + [sym_boolean_literal] = STATE(1850), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(1821), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1819), + [sym_raw_string_literal] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, [472] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1481), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1109), + [sym_function_modifiers] = STATE(2169), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(2045), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1105), + [sym_bounded_type] = STATE(1176), + [sym_type_binding] = STATE(1901), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(2052), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(1901), + [sym__literal] = STATE(1901), + [sym_string_literal] = STATE(1850), + [sym_boolean_literal] = STATE(1850), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1819), + [sym_raw_string_literal] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, [473] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1857), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1109), + [sym_function_modifiers] = STATE(2169), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(2045), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1105), + [sym_bounded_type] = STATE(1176), + [sym_type_binding] = STATE(1901), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(2052), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(1901), + [sym__literal] = STATE(1901), + [sym_string_literal] = STATE(1850), + [sym_boolean_literal] = STATE(1850), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1819), + [sym_raw_string_literal] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, [474] = { - [sym_primitive_type] = STATE(1036), - [sym_bracketed_type] = STATE(2023), - [sym_generic_type] = STATE(2000), - [sym_generic_type_with_turbofish] = STATE(1998), - [sym_scoped_identifier] = STATE(990), - [sym_scoped_type_identifier] = STATE(1615), - [sym_const_block] = STATE(1239), - [sym__pattern] = STATE(1858), - [sym_tuple_pattern] = STATE(1239), - [sym_slice_pattern] = STATE(1239), - [sym_tuple_struct_pattern] = STATE(1239), - [sym_struct_pattern] = STATE(1239), - [sym_remaining_field_pattern] = STATE(1239), - [sym_mut_pattern] = STATE(1239), - [sym_range_pattern] = STATE(1239), - [sym_ref_pattern] = STATE(1239), - [sym_deref_pattern] = STATE(1239), - [sym_captured_pattern] = STATE(1239), - [sym_reference_pattern] = STATE(1239), - [sym_or_pattern] = STATE(1239), - [sym__literal_pattern] = STATE(1197), - [sym_negative_literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym_identifier] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_ref] = ACTIONS(792), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_deref] = ACTIONS(718), - [sym_integer_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(720), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1109), + [sym_function_modifiers] = STATE(2169), + [sym__type] = STATE(1478), + [sym_bracketed_type] = STATE(2045), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1105), + [sym_bounded_type] = STATE(1176), + [sym_type_binding] = STATE(1796), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(2052), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(1796), + [sym__literal] = STATE(1796), + [sym_string_literal] = STATE(1850), + [sym_boolean_literal] = STATE(1850), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(720), - [sym_float_literal] = ACTIONS(720), + [sym_self] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1819), + [sym_raw_string_literal] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, [475] = { - [sym_primitive_type] = STATE(998), - [sym_function_modifiers] = STATE(2162), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2044), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(993), - [sym_bounded_type] = STATE(1058), - [sym_type_binding] = STATE(1983), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(2059), - [sym_scoped_type_identifier] = STATE(1267), - [sym_block] = STATE(1983), - [sym__literal] = STATE(1983), - [sym_string_literal] = STATE(1847), - [sym_boolean_literal] = STATE(1847), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1822), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1109), + [sym_function_modifiers] = STATE(2169), + [sym__type] = STATE(1543), + [sym_bracketed_type] = STATE(2045), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1105), + [sym_bounded_type] = STATE(1176), + [sym_type_binding] = STATE(1628), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(2052), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(1628), + [sym__literal] = STATE(1628), + [sym_string_literal] = STATE(1850), + [sym_boolean_literal] = STATE(1850), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [sym_self] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1819), + [sym_raw_string_literal] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, [476] = { - [sym_primitive_type] = STATE(998), - [sym_function_modifiers] = STATE(2162), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2044), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(993), - [sym_bounded_type] = STATE(1058), - [sym_type_binding] = STATE(1983), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(2059), - [sym_scoped_type_identifier] = STATE(1267), - [sym_block] = STATE(1983), - [sym__literal] = STATE(1983), - [sym_string_literal] = STATE(1847), - [sym_boolean_literal] = STATE(1847), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1822), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_attribute_item] = STATE(476), + [aux_sym_enum_variant_list_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(1827), + [anon_sym_u8] = ACTIONS(1827), + [anon_sym_i8] = ACTIONS(1827), + [anon_sym_u16] = ACTIONS(1827), + [anon_sym_i16] = ACTIONS(1827), + [anon_sym_u32] = ACTIONS(1827), + [anon_sym_i32] = ACTIONS(1827), + [anon_sym_u64] = ACTIONS(1827), + [anon_sym_i64] = ACTIONS(1827), + [anon_sym_u128] = ACTIONS(1827), + [anon_sym_i128] = ACTIONS(1827), + [anon_sym_u256] = ACTIONS(1827), + [anon_sym_i256] = ACTIONS(1827), + [anon_sym_b256] = ACTIONS(1827), + [anon_sym_isize] = ACTIONS(1827), + [anon_sym_usize] = ACTIONS(1827), + [anon_sym_f32] = ACTIONS(1827), + [anon_sym_f64] = ACTIONS(1827), + [anon_sym_bool] = ACTIONS(1827), + [anon_sym_char] = ACTIONS(1827), + [anon_sym_str] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_RBRACK] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_abi] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_match] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_storage] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_asm] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_COLON_COLON] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_ref] = ACTIONS(1827), + [sym_mutable_specifier] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_move] = ACTIONS(1827), + [anon_sym_deref] = ACTIONS(1827), + [sym_integer_literal] = ACTIONS(1829), + [aux_sym_string_literal_token1] = ACTIONS(1829), + [sym_char_literal] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [sym_self] = ACTIONS(1827), + [sym_metavariable] = ACTIONS(1829), + [sym_raw_string_literal] = ACTIONS(1829), + [sym_float_literal] = ACTIONS(1829), [sym_block_comment] = ACTIONS(3), }, [477] = { - [sym_primitive_type] = STATE(998), - [sym_function_modifiers] = STATE(2162), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2044), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(993), - [sym_bounded_type] = STATE(1058), - [sym_type_binding] = STATE(1983), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(2059), - [sym_scoped_type_identifier] = STATE(1267), - [sym_block] = STATE(1983), - [sym__literal] = STATE(1983), - [sym_string_literal] = STATE(1847), - [sym_boolean_literal] = STATE(1847), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1822), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_primitive_type] = STATE(1109), + [sym_function_modifiers] = STATE(2169), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(2045), + [sym_array_type] = STATE(1176), + [sym_function_type] = STATE(1176), + [sym_tuple_type] = STATE(1176), + [sym_unit_type] = STATE(1176), + [sym_generic_type] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1105), + [sym_bounded_type] = STATE(1176), + [sym_type_binding] = STATE(1901), + [sym_reference_type] = STATE(1176), + [sym_pointer_type] = STATE(1176), + [sym_empty_type] = STATE(1176), + [sym_abstract_type] = STATE(1176), + [sym_scoped_identifier] = STATE(2052), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(1901), + [sym__literal] = STATE(1901), + [sym_string_literal] = STATE(1850), + [sym_boolean_literal] = STATE(1850), + [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_identifier] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [sym_self] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1819), + [sym_raw_string_literal] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, [478] = { - [sym_primitive_type] = STATE(998), - [sym_function_modifiers] = STATE(2162), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2044), - [sym_array_type] = STATE(1058), - [sym_function_type] = STATE(1058), - [sym_tuple_type] = STATE(1058), - [sym_unit_type] = STATE(1058), - [sym_generic_type] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(993), - [sym_bounded_type] = STATE(1058), - [sym_type_binding] = STATE(1983), - [sym_reference_type] = STATE(1058), - [sym_pointer_type] = STATE(1058), - [sym_empty_type] = STATE(1058), - [sym_abstract_type] = STATE(1058), - [sym_scoped_identifier] = STATE(2059), - [sym_scoped_type_identifier] = STATE(1267), - [sym_block] = STATE(1983), - [sym__literal] = STATE(1983), - [sym_string_literal] = STATE(1847), - [sym_boolean_literal] = STATE(1847), - [aux_sym_function_modifiers_repeat1] = STATE(1516), - [sym_identifier] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(680), - [anon_sym_i8] = ACTIONS(680), - [anon_sym_u16] = ACTIONS(680), - [anon_sym_i16] = ACTIONS(680), - [anon_sym_u32] = ACTIONS(680), - [anon_sym_i32] = ACTIONS(680), - [anon_sym_u64] = ACTIONS(680), - [anon_sym_i64] = ACTIONS(680), - [anon_sym_u128] = ACTIONS(680), - [anon_sym_i128] = ACTIONS(680), - [anon_sym_isize] = ACTIONS(680), - [anon_sym_usize] = ACTIONS(680), - [anon_sym_f32] = ACTIONS(680), - [anon_sym_f64] = ACTIONS(680), - [anon_sym_bool] = ACTIONS(680), - [anon_sym_char] = ACTIONS(680), - [anon_sym_str] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1822), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(722), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), + [sym_identifier] = ACTIONS(1097), + [anon_sym_u8] = ACTIONS(1097), + [anon_sym_i8] = ACTIONS(1097), + [anon_sym_u16] = ACTIONS(1097), + [anon_sym_i16] = ACTIONS(1097), + [anon_sym_u32] = ACTIONS(1097), + [anon_sym_i32] = ACTIONS(1097), + [anon_sym_u64] = ACTIONS(1097), + [anon_sym_i64] = ACTIONS(1097), + [anon_sym_u128] = ACTIONS(1097), + [anon_sym_i128] = ACTIONS(1097), + [anon_sym_u256] = ACTIONS(1097), + [anon_sym_i256] = ACTIONS(1097), + [anon_sym_b256] = ACTIONS(1097), + [anon_sym_isize] = ACTIONS(1097), + [anon_sym_usize] = ACTIONS(1097), + [anon_sym_f32] = ACTIONS(1097), + [anon_sym_f64] = ACTIONS(1097), + [anon_sym_bool] = ACTIONS(1097), + [anon_sym_char] = ACTIONS(1097), + [anon_sym_str] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_abi] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_default] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_storage] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_asm] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1095), + [anon_sym_COLON_COLON] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym__] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_ref] = ACTIONS(1097), + [sym_mutable_specifier] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_yield] = ACTIONS(1097), + [anon_sym_move] = ACTIONS(1097), + [anon_sym_deref] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(1095), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(1095), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1097), + [sym_metavariable] = ACTIONS(1095), + [sym_raw_string_literal] = ACTIONS(1095), + [sym_float_literal] = ACTIONS(1095), + [sym_block_comment] = ACTIONS(3), + }, + [479] = { + [sym_identifier] = ACTIONS(1834), + [anon_sym_u8] = ACTIONS(1834), + [anon_sym_i8] = ACTIONS(1834), + [anon_sym_u16] = ACTIONS(1834), + [anon_sym_i16] = ACTIONS(1834), + [anon_sym_u32] = ACTIONS(1834), + [anon_sym_i32] = ACTIONS(1834), + [anon_sym_u64] = ACTIONS(1834), + [anon_sym_i64] = ACTIONS(1834), + [anon_sym_u128] = ACTIONS(1834), + [anon_sym_i128] = ACTIONS(1834), + [anon_sym_u256] = ACTIONS(1834), + [anon_sym_i256] = ACTIONS(1834), + [anon_sym_b256] = ACTIONS(1834), + [anon_sym_isize] = ACTIONS(1834), + [anon_sym_usize] = ACTIONS(1834), + [anon_sym_f32] = ACTIONS(1834), + [anon_sym_f64] = ACTIONS(1834), + [anon_sym_bool] = ACTIONS(1834), + [anon_sym_char] = ACTIONS(1834), + [anon_sym_str] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_RBRACK] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [aux_sym__non_special_token_token1] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_abi] = ACTIONS(1834), + [anon_sym_as] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_configurable] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_mod] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_fn] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_impl] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1834), + [anon_sym_match] = ACTIONS(1834), + [anon_sym_pub] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_storage] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_trait] = ACTIONS(1834), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_use] = ACTIONS(1834), + [anon_sym_where] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [sym_mutable_specifier] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1836), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1834), + [sym_raw_string_literal] = ACTIONS(1836), + [sym_float_literal] = ACTIONS(1836), + [sym_block_comment] = ACTIONS(3), + }, + [480] = { + [sym_identifier] = ACTIONS(1838), + [anon_sym_u8] = ACTIONS(1838), + [anon_sym_i8] = ACTIONS(1838), + [anon_sym_u16] = ACTIONS(1838), + [anon_sym_i16] = ACTIONS(1838), + [anon_sym_u32] = ACTIONS(1838), + [anon_sym_i32] = ACTIONS(1838), + [anon_sym_u64] = ACTIONS(1838), + [anon_sym_i64] = ACTIONS(1838), + [anon_sym_u128] = ACTIONS(1838), + [anon_sym_i128] = ACTIONS(1838), + [anon_sym_u256] = ACTIONS(1838), + [anon_sym_i256] = ACTIONS(1838), + [anon_sym_b256] = ACTIONS(1838), + [anon_sym_isize] = ACTIONS(1838), + [anon_sym_usize] = ACTIONS(1838), + [anon_sym_f32] = ACTIONS(1838), + [anon_sym_f64] = ACTIONS(1838), + [anon_sym_bool] = ACTIONS(1838), + [anon_sym_char] = ACTIONS(1838), + [anon_sym_str] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1840), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [aux_sym__non_special_token_token1] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_abi] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_configurable] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_storage] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [sym_mutable_specifier] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1840), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1840), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1838), + [sym_raw_string_literal] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), + [sym_block_comment] = ACTIONS(3), + }, + [481] = { + [sym_identifier] = ACTIONS(1842), + [anon_sym_u8] = ACTIONS(1842), + [anon_sym_i8] = ACTIONS(1842), + [anon_sym_u16] = ACTIONS(1842), + [anon_sym_i16] = ACTIONS(1842), + [anon_sym_u32] = ACTIONS(1842), + [anon_sym_i32] = ACTIONS(1842), + [anon_sym_u64] = ACTIONS(1842), + [anon_sym_i64] = ACTIONS(1842), + [anon_sym_u128] = ACTIONS(1842), + [anon_sym_i128] = ACTIONS(1842), + [anon_sym_u256] = ACTIONS(1842), + [anon_sym_i256] = ACTIONS(1842), + [anon_sym_b256] = ACTIONS(1842), + [anon_sym_isize] = ACTIONS(1842), + [anon_sym_usize] = ACTIONS(1842), + [anon_sym_f32] = ACTIONS(1842), + [anon_sym_f64] = ACTIONS(1842), + [anon_sym_bool] = ACTIONS(1842), + [anon_sym_char] = ACTIONS(1842), + [anon_sym_str] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [aux_sym__non_special_token_token1] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_abi] = ACTIONS(1842), + [anon_sym_as] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_configurable] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_mod] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [anon_sym_fn] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_impl] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_pub] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_storage] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(1842), + [anon_sym_trait] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_where] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [sym_mutable_specifier] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1844), + [sym_integer_literal] = ACTIONS(1844), + [aux_sym_string_literal_token1] = ACTIONS(1844), + [sym_char_literal] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1842), + [sym_raw_string_literal] = ACTIONS(1844), + [sym_float_literal] = ACTIONS(1844), + [sym_block_comment] = ACTIONS(3), + }, + [482] = { + [sym_identifier] = ACTIONS(1846), + [anon_sym_u8] = ACTIONS(1846), + [anon_sym_i8] = ACTIONS(1846), + [anon_sym_u16] = ACTIONS(1846), + [anon_sym_i16] = ACTIONS(1846), + [anon_sym_u32] = ACTIONS(1846), + [anon_sym_i32] = ACTIONS(1846), + [anon_sym_u64] = ACTIONS(1846), + [anon_sym_i64] = ACTIONS(1846), + [anon_sym_u128] = ACTIONS(1846), + [anon_sym_i128] = ACTIONS(1846), + [anon_sym_u256] = ACTIONS(1846), + [anon_sym_i256] = ACTIONS(1846), + [anon_sym_b256] = ACTIONS(1846), + [anon_sym_isize] = ACTIONS(1846), + [anon_sym_usize] = ACTIONS(1846), + [anon_sym_f32] = ACTIONS(1846), + [anon_sym_f64] = ACTIONS(1846), + [anon_sym_bool] = ACTIONS(1846), + [anon_sym_char] = ACTIONS(1846), + [anon_sym_str] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_RBRACK] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [aux_sym__non_special_token_token1] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_abi] = ACTIONS(1846), + [anon_sym_as] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_configurable] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_storage] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_where] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [sym_mutable_specifier] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_integer_literal] = ACTIONS(1848), + [aux_sym_string_literal_token1] = ACTIONS(1848), + [sym_char_literal] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1846), + [sym_raw_string_literal] = ACTIONS(1848), + [sym_float_literal] = ACTIONS(1848), + [sym_block_comment] = ACTIONS(3), + }, + [483] = { + [sym_identifier] = ACTIONS(1850), + [anon_sym_u8] = ACTIONS(1850), + [anon_sym_i8] = ACTIONS(1850), + [anon_sym_u16] = ACTIONS(1850), + [anon_sym_i16] = ACTIONS(1850), + [anon_sym_u32] = ACTIONS(1850), + [anon_sym_i32] = ACTIONS(1850), + [anon_sym_u64] = ACTIONS(1850), + [anon_sym_i64] = ACTIONS(1850), + [anon_sym_u128] = ACTIONS(1850), + [anon_sym_i128] = ACTIONS(1850), + [anon_sym_u256] = ACTIONS(1850), + [anon_sym_i256] = ACTIONS(1850), + [anon_sym_b256] = ACTIONS(1850), + [anon_sym_isize] = ACTIONS(1850), + [anon_sym_usize] = ACTIONS(1850), + [anon_sym_f32] = ACTIONS(1850), + [anon_sym_f64] = ACTIONS(1850), + [anon_sym_bool] = ACTIONS(1850), + [anon_sym_char] = ACTIONS(1850), + [anon_sym_str] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_RBRACK] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [aux_sym__non_special_token_token1] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_abi] = ACTIONS(1850), + [anon_sym_as] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_configurable] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_mod] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_fn] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_impl] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_pub] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_storage] = ACTIONS(1850), + [anon_sym_struct] = ACTIONS(1850), + [anon_sym_trait] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_where] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [sym_mutable_specifier] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1852), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1850), + [sym_raw_string_literal] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), + [sym_block_comment] = ACTIONS(3), + }, + [484] = { + [sym_identifier] = ACTIONS(1319), + [anon_sym_u8] = ACTIONS(1319), + [anon_sym_i8] = ACTIONS(1319), + [anon_sym_u16] = ACTIONS(1319), + [anon_sym_i16] = ACTIONS(1319), + [anon_sym_u32] = ACTIONS(1319), + [anon_sym_i32] = ACTIONS(1319), + [anon_sym_u64] = ACTIONS(1319), + [anon_sym_i64] = ACTIONS(1319), + [anon_sym_u128] = ACTIONS(1319), + [anon_sym_i128] = ACTIONS(1319), + [anon_sym_u256] = ACTIONS(1319), + [anon_sym_i256] = ACTIONS(1319), + [anon_sym_b256] = ACTIONS(1319), + [anon_sym_isize] = ACTIONS(1319), + [anon_sym_usize] = ACTIONS(1319), + [anon_sym_f32] = ACTIONS(1319), + [anon_sym_f64] = ACTIONS(1319), + [anon_sym_bool] = ACTIONS(1319), + [anon_sym_char] = ACTIONS(1319), + [anon_sym_str] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_RBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_abi] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_storage] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(1317), + [anon_sym_COMMA] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym_LT] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym__] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_ref] = ACTIONS(1319), + [sym_mutable_specifier] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PIPE] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(1319), + [anon_sym_move] = ACTIONS(1319), + [anon_sym_deref] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1319), + [sym_metavariable] = ACTIONS(1317), + [sym_raw_string_literal] = ACTIONS(1317), + [sym_float_literal] = ACTIONS(1317), + [sym_block_comment] = ACTIONS(3), + }, + [485] = { + [sym_identifier] = ACTIONS(1838), + [anon_sym_u8] = ACTIONS(1838), + [anon_sym_i8] = ACTIONS(1838), + [anon_sym_u16] = ACTIONS(1838), + [anon_sym_i16] = ACTIONS(1838), + [anon_sym_u32] = ACTIONS(1838), + [anon_sym_i32] = ACTIONS(1838), + [anon_sym_u64] = ACTIONS(1838), + [anon_sym_i64] = ACTIONS(1838), + [anon_sym_u128] = ACTIONS(1838), + [anon_sym_i128] = ACTIONS(1838), + [anon_sym_u256] = ACTIONS(1838), + [anon_sym_i256] = ACTIONS(1838), + [anon_sym_b256] = ACTIONS(1838), + [anon_sym_isize] = ACTIONS(1838), + [anon_sym_usize] = ACTIONS(1838), + [anon_sym_f32] = ACTIONS(1838), + [anon_sym_f64] = ACTIONS(1838), + [anon_sym_bool] = ACTIONS(1838), + [anon_sym_char] = ACTIONS(1838), + [anon_sym_str] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [aux_sym__non_special_token_token1] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_abi] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_configurable] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_storage] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [sym_mutable_specifier] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1840), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1840), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1838), + [sym_raw_string_literal] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), + [sym_block_comment] = ACTIONS(3), + }, + [486] = { + [sym_identifier] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1856), + [anon_sym_i8] = ACTIONS(1856), + [anon_sym_u16] = ACTIONS(1856), + [anon_sym_i16] = ACTIONS(1856), + [anon_sym_u32] = ACTIONS(1856), + [anon_sym_i32] = ACTIONS(1856), + [anon_sym_u64] = ACTIONS(1856), + [anon_sym_i64] = ACTIONS(1856), + [anon_sym_u128] = ACTIONS(1856), + [anon_sym_i128] = ACTIONS(1856), + [anon_sym_u256] = ACTIONS(1856), + [anon_sym_i256] = ACTIONS(1856), + [anon_sym_b256] = ACTIONS(1856), + [anon_sym_isize] = ACTIONS(1856), + [anon_sym_usize] = ACTIONS(1856), + [anon_sym_f32] = ACTIONS(1856), + [anon_sym_f64] = ACTIONS(1856), + [anon_sym_bool] = ACTIONS(1856), + [anon_sym_char] = ACTIONS(1856), + [anon_sym_str] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_RBRACK] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [aux_sym__non_special_token_token1] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [anon_sym_abi] = ACTIONS(1856), + [anon_sym_as] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_configurable] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_mod] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1856), + [anon_sym_fn] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_impl] = ACTIONS(1856), + [anon_sym_let] = ACTIONS(1856), + [anon_sym_match] = ACTIONS(1856), + [anon_sym_pub] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_storage] = ACTIONS(1856), + [anon_sym_struct] = ACTIONS(1856), + [anon_sym_trait] = ACTIONS(1856), + [anon_sym_type] = ACTIONS(1856), + [anon_sym_use] = ACTIONS(1856), + [anon_sym_where] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [sym_mutable_specifier] = ACTIONS(1856), + [anon_sym_DOLLAR] = ACTIONS(1858), + [sym_integer_literal] = ACTIONS(1858), + [aux_sym_string_literal_token1] = ACTIONS(1858), + [sym_char_literal] = ACTIONS(1858), + [anon_sym_true] = ACTIONS(1856), + [anon_sym_false] = ACTIONS(1856), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1856), + [sym_raw_string_literal] = ACTIONS(1858), + [sym_float_literal] = ACTIONS(1858), + [sym_block_comment] = ACTIONS(3), + }, + [487] = { + [sym_identifier] = ACTIONS(869), + [anon_sym_u8] = ACTIONS(869), + [anon_sym_i8] = ACTIONS(869), + [anon_sym_u16] = ACTIONS(869), + [anon_sym_i16] = ACTIONS(869), + [anon_sym_u32] = ACTIONS(869), + [anon_sym_i32] = ACTIONS(869), + [anon_sym_u64] = ACTIONS(869), + [anon_sym_i64] = ACTIONS(869), + [anon_sym_u128] = ACTIONS(869), + [anon_sym_i128] = ACTIONS(869), + [anon_sym_u256] = ACTIONS(869), + [anon_sym_i256] = ACTIONS(869), + [anon_sym_b256] = ACTIONS(869), + [anon_sym_isize] = ACTIONS(869), + [anon_sym_usize] = ACTIONS(869), + [anon_sym_f32] = ACTIONS(869), + [anon_sym_f64] = ACTIONS(869), + [anon_sym_bool] = ACTIONS(869), + [anon_sym_char] = ACTIONS(869), + [anon_sym_str] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_SQUOTE] = ACTIONS(869), + [anon_sym_abi] = ACTIONS(869), + [anon_sym_break] = ACTIONS(869), + [anon_sym_const] = ACTIONS(869), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_default] = ACTIONS(869), + [anon_sym_for] = ACTIONS(869), + [anon_sym_if] = ACTIONS(869), + [anon_sym_match] = ACTIONS(869), + [anon_sym_return] = ACTIONS(869), + [anon_sym_storage] = ACTIONS(869), + [anon_sym_while] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_asm] = ACTIONS(869), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym__] = ACTIONS(869), + [anon_sym_AMP] = ACTIONS(867), + [anon_sym_ref] = ACTIONS(869), + [sym_mutable_specifier] = ACTIONS(869), + [anon_sym_DOT_DOT] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_yield] = ACTIONS(869), + [anon_sym_move] = ACTIONS(869), + [anon_sym_deref] = ACTIONS(869), + [sym_integer_literal] = ACTIONS(867), + [aux_sym_string_literal_token1] = ACTIONS(867), + [sym_char_literal] = ACTIONS(867), + [anon_sym_true] = ACTIONS(869), + [anon_sym_false] = ACTIONS(869), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [sym_self] = ACTIONS(869), + [sym_metavariable] = ACTIONS(867), + [sym_raw_string_literal] = ACTIONS(867), + [sym_float_literal] = ACTIONS(867), + [sym_block_comment] = ACTIONS(3), + }, + [488] = { + [sym_identifier] = ACTIONS(1860), + [anon_sym_u8] = ACTIONS(1860), + [anon_sym_i8] = ACTIONS(1860), + [anon_sym_u16] = ACTIONS(1860), + [anon_sym_i16] = ACTIONS(1860), + [anon_sym_u32] = ACTIONS(1860), + [anon_sym_i32] = ACTIONS(1860), + [anon_sym_u64] = ACTIONS(1860), + [anon_sym_i64] = ACTIONS(1860), + [anon_sym_u128] = ACTIONS(1860), + [anon_sym_i128] = ACTIONS(1860), + [anon_sym_u256] = ACTIONS(1860), + [anon_sym_i256] = ACTIONS(1860), + [anon_sym_b256] = ACTIONS(1860), + [anon_sym_isize] = ACTIONS(1860), + [anon_sym_usize] = ACTIONS(1860), + [anon_sym_f32] = ACTIONS(1860), + [anon_sym_f64] = ACTIONS(1860), + [anon_sym_bool] = ACTIONS(1860), + [anon_sym_char] = ACTIONS(1860), + [anon_sym_str] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [aux_sym__non_special_token_token1] = ACTIONS(1860), + [anon_sym_SQUOTE] = ACTIONS(1860), + [anon_sym_abi] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_configurable] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_mod] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_fn] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_impl] = ACTIONS(1860), + [anon_sym_let] = ACTIONS(1860), + [anon_sym_match] = ACTIONS(1860), + [anon_sym_pub] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_storage] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_trait] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1860), + [anon_sym_use] = ACTIONS(1860), + [anon_sym_where] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [sym_mutable_specifier] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(1862), + [aux_sym_string_literal_token1] = ACTIONS(1862), + [sym_char_literal] = ACTIONS(1862), + [anon_sym_true] = ACTIONS(1860), + [anon_sym_false] = ACTIONS(1860), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1860), + [sym_raw_string_literal] = ACTIONS(1862), + [sym_float_literal] = ACTIONS(1862), + [sym_block_comment] = ACTIONS(3), + }, + [489] = { + [sym_identifier] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1864), + [anon_sym_i8] = ACTIONS(1864), + [anon_sym_u16] = ACTIONS(1864), + [anon_sym_i16] = ACTIONS(1864), + [anon_sym_u32] = ACTIONS(1864), + [anon_sym_i32] = ACTIONS(1864), + [anon_sym_u64] = ACTIONS(1864), + [anon_sym_i64] = ACTIONS(1864), + [anon_sym_u128] = ACTIONS(1864), + [anon_sym_i128] = ACTIONS(1864), + [anon_sym_u256] = ACTIONS(1864), + [anon_sym_i256] = ACTIONS(1864), + [anon_sym_b256] = ACTIONS(1864), + [anon_sym_isize] = ACTIONS(1864), + [anon_sym_usize] = ACTIONS(1864), + [anon_sym_f32] = ACTIONS(1864), + [anon_sym_f64] = ACTIONS(1864), + [anon_sym_bool] = ACTIONS(1864), + [anon_sym_char] = ACTIONS(1864), + [anon_sym_str] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_RBRACK] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [aux_sym__non_special_token_token1] = ACTIONS(1864), + [anon_sym_SQUOTE] = ACTIONS(1864), + [anon_sym_abi] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_configurable] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_mod] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [anon_sym_fn] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_impl] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_match] = ACTIONS(1864), + [anon_sym_pub] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_storage] = ACTIONS(1864), + [anon_sym_struct] = ACTIONS(1864), + [anon_sym_trait] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1864), + [anon_sym_use] = ACTIONS(1864), + [anon_sym_where] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [sym_mutable_specifier] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_integer_literal] = ACTIONS(1866), + [aux_sym_string_literal_token1] = ACTIONS(1866), + [sym_char_literal] = ACTIONS(1866), + [anon_sym_true] = ACTIONS(1864), + [anon_sym_false] = ACTIONS(1864), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1864), + [sym_raw_string_literal] = ACTIONS(1866), + [sym_float_literal] = ACTIONS(1866), [sym_block_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 33, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(722), 1, - aux_sym_string_literal_token1, - ACTIONS(1810), 1, - sym_identifier, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(993), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1870), 1, + anon_sym_RPAREN, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, + anon_sym_POUND, + ACTIONS(1876), 1, + anon_sym_COMMA, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(589), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1505), 1, - sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1509), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(724), 2, - anon_sym_true, - anon_sym_false, - STATE(1847), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1583), 3, - sym_type_binding, - sym_block, - sym__literal, - ACTIONS(1834), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1058), 9, + STATE(500), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -56060,7 +58598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56071,42 +58609,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [131] = 5, - ACTIONS(1850), 1, + [128] = 32, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1880), 1, + anon_sym_RPAREN, + STATE(558), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1725), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(480), 2, + STATE(499), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - ACTIONS(1848), 19, - sym_raw_string_literal, - sym_float_literal, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [253] = 32, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1795), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LT, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1846), 40, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1882), 1, + anon_sym_RPAREN, + STATE(558), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1725), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(499), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56117,108 +58795,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [378] = 32, + ACTIONS(13), 1, anon_sym_str, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_break, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, anon_sym_const, - anon_sym_continue, + ACTIONS(1801), 1, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_match, - anon_sym_return, - anon_sym_storage, - anon_sym_while, - anon_sym_asm, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - [206] = 33, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1884), 1, + anon_sym_RPAREN, + STATE(558), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1725), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(499), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [503] = 32, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(722), 1, - aux_sym_string_literal_token1, - ACTIONS(1810), 1, - sym_identifier, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(993), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1886), 1, + anon_sym_RPAREN, + STATE(558), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1629), 1, + STATE(1725), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(724), 2, - anon_sym_true, - anon_sym_false, - STATE(1847), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1983), 3, - sym_type_binding, - sym_block, - sym__literal, - ACTIONS(1834), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1058), 9, + STATE(499), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -56228,7 +58970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56239,84 +58981,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [337] = 33, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [628] = 32, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(722), 1, - aux_sym_string_literal_token1, - ACTIONS(1810), 1, - sym_identifier, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1888), 1, + anon_sym_RPAREN, + STATE(558), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1725), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(499), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [753] = 32, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(1824), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1830), 1, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(993), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1890), 1, + anon_sym_RPAREN, + STATE(558), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1513), 1, - sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1725), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(724), 2, - anon_sym_true, - anon_sym_false, - STATE(1847), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1798), 3, - sym_type_binding, - sym_block, - sym__literal, - ACTIONS(1834), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1058), 9, + STATE(499), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -56326,7 +59156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56337,38 +59167,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [468] = 3, + [878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 20, + ACTIONS(1894), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_COMMA, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1604), 40, + ACTIONS(1892), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56379,6 +59209,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -56399,42 +59232,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_storage, anon_sym_while, anon_sym_asm, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, + anon_sym_DASH, anon_sym_yield, anon_sym_move, - anon_sym_deref, anon_sym_true, anon_sym_false, sym_identifier, sym_self, - [537] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1458), 20, - sym_raw_string_literal, - sym_float_literal, + [944] = 31, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1795), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LT, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1460), 40, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(558), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1725), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(499), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56445,62 +59321,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [1066] = 31, + ACTIONS(13), 1, anon_sym_str, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_break, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, anon_sym_const, - anon_sym_continue, + ACTIONS(1801), 1, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_match, - anon_sym_return, - anon_sym_storage, - anon_sym_while, - anon_sym_asm, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - [606] = 3, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(534), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1784), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(998), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1000), 40, + STATE(836), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56511,55 +59412,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [1188] = 31, + ACTIONS(13), 1, anon_sym_str, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_break, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, anon_sym_const, - anon_sym_continue, + ACTIONS(1801), 1, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_match, - anon_sym_return, - anon_sym_storage, - anon_sym_while, - anon_sym_asm, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - [675] = 4, - ACTIONS(3), 1, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_pub, + ACTIONS(1874), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(602), 1, + sym_visibility_modifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1538), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1708), 1, sym_line_comment, - ACTIONS(1855), 12, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLAR, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - ACTIONS(1853), 47, + STATE(836), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56570,62 +59503,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - anon_sym_str, - aux_sym__non_special_token_token1, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_as, - anon_sym_break, - anon_sym_configurable, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_for, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_storage, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_where, - anon_sym_while, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [745] = 4, - ACTIONS(3), 1, + [1310] = 3, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1708), 1, sym_line_comment, - ACTIONS(1859), 12, + ACTIONS(829), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLAR, + anon_sym_BANG, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, - ACTIONS(1857), 47, + sym_metavariable, + ACTIONS(827), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56636,6 +59545,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -56643,55 +59555,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, anon_sym_str, - aux_sym__non_special_token_token1, anon_sym_SQUOTE, anon_sym_abi, - anon_sym_as, anon_sym_break, - anon_sym_configurable, anon_sym_const, anon_sym_continue, anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, anon_sym_for, anon_sym_if, - anon_sym_impl, - anon_sym_let, anon_sym_match, - anon_sym_pub, anon_sym_return, anon_sym_storage, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_where, anon_sym_while, - sym_mutable_specifier, + anon_sym_asm, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, anon_sym_true, anon_sym_false, sym_identifier, sym_self, - [815] = 4, - ACTIONS(3), 1, + [1376] = 3, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1708), 1, sym_line_comment, - ACTIONS(1863), 12, + ACTIONS(566), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, - ACTIONS(1861), 47, + sym_metavariable, + ACTIONS(1896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56702,6 +59609,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -56709,56 +59619,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, anon_sym_str, - aux_sym__non_special_token_token1, anon_sym_SQUOTE, anon_sym_abi, - anon_sym_as, anon_sym_break, - anon_sym_configurable, anon_sym_const, anon_sym_continue, anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, anon_sym_for, anon_sym_if, - anon_sym_impl, - anon_sym_let, anon_sym_match, - anon_sym_pub, anon_sym_return, anon_sym_storage, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_where, anon_sym_while, - sym_mutable_specifier, + anon_sym_asm, + anon_sym_yield, + anon_sym_move, anon_sym_true, anon_sym_false, sym_identifier, sym_self, - [885] = 5, - ACTIONS(3), 1, + [1442] = 3, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1708), 1, sym_line_comment, - ACTIONS(1865), 1, - anon_sym_LBRACK, - ACTIONS(1863), 11, + ACTIONS(1900), 17, sym_raw_string_literal, sym_float_literal, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLAR, + anon_sym_BANG, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, - ACTIONS(1861), 47, + sym_metavariable, + ACTIONS(1898), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56769,6 +59671,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -56776,55 +59681,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, anon_sym_str, - aux_sym__non_special_token_token1, anon_sym_SQUOTE, anon_sym_abi, - anon_sym_as, anon_sym_break, - anon_sym_configurable, anon_sym_const, anon_sym_continue, anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, anon_sym_for, anon_sym_if, - anon_sym_impl, - anon_sym_let, anon_sym_match, - anon_sym_pub, anon_sym_return, anon_sym_storage, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_where, anon_sym_while, - sym_mutable_specifier, + anon_sym_asm, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, anon_sym_true, anon_sym_false, sym_identifier, sym_self, - [957] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1708), 1, - sym_line_comment, - ACTIONS(1869), 12, - sym_raw_string_literal, - sym_float_literal, + [1508] = 30, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(1793), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1795), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLAR, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - ACTIONS(1867), 47, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_const, + ACTIONS(1906), 1, + sym_metavariable, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1520), 1, + sym_constrained_type_parameter, + STATE(1798), 1, + sym__type, + STATE(1987), 1, + sym_qualified_type, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1632), 2, + sym_const_parameter, + sym_optional_type_parameter, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56835,62 +59781,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [1627] = 30, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(687), 1, anon_sym_str, - aux_sym__non_special_token_token1, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_as, - anon_sym_break, - anon_sym_configurable, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, anon_sym_const, - anon_sym_continue, + ACTIONS(1801), 1, anon_sym_default, - anon_sym_dep, - anon_sym_enum, + ACTIONS(1803), 1, anon_sym_fn, - anon_sym_for, - anon_sym_if, + ACTIONS(1805), 1, anon_sym_impl, - anon_sym_let, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_storage, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_where, - anon_sym_while, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - [1027] = 4, - ACTIONS(3), 1, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1908), 1, + sym_identifier, + ACTIONS(1910), 1, + anon_sym_for, + ACTIONS(1912), 1, + anon_sym_QMARK, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1329), 1, + sym__type, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1708), 1, sym_line_comment, - ACTIONS(1873), 12, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLAR, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - ACTIONS(1871), 47, + STATE(1332), 2, + sym_higher_ranked_trait_bound, + sym_removed_trait_bound, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56901,62 +59870,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [1746] = 30, + ACTIONS(13), 1, anon_sym_str, - aux_sym__non_special_token_token1, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_as, - anon_sym_break, - anon_sym_configurable, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, anon_sym_fn, - anon_sym_for, - anon_sym_if, + ACTIONS(357), 1, anon_sym_impl, - anon_sym_let, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_storage, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_where, - anon_sym_while, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - [1097] = 4, - ACTIONS(3), 1, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1914), 1, + anon_sym_for, + ACTIONS(1916), 1, + anon_sym_QMARK, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1331), 1, + sym__type, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1708), 1, sym_line_comment, - ACTIONS(1877), 12, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLAR, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - ACTIONS(1875), 47, + STATE(1332), 2, + sym_higher_ranked_trait_bound, + sym_removed_trait_bound, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56967,62 +59959,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [1865] = 30, + ACTIONS(13), 1, anon_sym_str, - aux_sym__non_special_token_token1, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_as, - anon_sym_break, - anon_sym_configurable, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, anon_sym_fn, - anon_sym_for, - anon_sym_if, + ACTIONS(357), 1, anon_sym_impl, - anon_sym_let, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_storage, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_where, - anon_sym_while, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - [1167] = 4, - ACTIONS(3), 1, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1914), 1, + anon_sym_for, + ACTIONS(1916), 1, + anon_sym_QMARK, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1392), 1, + sym__type, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1708), 1, sym_line_comment, - ACTIONS(1881), 12, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLAR, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - ACTIONS(1879), 47, + STATE(1391), 2, + sym_higher_ranked_trait_bound, + sym_removed_trait_bound, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57033,62 +60048,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [1984] = 30, + ACTIONS(13), 1, anon_sym_str, - aux_sym__non_special_token_token1, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_as, - anon_sym_break, - anon_sym_configurable, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, anon_sym_fn, - anon_sym_for, - anon_sym_if, + ACTIONS(357), 1, anon_sym_impl, - anon_sym_let, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_storage, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_where, - anon_sym_while, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - [1237] = 4, - ACTIONS(3), 1, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1914), 1, + anon_sym_for, + ACTIONS(1916), 1, + anon_sym_QMARK, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1329), 1, + sym__type, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1708), 1, sym_line_comment, - ACTIONS(1885), 12, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOLLAR, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - ACTIONS(1883), 47, + STATE(1332), 2, + sym_higher_ranked_trait_bound, + sym_removed_trait_bound, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57099,109 +60137,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [2103] = 30, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(687), 1, anon_sym_str, - aux_sym__non_special_token_token1, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_as, - anon_sym_break, - anon_sym_configurable, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, anon_sym_const, - anon_sym_continue, + ACTIONS(1801), 1, anon_sym_default, - anon_sym_dep, - anon_sym_enum, + ACTIONS(1803), 1, anon_sym_fn, - anon_sym_for, - anon_sym_if, + ACTIONS(1805), 1, anon_sym_impl, - anon_sym_let, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_storage, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_where, - anon_sym_while, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - [1307] = 33, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1908), 1, + sym_identifier, + ACTIONS(1910), 1, + anon_sym_for, + ACTIONS(1912), 1, + anon_sym_QMARK, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1331), 1, + sym__type, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1332), 2, + sym_higher_ranked_trait_bound, + sym_removed_trait_bound, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(685), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [2222] = 30, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1889), 1, - anon_sym_RPAREN, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_COMMA, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(594), 1, - sym_visibility_modifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1910), 1, + anon_sym_for, + ACTIONS(1912), 1, + anon_sym_QMARK, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1541), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1442), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(506), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(1441), 2, + sym_higher_ranked_trait_bound, + sym_removed_trait_bound, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -57211,7 +60304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57222,76 +60315,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [1432] = 32, + [2341] = 29, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1899), 1, - anon_sym_RPAREN, - STATE(596), 1, - sym_visibility_modifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(713), 1, + sym_block, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1716), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1189), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(507), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -57301,7 +60390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57312,76 +60401,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [1554] = 32, + [2456] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_RPAREN, - STATE(596), 1, - sym_visibility_modifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1716), 1, + STATE(1587), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(507), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -57391,7 +60474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57402,76 +60485,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [1676] = 32, + [2568] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1926), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1928), 1, + anon_sym_fn, + ACTIONS(1930), 1, + anon_sym_impl, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1934), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1936), 1, + anon_sym_STAR, + ACTIONS(1938), 1, + anon_sym_AMP, + ACTIONS(1940), 1, + sym_mutable_specifier, + ACTIONS(1942), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1944), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(1903), 1, - anon_sym_RPAREN, - STATE(596), 1, - sym_visibility_modifier, - STATE(987), 1, + STATE(625), 1, sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, + STATE(634), 1, sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1716), 1, + STATE(658), 1, + sym_primitive_type, + STATE(663), 1, + sym_generic_type_with_turbofish, + STATE(725), 1, sym__type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2054), 1, sym_function_modifiers, - STATE(2059), 1, + STATE(2057), 1, sym_scoped_identifier, + STATE(2140), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(507), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(716), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -57481,7 +60558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57492,76 +60569,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [1798] = 32, + [2680] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1905), 1, + ACTIONS(1946), 1, anon_sym_RPAREN, - STATE(596), 1, - sym_visibility_modifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1716), 1, + STATE(1511), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(507), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -57571,7 +60642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57582,76 +60653,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [1920] = 32, + [2792] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1907), 1, - anon_sym_RPAREN, - STATE(596), 1, - sym_visibility_modifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1948), 1, + sym_mutable_specifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1716), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1188), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(507), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -57661,7 +60726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57672,76 +60737,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [2042] = 32, + [2904] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1909), 1, + ACTIONS(1950), 1, anon_sym_RPAREN, - STATE(596), 1, - sym_visibility_modifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1716), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1495), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(507), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -57751,7 +60810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57762,35 +60821,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [2164] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(802), 17, - sym_raw_string_literal, - sym_float_literal, + [3016] = 28, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, + ACTIONS(1795), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(800), 37, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1952), 1, + anon_sym_RPAREN, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1587), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57801,95 +60905,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - anon_sym_str, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_match, - anon_sym_return, - anon_sym_storage, - anon_sym_while, - anon_sym_asm, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [2227] = 31, + [3128] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(596), 1, - sym_visibility_modifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1954), 1, + anon_sym_RPAREN, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1716), 1, + STATE(1587), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(507), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -57899,7 +60978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57910,35 +60989,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [2346] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1913), 17, - sym_raw_string_literal, - sym_float_literal, + [3240] = 28, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, + ACTIONS(1795), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1911), 37, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1956), 1, + anon_sym_RPAREN, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1587), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57949,155 +61073,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [3352] = 28, + ACTIONS(13), 1, anon_sym_str, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_match, - anon_sym_return, - anon_sym_storage, - anon_sym_while, - anon_sym_asm, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [2409] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1917), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1915), 37, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_match, - anon_sym_return, - anon_sym_storage, - anon_sym_while, - anon_sym_asm, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [2472] = 31, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(545), 1, - sym_visibility_modifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1958), 1, + sym_identifier, + ACTIONS(1960), 1, + anon_sym_LT, + STATE(555), 1, + sym_type_parameters, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1485), 1, + STATE(1288), 1, + sym_scoped_type_identifier, + STATE(1424), 1, sym__type, - STATE(1516), 1, + STATE(1433), 1, + sym_generic_type, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(922), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58107,7 +61146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58118,74 +61157,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [2591] = 31, + [3464] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_pub, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(553), 1, - sym_visibility_modifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1962), 1, + sym_mutable_specifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1573), 1, + STATE(1904), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(922), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58195,7 +61230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58206,132 +61241,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [2710] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(555), 18, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_BANG, + [3576] = 28, + ACTIONS(75), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1919), 36, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, + ACTIONS(687), 1, anon_sym_str, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_match, - anon_sym_return, - anon_sym_storage, - anon_sym_while, - anon_sym_asm, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [2773] = 30, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, - anon_sym_str, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, + ACTIONS(1803), 1, anon_sym_fn, - ACTIONS(1824), 1, + ACTIONS(1805), 1, anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, + ACTIONS(1811), 1, anon_sym_STAR, - ACTIONS(1832), 1, + ACTIONS(1813), 1, anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(1923), 1, - anon_sym_const, - ACTIONS(1925), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(993), 1, + ACTIONS(1908), 1, + sym_identifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1566), 1, - sym_constrained_type_parameter, - STATE(1679), 1, + STATE(1798), 1, sym__type, - STATE(2044), 1, + STATE(1987), 1, + sym_qualified_type, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2104), 1, - sym_qualified_type, - STATE(2162), 1, + STATE(2169), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1779), 2, - sym_const_parameter, - sym_optional_type_parameter, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58341,7 +61314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58352,72 +61325,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [2889] = 30, + [3688] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1927), 1, - anon_sym_for, - ACTIONS(1929), 1, - anon_sym_QMARK, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1960), 1, + anon_sym_LT, + ACTIONS(1964), 1, + sym_identifier, + STATE(554), 1, + sym_type_parameters, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, + STATE(1294), 1, + sym_scoped_type_identifier, + STATE(1397), 1, sym_generic_type, - STATE(1422), 1, + STATE(1398), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1433), 2, - sym_higher_ranked_trait_bound, - sym_removed_trait_bound, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58427,7 +61398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58438,72 +61409,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [3005] = 30, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [3800] = 28, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(1927), 1, - anon_sym_for, - ACTIONS(1929), 1, - anon_sym_QMARK, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1966), 1, + sym_mutable_specifier, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1347), 1, + STATE(1188), 1, sym__type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, - sym_higher_ranked_trait_bound, - sym_removed_trait_bound, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58513,7 +61482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58524,72 +61493,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [3121] = 30, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [3912] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1933), 1, - anon_sym_for, - ACTIONS(1935), 1, - anon_sym_QMARK, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1462), 1, + STATE(1180), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1463), 2, - sym_higher_ranked_trait_bound, - sym_removed_trait_bound, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58599,7 +61564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58610,72 +61575,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [3237] = 30, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [4021] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1933), 1, - anon_sym_for, - ACTIONS(1935), 1, - anon_sym_QMARK, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1347), 1, - sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1960), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, - sym_higher_ranked_trait_bound, - sym_removed_trait_bound, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58685,7 +61646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58696,72 +61657,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [3353] = 30, + [4130] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1927), 1, - anon_sym_for, - ACTIONS(1929), 1, - anon_sym_QMARK, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1348), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1423), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, - sym_higher_ranked_trait_bound, - sym_removed_trait_bound, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58771,7 +61728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58782,72 +61739,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [3469] = 30, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [4239] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1933), 1, - anon_sym_for, - ACTIONS(1935), 1, - anon_sym_QMARK, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1348), 1, + STATE(1376), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, - sym_higher_ranked_trait_bound, - sym_removed_trait_bound, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58857,7 +61810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58868,69 +61821,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [3585] = 29, + [4348] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(260), 1, - anon_sym_LBRACE, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(668), 1, - sym_block, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1100), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1427), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58940,7 +61892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58951,67 +61903,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [3697] = 28, + [4457] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(350), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(1937), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1939), 1, - anon_sym_LT, - STATE(573), 1, - sym_type_parameters, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(1291), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1397), 1, + STATE(1425), 1, sym__type, - STATE(1407), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59021,7 +61974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59032,67 +61985,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [3806] = 28, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [4566] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1679), 1, + STATE(1922), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2104), 1, - sym_qualified_type, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59102,7 +62056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59113,67 +62067,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [3915] = 28, + [4675] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1941), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1486), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1511), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59183,7 +62138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59194,67 +62149,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [4024] = 28, + [4784] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1943), 1, - sym_mutable_specifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1888), 1, + STATE(1547), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59264,7 +62220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59275,67 +62231,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [4133] = 28, + [4893] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1945), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1699), 1, + STATE(1782), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59345,7 +62302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59356,67 +62313,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [4242] = 28, + [5002] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1951), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_default, - ACTIONS(1955), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(1957), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(1959), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_COLON_COLON, - ACTIONS(1963), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1965), 1, - anon_sym_AMP, - ACTIONS(1967), 1, - sym_mutable_specifier, - ACTIONS(1969), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - ACTIONS(1971), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(618), 1, - sym_scoped_type_identifier, - STATE(631), 1, - sym_generic_type_with_turbofish, - STATE(648), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, sym_generic_type, - STATE(657), 1, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, sym_primitive_type, - STATE(665), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1399), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2053), 1, + STATE(2000), 1, sym_function_modifiers, - STATE(2056), 1, - sym_scoped_identifier, - STATE(2134), 1, + STATE(2045), 1, sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(689), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59426,7 +62384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59437,67 +62395,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [4351] = 28, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [5111] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(1973), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1699), 1, + STATE(1663), 1, sym__type, - STATE(2044), 1, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59507,7 +62466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59518,67 +62477,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [4460] = 28, + [5220] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1975), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1699), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1330), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59588,7 +62548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59599,67 +62559,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [4569] = 28, + [5329] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1926), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1928), 1, + anon_sym_fn, + ACTIONS(1930), 1, + anon_sym_impl, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1934), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1936), 1, + anon_sym_STAR, + ACTIONS(1938), 1, + anon_sym_AMP, + ACTIONS(1942), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1944), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(1977), 1, - anon_sym_RPAREN, - STATE(987), 1, + STATE(625), 1, sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, + STATE(634), 1, sym_generic_type, - STATE(1512), 1, + STATE(658), 1, + sym_primitive_type, + STATE(663), 1, + sym_generic_type_with_turbofish, + STATE(730), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2054), 1, sym_function_modifiers, - STATE(2059), 1, + STATE(2057), 1, sym_scoped_identifier, + STATE(2140), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(716), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59669,7 +62630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59680,67 +62641,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [4678] = 28, + [5438] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(350), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(1939), 1, - anon_sym_LT, - ACTIONS(1979), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(561), 1, - sym_type_parameters, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(1273), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1411), 1, + STATE(1377), 1, sym__type, - STATE(1417), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59750,7 +62712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59761,67 +62723,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [4787] = 28, + [5547] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1981), 1, - sym_mutable_specifier, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1051), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1893), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59831,7 +62794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59842,67 +62805,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [4896] = 28, + [5656] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1983), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1699), 1, + STATE(1662), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59912,7 +62876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59923,67 +62887,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [5005] = 28, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [5765] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1985), 1, - sym_mutable_specifier, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1051), 1, - sym__type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1875), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59993,7 +62958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60004,65 +62969,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [5114] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [5874] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1780), 1, + STATE(1515), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60072,7 +63040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60083,65 +63051,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [5220] = 27, + [5983] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1372), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1387), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60151,7 +63122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60162,121 +63133,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [5326] = 4, - ACTIONS(1987), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1861), 20, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_else, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - sym_identifier, - ACTIONS(1863), 28, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [5386] = 27, + [6092] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1951), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_default, - ACTIONS(1955), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(1957), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(1959), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_COLON_COLON, - ACTIONS(1963), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1965), 1, - anon_sym_AMP, - ACTIONS(1969), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - ACTIONS(1971), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(618), 1, - sym_scoped_type_identifier, - STATE(631), 1, - sym_generic_type_with_turbofish, - STATE(648), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, sym_generic_type, - STATE(657), 1, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, sym_primitive_type, - STATE(675), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1359), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2053), 1, + STATE(2000), 1, sym_function_modifiers, - STATE(2056), 1, - sym_scoped_identifier, - STATE(2134), 1, + STATE(2045), 1, sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(689), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60286,7 +63204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60297,65 +63215,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [5492] = 27, + [6201] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1379), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1411), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60365,7 +63286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60376,65 +63297,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [5598] = 27, + [6310] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1825), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [6419] = 27, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, sym_generic_type, - STATE(1370), 1, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1480), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60444,7 +63450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60455,65 +63461,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [5704] = 27, + [6528] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1384), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1371), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60523,7 +63532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60534,65 +63543,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [5810] = 27, + [6637] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1595), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1430), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60602,7 +63614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60613,65 +63625,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [5916] = 27, + [6746] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1701), 1, + STATE(1710), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60681,7 +63696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60692,65 +63707,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6022] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [6855] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1586), 1, + STATE(1780), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60760,7 +63778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60771,65 +63789,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6128] = 27, + [6964] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1399), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1432), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60839,7 +63860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60850,65 +63871,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6234] = 27, + [7073] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1968), 1, + sym_identifier, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, + STATE(1293), 1, + sym_scoped_type_identifier, + STATE(1368), 1, sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1517), 1, + STATE(1370), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60918,7 +63942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60929,65 +63953,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6340] = 27, + [7182] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1970), 1, + sym_identifier, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, + STATE(1292), 1, + sym_scoped_type_identifier, + STATE(1383), 1, sym_generic_type, - STATE(1402), 1, + STATE(1388), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60997,7 +64024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61008,65 +64035,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6446] = 27, + [7291] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1404), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1743), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61076,7 +64106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61087,65 +64117,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6552] = 27, + [7400] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1408), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1381), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61155,7 +64188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61166,65 +64199,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6658] = 27, + [7509] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1508), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1784), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1176), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [7618] = 27, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, + sym_primitive_type, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(1666), 1, + sym__type, + STATE(2000), 1, sym_function_modifiers, - STATE(2059), 1, + STATE(2045), 1, + sym_bracketed_type, + STATE(2052), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61234,7 +64352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61245,65 +64363,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6764] = 27, + [7727] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1926), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1928), 1, + anon_sym_fn, + ACTIONS(1930), 1, + anon_sym_impl, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1934), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1936), 1, + anon_sym_STAR, + ACTIONS(1938), 1, + anon_sym_AMP, + ACTIONS(1942), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1944), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, + STATE(625), 1, sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, + STATE(634), 1, sym_generic_type, - STATE(1030), 1, + STATE(658), 1, + sym_primitive_type, + STATE(663), 1, + sym_generic_type_with_turbofish, + STATE(705), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2054), 1, sym_function_modifiers, - STATE(2059), 1, + STATE(2057), 1, sym_scoped_identifier, + STATE(2140), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(716), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61313,7 +64434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61324,65 +64445,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6870] = 27, + [7836] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1926), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1928), 1, + anon_sym_fn, + ACTIONS(1930), 1, + anon_sym_impl, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1934), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1936), 1, + anon_sym_STAR, + ACTIONS(1938), 1, + anon_sym_AMP, + ACTIONS(1942), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1944), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, + STATE(625), 1, sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, + STATE(634), 1, sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1699), 1, + STATE(658), 1, + sym_primitive_type, + STATE(663), 1, + sym_generic_type_with_turbofish, + STATE(745), 1, sym__type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2054), 1, sym_function_modifiers, - STATE(2059), 1, + STATE(2057), 1, sym_scoped_identifier, + STATE(2140), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(716), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61392,7 +64516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61403,65 +64527,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [6976] = 27, + [7945] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1539), 1, + STATE(1610), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61471,7 +64598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61482,65 +64609,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [7082] = 27, + [8054] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1430), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1587), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61550,7 +64680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61561,65 +64691,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [7188] = 27, + [8163] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1431), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1597), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61629,7 +64762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61640,125 +64773,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [7294] = 8, - ACTIONS(1991), 1, - anon_sym_LPAREN, - ACTIONS(1995), 1, - anon_sym_COLON_COLON, - ACTIONS(1997), 1, - anon_sym_LT2, - STATE(637), 1, - sym_parameters, - STATE(642), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1993), 17, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, + [8272] = 27, + ACTIONS(75), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(1989), 27, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [7362] = 27, - ACTIONS(13), 1, + ACTIONS(687), 1, anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(1949), 1, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1951), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1955), 1, + ACTIONS(1803), 1, anon_sym_fn, - ACTIONS(1957), 1, + ACTIONS(1805), 1, anon_sym_impl, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1963), 1, + ACTIONS(1811), 1, anon_sym_STAR, - ACTIONS(1965), 1, + ACTIONS(1813), 1, anon_sym_AMP, - ACTIONS(1969), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1971), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(618), 1, - sym_scoped_type_identifier, - STATE(631), 1, - sym_generic_type_with_turbofish, - STATE(648), 1, + ACTIONS(1908), 1, + sym_identifier, + STATE(1077), 1, sym_generic_type, - STATE(657), 1, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, sym_primitive_type, - STATE(710), 1, - sym__type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2053), 1, - sym_function_modifiers, - STATE(2056), 1, - sym_scoped_identifier, - STATE(2134), 1, + STATE(1774), 1, + sym__type, + STATE(2045), 1, sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(689), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61768,7 +64844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61779,65 +64855,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [7468] = 27, + [8381] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1674), 1, + STATE(1974), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61847,7 +64926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61858,65 +64937,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [7574] = 27, + [8490] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1346), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1975), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61926,7 +65008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61937,65 +65019,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [7680] = 27, + [8599] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1947), 1, + ACTIONS(1920), 1, sym_identifier, - ACTIONS(1949), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1951), 1, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(1926), 1, anon_sym_default, - ACTIONS(1955), 1, + ACTIONS(1928), 1, anon_sym_fn, - ACTIONS(1957), 1, + ACTIONS(1930), 1, anon_sym_impl, - ACTIONS(1959), 1, + ACTIONS(1932), 1, anon_sym_BANG, - ACTIONS(1961), 1, + ACTIONS(1934), 1, anon_sym_COLON_COLON, - ACTIONS(1963), 1, + ACTIONS(1936), 1, anon_sym_STAR, - ACTIONS(1965), 1, + ACTIONS(1938), 1, anon_sym_AMP, - ACTIONS(1969), 1, + ACTIONS(1942), 1, sym_self, - ACTIONS(1971), 1, + ACTIONS(1944), 1, sym_metavariable, - STATE(618), 1, + STATE(625), 1, sym_scoped_type_identifier, - STATE(631), 1, - sym_generic_type_with_turbofish, - STATE(648), 1, + STATE(634), 1, sym_generic_type, - STATE(657), 1, + STATE(658), 1, sym_primitive_type, - STATE(708), 1, + STATE(663), 1, + sym_generic_type_with_turbofish, + STATE(695), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2053), 1, + STATE(2054), 1, sym_function_modifiers, - STATE(2056), 1, + STATE(2057), 1, sym_scoped_identifier, - STATE(2134), 1, + STATE(2140), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(689), 9, + STATE(716), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62005,7 +65090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62016,144 +65101,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [7786] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, - anon_sym_str, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1931), 1, - sym_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, - sym_scoped_type_identifier, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1733), 1, - sym__type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2059), 1, - sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(680), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [7892] = 27, + [8708] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1782), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1415), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62163,7 +65172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62174,144 +65183,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [7998] = 27, + [8817] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1951), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_default, - ACTIONS(1955), 1, - anon_sym_fn, - ACTIONS(1957), 1, - anon_sym_impl, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_COLON_COLON, - ACTIONS(1963), 1, - anon_sym_STAR, - ACTIONS(1965), 1, - anon_sym_AMP, - ACTIONS(1969), 1, - sym_self, - ACTIONS(1971), 1, - sym_metavariable, - STATE(618), 1, - sym_scoped_type_identifier, - STATE(631), 1, - sym_generic_type_with_turbofish, - STATE(648), 1, - sym_generic_type, - STATE(657), 1, - sym_primitive_type, - STATE(706), 1, - sym__type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2053), 1, - sym_function_modifiers, - STATE(2056), 1, - sym_scoped_identifier, - STATE(2134), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(689), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [8104] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1549), 1, + STATE(1757), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62321,7 +65254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62332,65 +65265,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [8210] = 27, + [8926] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1766), 1, + STATE(1913), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62400,7 +65336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62411,65 +65347,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [8316] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [9035] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(1999), 1, + ACTIONS(1908), 1, sym_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(1285), 1, - sym_scoped_type_identifier, - STATE(1416), 1, + STATE(1189), 1, sym__type, - STATE(1432), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62479,7 +65418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62490,65 +65429,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [8422] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [9144] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1746), 1, + STATE(1187), 1, sym__type, - STATE(2044), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62558,7 +65500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62569,144 +65511,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [8528] = 27, + [9253] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, + STATE(1077), 1, sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1705), 1, - sym__type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [8634] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, - anon_sym_str, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1931), 1, - sym_identifier, - STATE(993), 1, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1778), 1, + STATE(1184), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62716,7 +65582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62727,65 +65593,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [8740] = 27, - ACTIONS(73), 1, + [9362] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(682), 1, + ACTIONS(687), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, + ACTIONS(1803), 1, anon_sym_fn, - ACTIONS(1824), 1, + ACTIONS(1805), 1, anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, + ACTIONS(1811), 1, anon_sym_STAR, - ACTIONS(1832), 1, + ACTIONS(1813), 1, anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1908), 1, sym_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1182), 1, + sym__type, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1980), 1, - sym__type, - STATE(2044), 1, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, + STATE(2169), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62795,7 +65664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62806,65 +65675,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [8846] = 27, + [9471] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1781), 1, + STATE(1848), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62874,7 +65746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62885,65 +65757,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [8952] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [9580] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(1949), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, + anon_sym_BANG, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1951), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1955), 1, + ACTIONS(1803), 1, anon_sym_fn, - ACTIONS(1957), 1, + ACTIONS(1805), 1, anon_sym_impl, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1963), 1, + ACTIONS(1811), 1, anon_sym_STAR, - ACTIONS(1965), 1, + ACTIONS(1813), 1, anon_sym_AMP, - ACTIONS(1969), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1971), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(618), 1, - sym_scoped_type_identifier, - STATE(631), 1, - sym_generic_type_with_turbofish, - STATE(648), 1, + ACTIONS(1908), 1, + sym_identifier, + STATE(1077), 1, sym_generic_type, - STATE(657), 1, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, sym_primitive_type, - STATE(662), 1, - sym__type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2053), 1, - sym_function_modifiers, - STATE(2056), 1, - sym_scoped_identifier, - STATE(2134), 1, + STATE(1602), 1, + sym__type, + STATE(2045), 1, sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(689), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62953,7 +65828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62964,65 +65839,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [9058] = 27, + [9689] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1769), 1, + STATE(1982), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63032,7 +65910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63043,65 +65921,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [9164] = 27, + [9798] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1791), 1, + STATE(1584), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63111,7 +65992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63122,65 +66003,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [9270] = 27, + [9907] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1497), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1326), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63190,7 +66074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63201,65 +66085,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [9376] = 27, + [10016] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1951), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_default, - ACTIONS(1955), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(1957), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(1959), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_COLON_COLON, - ACTIONS(1963), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1965), 1, - anon_sym_AMP, - ACTIONS(1969), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - ACTIONS(1971), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(618), 1, - sym_scoped_type_identifier, - STATE(631), 1, - sym_generic_type_with_turbofish, - STATE(648), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, sym_generic_type, - STATE(657), 1, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, sym_primitive_type, - STATE(671), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1189), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2053), 1, + STATE(2000), 1, sym_function_modifiers, - STATE(2056), 1, - sym_scoped_identifier, - STATE(2134), 1, + STATE(2045), 1, sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(689), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63269,7 +66156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63280,125 +66167,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [9482] = 8, - ACTIONS(1991), 1, - anon_sym_LPAREN, - ACTIONS(1997), 1, - anon_sym_LT2, - ACTIONS(2005), 1, - anon_sym_COLON_COLON, - STATE(637), 1, - sym_parameters, - STATE(642), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2003), 17, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2001), 27, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [9550] = 27, + [10125] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(2007), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(1277), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1403), 1, - sym_generic_type, - STATE(1405), 1, + STATE(1187), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63408,7 +66238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63419,65 +66249,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [9656] = 27, + [10234] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1676), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1358), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63487,7 +66320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63498,65 +66331,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [9762] = 27, - ACTIONS(73), 1, + [10343] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(682), 1, + ACTIONS(687), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, + ACTIONS(1803), 1, anon_sym_fn, - ACTIONS(1824), 1, + ACTIONS(1805), 1, anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, + ACTIONS(1811), 1, anon_sym_STAR, - ACTIONS(1832), 1, + ACTIONS(1813), 1, anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1908), 1, sym_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1030), 1, - sym__type, - STATE(1267), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1604), 1, + sym__type, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, + STATE(2169), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63566,7 +66402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63577,65 +66413,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [9868] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [10452] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1100), 1, - sym__type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1405), 1, + sym__type, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63645,7 +66484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63656,65 +66495,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [9974] = 27, + [10561] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + ACTIONS(1972), 1, + sym_self, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1389), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1491), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63724,7 +66566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63735,65 +66577,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [10080] = 27, - ACTIONS(73), 1, + [10670] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(682), 1, + ACTIONS(687), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, + ACTIONS(1803), 1, anon_sym_fn, - ACTIONS(1824), 1, + ACTIONS(1805), 1, anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, + ACTIONS(1811), 1, anon_sym_STAR, - ACTIONS(1832), 1, + ACTIONS(1813), 1, anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1908), 1, sym_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1099), 1, + STATE(1172), 1, sym__type, - STATE(1267), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, + STATE(2169), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63803,7 +66648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63814,65 +66659,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [10186] = 27, + [10779] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1032), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1177), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63882,7 +66730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63893,65 +66741,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [10292] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [10888] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1645), 1, + STATE(1538), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63961,7 +66812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63972,144 +66823,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [10398] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [10997] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1094), 1, - sym__type, - STATE(1267), 1, - sym_scoped_type_identifier, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2059), 1, - sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(680), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [10504] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1951), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_default, - ACTIONS(1955), 1, - anon_sym_fn, - ACTIONS(1957), 1, - anon_sym_impl, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_COLON_COLON, - ACTIONS(1963), 1, - anon_sym_STAR, - ACTIONS(1965), 1, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1969), 1, - sym_self, - ACTIONS(1971), 1, - sym_metavariable, - STATE(618), 1, - sym_scoped_type_identifier, - STATE(631), 1, - sym_generic_type_with_turbofish, - STATE(648), 1, + STATE(1077), 1, sym_generic_type, - STATE(657), 1, + STATE(1105), 1, + sym_generic_type_with_turbofish, + STATE(1109), 1, sym_primitive_type, - STATE(674), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1390), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2053), 1, + STATE(2000), 1, sym_function_modifiers, - STATE(2056), 1, - sym_scoped_identifier, - STATE(2134), 1, + STATE(2045), 1, sym_bracketed_type, + STATE(2052), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(689), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64119,7 +66894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64130,65 +66905,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [10610] = 27, + [11106] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1362), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1524), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64198,7 +66976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64209,120 +66987,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [10716] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1861), 20, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_else, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - sym_identifier, - ACTIONS(1863), 29, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [10774] = 27, + [11215] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1850), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1182), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64332,7 +67058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64343,65 +67069,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [10880] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [11324] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1512), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1330), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64411,7 +67140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64422,65 +67151,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [10986] = 27, + [11433] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1741), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1389), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64490,7 +67222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64501,65 +67233,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [11092] = 27, + [11542] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1100), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1374), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64569,7 +67304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64580,144 +67315,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [11198] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [11651] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1822), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(1824), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1931), 1, - sym_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, - sym_scoped_type_identifier, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1658), 1, - sym__type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2059), 1, - sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(680), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [11304] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, - anon_sym_str, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1346), 1, - sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1521), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64727,7 +67386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64738,65 +67397,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [11410] = 27, + [11760] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1360), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1676), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64806,7 +67468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64817,65 +67479,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [11516] = 27, + [11869] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1099), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1382), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64885,7 +67550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64896,65 +67561,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [11622] = 27, + [11978] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1926), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1928), 1, + anon_sym_fn, + ACTIONS(1930), 1, + anon_sym_impl, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1934), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1936), 1, + anon_sym_STAR, + ACTIONS(1938), 1, + anon_sym_AMP, + ACTIONS(1942), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1944), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, + STATE(625), 1, sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, + STATE(634), 1, sym_generic_type, - STATE(1042), 1, + STATE(658), 1, + sym_primitive_type, + STATE(663), 1, + sym_generic_type_with_turbofish, + STATE(752), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2054), 1, sym_function_modifiers, - STATE(2059), 1, + STATE(2057), 1, sym_scoped_identifier, + STATE(2140), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(716), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64964,7 +67632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64975,65 +67643,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [11728] = 27, + [12087] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1485), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1957), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65043,7 +67714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65054,65 +67725,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [11834] = 27, + [12196] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1359), 1, - sym__type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1546), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65122,7 +67796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65133,65 +67807,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [11940] = 27, + [12305] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1573), 1, + STATE(1502), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65201,7 +67878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65212,65 +67889,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [12046] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [12414] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1393), 1, + STATE(1184), 1, sym__type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65280,7 +67960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65291,65 +67971,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [12152] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [12523] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1343), 1, + STATE(1177), 1, sym__type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65359,7 +68042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65370,65 +68053,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [12258] = 27, + [12632] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1926), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1928), 1, + anon_sym_fn, + ACTIONS(1930), 1, + anon_sym_impl, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1934), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1936), 1, + anon_sym_STAR, + ACTIONS(1938), 1, + anon_sym_AMP, + ACTIONS(1942), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1944), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, + STATE(625), 1, sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, + STATE(634), 1, sym_generic_type, - STATE(1361), 1, + STATE(658), 1, + sym_primitive_type, + STATE(663), 1, + sym_generic_type_with_turbofish, + STATE(722), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2054), 1, sym_function_modifiers, - STATE(2059), 1, + STATE(2057), 1, sym_scoped_identifier, + STATE(2140), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(716), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65438,7 +68124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65449,65 +68135,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [12364] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [12741] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1371), 1, - sym__type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1963), 1, + sym__type, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65517,7 +68206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65528,65 +68217,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [12470] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [12850] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1895), 1, + STATE(1180), 1, sym__type, - STATE(2044), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65596,7 +68288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65607,65 +68299,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [12576] = 27, + [12959] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1812), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1172), 1, sym__type, - STATE(2044), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65675,7 +68370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65686,65 +68381,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [12682] = 27, - ACTIONS(73), 1, + [13068] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(682), 1, + ACTIONS(687), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, + ACTIONS(1803), 1, anon_sym_fn, - ACTIONS(1824), 1, + ACTIONS(1805), 1, anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, + ACTIONS(1811), 1, anon_sym_STAR, - ACTIONS(1832), 1, + ACTIONS(1813), 1, anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1908), 1, sym_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1032), 1, - sym__type, - STATE(1267), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1712), 1, + sym__type, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, + STATE(2169), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65754,7 +68452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65765,65 +68463,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [12788] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [13177] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1045), 1, - sym__type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1684), 1, + sym__type, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65833,7 +68534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65844,65 +68545,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [12894] = 27, + [13286] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1924), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1926), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1928), 1, + anon_sym_fn, + ACTIONS(1930), 1, + anon_sym_impl, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1934), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1936), 1, + anon_sym_STAR, + ACTIONS(1938), 1, + anon_sym_AMP, + ACTIONS(1942), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1944), 1, sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, + STATE(625), 1, sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, + STATE(634), 1, sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1522), 1, + STATE(658), 1, + sym_primitive_type, + STATE(663), 1, + sym_generic_type_with_turbofish, + STATE(742), 1, sym__type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2054), 1, sym_function_modifiers, - STATE(2059), 1, + STATE(2057), 1, sym_scoped_identifier, + STATE(2140), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(716), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65912,7 +68616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65923,65 +68627,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [13000] = 27, + [13395] = 27, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, + ACTIONS(355), 1, anon_sym_fn, - ACTIONS(352), 1, + ACTIONS(357), 1, anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1897), 1, + ACTIONS(1878), 1, anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, + STATE(1112), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(1560), 1, + STATE(1733), 1, sym__type, - STATE(2044), 1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65991,7 +68698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66002,65 +68709,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [13106] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [13504] = 27, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(357), 1, + anon_sym_impl, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(993), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1042), 1, - sym__type, - STATE(1267), 1, + STATE(1112), 1, sym_scoped_type_identifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1711), 1, + sym__type, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66070,7 +68780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66081,65 +68791,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [13212] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + [13613] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1805), 1, + anon_sym_impl, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1836), 1, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1887), 1, + ACTIONS(1908), 1, sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1376), 1, - sym__type, - STATE(1516), 1, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(1705), 1, + sym__type, + STATE(2045), 1, sym_bracketed_type, STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, sym_scoped_identifier, + STATE(2169), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66149,7 +68862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66160,65 +68873,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [13318] = 27, - ACTIONS(73), 1, + [13722] = 27, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(682), 1, + ACTIONS(687), 1, anon_sym_str, - ACTIONS(698), 1, + ACTIONS(703), 1, anon_sym_BANG, - ACTIONS(1812), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1814), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1820), 1, + ACTIONS(1801), 1, anon_sym_default, - ACTIONS(1822), 1, + ACTIONS(1803), 1, anon_sym_fn, - ACTIONS(1824), 1, + ACTIONS(1805), 1, anon_sym_impl, - ACTIONS(1828), 1, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1830), 1, + ACTIONS(1811), 1, anon_sym_STAR, - ACTIONS(1832), 1, + ACTIONS(1813), 1, anon_sym_AMP, - ACTIONS(1836), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1838), 1, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1931), 1, + ACTIONS(1908), 1, sym_identifier, - STATE(993), 1, + STATE(1077), 1, + sym_generic_type, + STATE(1105), 1, sym_generic_type_with_turbofish, - STATE(998), 1, + STATE(1109), 1, sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1343), 1, + STATE(1326), 1, sym__type, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2044), 1, + STATE(2045), 1, sym_bracketed_type, - STATE(2059), 1, + STATE(2052), 1, sym_scoped_identifier, - STATE(2162), 1, + STATE(2169), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 9, + STATE(1176), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66228,7 +68944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(680), 16, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66239,22 +68955,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [13424] = 3, + [13831] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1883), 20, + ACTIONS(1864), 20, anon_sym_COLON, anon_sym_as, anon_sym_where, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -66267,10 +68985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, sym_identifier, - ACTIONS(1885), 29, + ACTIONS(1866), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -66300,574 +69019,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [13482] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, - anon_sym_str, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1931), 1, - sym_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1267), 1, - sym_scoped_type_identifier, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1709), 1, - sym__type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2059), 1, - sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(680), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [13588] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1395), 1, - sym__type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [13694] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1775), 1, - sym__type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [13800] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1375), 1, - sym__type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [13906] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1094), 1, - sym__type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [14012] = 27, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, - anon_sym_str, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1824), 1, - anon_sym_impl, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1830), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - anon_sym_AMP, - ACTIONS(1836), 1, - sym_self, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1931), 1, - sym_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1045), 1, - sym__type, - STATE(1267), 1, - sym_scoped_type_identifier, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2059), 1, - sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(680), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [14118] = 27, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(352), 1, - anon_sym_impl, - ACTIONS(698), 1, - anon_sym_BANG, - ACTIONS(702), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_LBRACK, - ACTIONS(1814), 1, + [13889] = 8, + ACTIONS(1976), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1828), 1, + ACTIONS(1980), 1, anon_sym_COLON_COLON, - ACTIONS(1838), 1, - sym_metavariable, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(2009), 1, - sym_self, - STATE(987), 1, - sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type_with_turbofish, - STATE(998), 1, - sym_primitive_type, - STATE(999), 1, - sym_generic_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(1521), 1, - sym__type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [14224] = 7, - ACTIONS(1991), 1, - anon_sym_LPAREN, - ACTIONS(1997), 1, + ACTIONS(1982), 1, anon_sym_LT2, - STATE(636), 1, + STATE(641), 1, sym_parameters, - STATE(651), 1, + STATE(652), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 17, + ACTIONS(1978), 17, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -66880,10 +69047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2011), 27, + ACTIONS(1974), 27, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -66911,21 +69079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14289] = 7, - ACTIONS(1991), 1, + [13957] = 8, + ACTIONS(1976), 1, anon_sym_LPAREN, - ACTIONS(1997), 1, + ACTIONS(1982), 1, anon_sym_LT2, - STATE(636), 1, + ACTIONS(1988), 1, + anon_sym_COLON_COLON, + STATE(641), 1, sym_parameters, - STATE(651), 1, + STATE(652), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2017), 17, + ACTIONS(1986), 17, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -66938,66 +69107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2015), 27, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [14354] = 4, - ACTIONS(2023), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2021), 17, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2019), 29, + ACTIONS(1984), 27, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -67006,7 +69123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67023,49 +69139,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14412] = 4, - ACTIONS(2029), 1, - anon_sym_COLON_COLON, + [14025] = 4, + ACTIONS(1990), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2027), 17, + ACTIONS(1838), 20, + anon_sym_COLON, + anon_sym_as, + anon_sym_where, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_STAR, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2025), 29, + sym_identifier, + ACTIONS(1840), 28, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -67075,22 +69192,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14470] = 5, - ACTIONS(2033), 1, - anon_sym_SQUOTE, - STATE(705), 1, - sym_loop_label, + [14085] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2035), 15, + ACTIONS(1838), 20, + anon_sym_COLON, + anon_sym_as, + anon_sym_where, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_STAR, anon_sym_AMP, anon_sym_DOT_DOT, @@ -67099,9 +69216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2031), 30, + sym_identifier, + ACTIONS(1840), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -67109,10 +69228,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -67132,39 +69250,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14530] = 6, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(2039), 1, - anon_sym_COLON_COLON, - STATE(700), 1, - sym_field_initializer_list, + [14143] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(867), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_BANG, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(470), 29, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(869), 33, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym__, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_DOT_DOT, + anon_sym_deref, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [14200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1095), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1097), 33, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym__, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_DOT_DOT, + anon_sym_deref, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [14257] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1317), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1319), 33, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym__, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_DOT_DOT, + anon_sym_deref, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [14314] = 7, + ACTIONS(1976), 1, + anon_sym_LPAREN, + ACTIONS(1982), 1, + anon_sym_LT2, + STATE(640), 1, + sym_parameters, + STATE(651), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1994), 17, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(1992), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, @@ -67175,7 +69459,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -67185,22 +69468,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14592] = 6, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(2041), 1, - anon_sym_COLON_COLON, - STATE(1938), 1, - sym_field_initializer_list, + [14379] = 7, + ACTIONS(1976), 1, + anon_sym_LPAREN, + ACTIONS(1982), 1, + anon_sym_LT2, + STATE(640), 1, + sym_parameters, + STATE(651), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(1998), 17, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67210,16 +69493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(470), 29, + ACTIONS(1996), 27, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -67231,7 +69517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -67241,18 +69526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14654] = 4, - ACTIONS(2047), 1, + [14444] = 4, + ACTIONS(2004), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2045), 17, + ACTIONS(2002), 17, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67265,10 +69548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2043), 29, + ACTIONS(2000), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -67298,15 +69582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14712] = 4, - ACTIONS(2053), 1, + [14502] = 4, + ACTIONS(2010), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2051), 17, + ACTIONS(2008), 17, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67319,10 +69602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2049), 29, + ACTIONS(2006), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -67352,32 +69636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14770] = 12, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2060), 1, - anon_sym_PLUS, - ACTIONS(2063), 1, + [14560] = 4, + ACTIONS(2016), 1, anon_sym_COLON_COLON, - ACTIONS(2065), 1, - anon_sym_LT2, - STATE(700), 1, - sym_field_initializer_list, - STATE(983), 1, - sym_type_arguments, - STATE(1208), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2055), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(468), 16, + ACTIONS(2014), 17, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -67389,15 +69656,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(470), 20, + ACTIONS(2012), 29, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67413,16 +69689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14843] = 4, + anon_sym_EQ_GT, + [14618] = 4, + ACTIONS(2022), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2069), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2071), 15, + ACTIONS(2020), 17, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67432,28 +69707,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2067), 29, + ACTIONS(2018), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -67463,16 +69742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14900] = 3, + [14676] = 6, + ACTIONS(2024), 1, + anon_sym_LBRACE, + ACTIONS(2026), 1, + anon_sym_COLON_COLON, + STATE(1895), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2073), 15, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67484,21 +69767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2069), 31, + ACTIONS(495), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -67518,13 +69800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14955] = 3, + [14738] = 6, + ACTIONS(2024), 1, + anon_sym_LBRACE, + ACTIONS(2028), 1, + anon_sym_COLON_COLON, + STATE(712), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2077), 15, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67536,19 +69823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2075), 31, + ACTIONS(495), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -67570,15 +69856,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15010] = 4, - ACTIONS(2079), 1, - anon_sym_COLON_COLON, + [14800] = 5, + ACTIONS(2032), 1, + anon_sym_SQUOTE, + STATE(680), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 15, + ACTIONS(2034), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67590,9 +69877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2011), 30, + ACTIONS(2030), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -67623,16 +69911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15067] = 4, + [14860] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2081), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2071), 15, + ACTIONS(2038), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67644,19 +69928,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2067), 29, + ACTIONS(2036), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -67676,13 +69963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15124] = 3, + [14915] = 4, + ACTIONS(2040), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2085), 15, + ACTIONS(1998), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67694,9 +69982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2083), 31, + ACTIONS(1996), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -67706,7 +69995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -67728,13 +70016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15179] = 3, + [14972] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2089), 15, + ACTIONS(2020), 17, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67744,11 +70031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2087), 31, + ACTIONS(2018), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -67760,14 +70050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -67777,18 +70066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15234] = 4, - ACTIONS(2091), 1, - anon_sym_LBRACE, + [15027] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2093), 15, + ACTIONS(2044), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67800,20 +70085,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2023), 30, + ACTIONS(2042), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -67833,15 +70120,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15291] = 4, - ACTIONS(2099), 1, + [15082] = 4, + ACTIONS(2050), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2097), 15, + ACTIONS(2048), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67853,9 +70139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2095), 30, + ACTIONS(2046), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -67886,15 +70173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15348] = 4, - ACTIONS(2105), 1, - anon_sym_DASH_GT, + [15139] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2103), 15, + ACTIONS(2054), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67906,9 +70190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2101), 30, + ACTIONS(2052), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -67920,6 +70205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -67939,15 +70225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15405] = 4, - ACTIONS(2107), 1, - anon_sym_COLON_COLON, + [15194] = 4, + ACTIONS(2056), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2017), 15, + ACTIONS(2058), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -67959,20 +70244,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2015), 30, + ACTIONS(2022), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -67992,15 +70278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15462] = 4, - ACTIONS(2113), 1, + [15251] = 4, + ACTIONS(2064), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2111), 15, + ACTIONS(2062), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68012,9 +70297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2109), 30, + ACTIONS(2060), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68045,15 +70331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15519] = 4, - ACTIONS(2119), 1, + [15308] = 4, + ACTIONS(2070), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2117), 15, + ACTIONS(2068), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68065,9 +70350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2115), 30, + ACTIONS(2066), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68098,17 +70384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15576] = 5, - ACTIONS(2121), 1, - anon_sym_else, - STATE(735), 1, - sym_else_clause, + [15365] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(2036), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2074), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68120,19 +70404,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(420), 29, + ACTIONS(2072), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -68152,13 +70437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15635] = 3, + [15422] = 4, + ACTIONS(2040), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2125), 15, + ACTIONS(1994), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68170,9 +70456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2123), 31, + ACTIONS(1992), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68184,7 +70471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -68204,15 +70490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15690] = 4, - ACTIONS(2127), 1, - anon_sym_LBRACE, + [15479] = 4, + ACTIONS(2080), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2129), 15, + ACTIONS(2078), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68224,20 +70509,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2029), 30, + ACTIONS(2076), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -68257,13 +70543,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15747] = 3, + [15536] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2027), 17, + ACTIONS(2084), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68273,13 +70558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2025), 29, + ACTIONS(2082), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68289,15 +70573,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -68307,15 +70592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15802] = 3, + [15591] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2133), 15, + ACTIONS(2088), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68327,9 +70612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2131), 31, + ACTIONS(2086), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68339,9 +70625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -68361,13 +70647,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15857] = 3, + [15646] = 5, + ACTIONS(2090), 1, + anon_sym_else, + STATE(682), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2137), 15, + ACTIONS(421), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68379,9 +70668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2135), 31, + ACTIONS(419), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68392,8 +70682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -68413,15 +70701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15912] = 4, - ACTIONS(2139), 1, - anon_sym_COLON_COLON, + [15705] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 15, + ACTIONS(2058), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68433,9 +70718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2011), 30, + ACTIONS(2022), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68447,6 +70733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -68466,15 +70753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15969] = 4, - ACTIONS(2107), 1, - anon_sym_COLON_COLON, + [15760] = 5, + ACTIONS(2094), 1, + anon_sym_LPAREN, + STATE(728), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 15, + ACTIONS(2096), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68486,13 +70774,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2011), 30, + ACTIONS(2092), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -68519,13 +70807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16026] = 3, + [15819] = 4, + ACTIONS(2098), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2129), 15, + ACTIONS(2100), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68537,15 +70826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2029), 31, + ACTIONS(2016), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -68571,15 +70860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16081] = 4, - ACTIONS(2141), 1, - anon_sym_LBRACE, + [15876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2143), 15, + ACTIONS(2104), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68591,14 +70877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2047), 30, + ACTIONS(2102), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -68624,13 +70912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16138] = 3, + [15931] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2147), 15, + ACTIONS(2108), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68642,9 +70929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2145), 31, + ACTIONS(2106), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68676,13 +70964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16193] = 3, + [15986] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(2112), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68694,19 +70981,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(676), 31, + ACTIONS(2110), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -68728,13 +71016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16248] = 3, + [16041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2149), 15, + ACTIONS(2116), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68746,9 +71033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2081), 31, + ACTIONS(2114), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68780,13 +71068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16303] = 3, + [16096] = 4, + ACTIONS(2118), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2153), 15, + ACTIONS(2120), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68798,21 +71087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2151), 31, + ACTIONS(2010), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -68832,13 +71121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16358] = 3, + [16153] = 4, + ACTIONS(2122), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2157), 15, + ACTIONS(1998), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68850,9 +71140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2155), 31, + ACTIONS(1996), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68864,7 +71155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -68884,17 +71174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16413] = 5, - ACTIONS(2161), 1, - anon_sym_LPAREN, - STATE(693), 1, - sym_arguments, + [16210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2163), 15, + ACTIONS(2126), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68906,17 +71191,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2159), 29, + ACTIONS(2124), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -68938,15 +71226,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16472] = 4, - ACTIONS(2165), 1, + [16265] = 4, + ACTIONS(2128), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 15, + ACTIONS(1998), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -68958,9 +71245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2011), 30, + ACTIONS(1996), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -68991,13 +71279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16529] = 3, + [16322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2169), 15, + ACTIONS(2132), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69009,9 +71296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2167), 31, + ACTIONS(2130), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69021,9 +71309,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -69043,15 +71331,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16584] = 4, - ACTIONS(2171), 1, + [16377] = 12, + ACTIONS(2024), 1, anon_sym_LBRACE, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2139), 1, + anon_sym_PLUS, + ACTIONS(2142), 1, + anon_sym_COLON_COLON, + ACTIONS(2144), 1, + anon_sym_LT2, + STATE(712), 1, + sym_field_initializer_list, + STATE(987), 1, + sym_type_arguments, + STATE(1204), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2173), 15, + ACTIONS(2134), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(493), 16, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(495), 20, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [16450] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2148), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69063,14 +71409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2053), 30, + ACTIONS(2146), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -69096,13 +71444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16641] = 3, + [16505] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2177), 15, + ACTIONS(2152), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69114,9 +71461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2175), 31, + ACTIONS(2150), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69126,9 +71474,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -69148,13 +71496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16696] = 3, + [16560] = 4, + ACTIONS(2154), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2181), 15, + ACTIONS(1998), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69166,9 +71515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2179), 31, + ACTIONS(1996), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69180,7 +71530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -69200,13 +71549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16751] = 3, + [16617] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2185), 15, + ACTIONS(2158), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69218,9 +71566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2183), 30, + ACTIONS(2156), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69232,6 +71581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -69251,64 +71601,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16805] = 3, + [16672] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_LT, + ACTIONS(2052), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, + ACTIONS(2074), 15, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, anon_sym_STAR, anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1604), 30, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, anon_sym_DOT_DOT, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [16859] = 3, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2072), 29, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [16729] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(532), 15, + ACTIONS(679), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69320,12 +71671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(530), 30, + ACTIONS(681), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -69353,13 +71706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16913] = 3, + [16784] = 4, + ACTIONS(2160), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2189), 15, + ACTIONS(2162), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69371,20 +71725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2187), 30, + ACTIONS(2004), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -69404,13 +71759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16967] = 3, + [16841] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2191), 15, + ACTIONS(499), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69422,9 +71776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(418), 30, + ACTIONS(497), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69455,13 +71810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17021] = 3, + [16895] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2195), 15, + ACTIONS(513), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69473,9 +71827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2193), 30, + ACTIONS(511), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69506,13 +71861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17075] = 3, + [16949] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(508), 15, + ACTIONS(1850), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69524,9 +71878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(506), 30, + ACTIONS(1852), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69557,13 +71912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17129] = 3, + [17003] = 4, + ACTIONS(2168), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(520), 15, + ACTIONS(2166), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69575,15 +71931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(518), 30, + ACTIONS(2164), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -69608,13 +71964,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17183] = 3, + [17059] = 12, + ACTIONS(2024), 1, + anon_sym_LBRACE, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2139), 1, + anon_sym_PLUS, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2170), 1, + anon_sym_COLON_COLON, + STATE(712), 1, + sym_field_initializer_list, + STATE(987), 1, + sym_type_arguments, + STATE(1204), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(456), 15, + ACTIONS(2134), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(493), 16, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(495), 19, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [17131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(531), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69626,9 +72041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(454), 30, + ACTIONS(529), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69659,13 +72075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17237] = 3, + [17185] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2199), 15, + ACTIONS(449), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69677,9 +72092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2197), 30, + ACTIONS(447), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69710,13 +72126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17291] = 3, + [17239] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2203), 15, + ACTIONS(460), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69728,9 +72143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2201), 30, + ACTIONS(462), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69761,13 +72177,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17345] = 3, + [17293] = 4, + ACTIONS(2172), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2207), 15, + ACTIONS(493), 15, anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(495), 29, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [17349] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2176), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69779,9 +72246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2205), 30, + ACTIONS(2174), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69812,13 +72280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17399] = 3, + [17403] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2211), 15, + ACTIONS(2180), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69830,9 +72297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2209), 30, + ACTIONS(2178), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69863,13 +72331,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17453] = 3, + [17457] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2215), 15, + ACTIONS(2184), 15, anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2182), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [17511] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2188), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69881,9 +72399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2213), 30, + ACTIONS(2186), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69914,13 +72433,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17507] = 3, + [17565] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2219), 15, + ACTIONS(2192), 15, anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2190), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [17619] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(487), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69932,9 +72501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2217), 30, + ACTIONS(485), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -69965,13 +72535,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17561] = 3, + [17673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(524), 15, + ACTIONS(2196), 15, anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2194), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [17727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2200), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69983,9 +72603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(522), 30, + ACTIONS(2198), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70016,13 +72637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17615] = 3, + [17781] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2223), 15, + ACTIONS(1842), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70034,9 +72654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2221), 30, + ACTIONS(1844), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70067,13 +72688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17669] = 3, + [17835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2227), 15, + ACTIONS(2204), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70085,9 +72705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2225), 30, + ACTIONS(2202), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70118,13 +72739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17723] = 3, + [17889] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2231), 15, + ACTIONS(441), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70136,9 +72756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2229), 30, + ACTIONS(439), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70169,13 +72790,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17777] = 3, + [17943] = 12, + ACTIONS(2024), 1, + anon_sym_LBRACE, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2139), 1, + anon_sym_PLUS, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2206), 1, + anon_sym_COLON_COLON, + STATE(712), 1, + sym_field_initializer_list, + STATE(987), 1, + sym_type_arguments, + STATE(1204), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2235), 15, + ACTIONS(1984), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(493), 16, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(495), 19, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [18015] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(505), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70187,9 +72867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2233), 30, + ACTIONS(503), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70220,13 +72901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17831] = 3, + [18069] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2239), 15, + ACTIONS(521), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70238,9 +72918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2237), 30, + ACTIONS(519), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70271,13 +72952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17885] = 3, + [18123] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2243), 15, + ACTIONS(2210), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70289,9 +72969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2241), 30, + ACTIONS(2208), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70322,13 +73003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17939] = 3, + [18177] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(462), 15, + ACTIONS(1846), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70340,9 +73020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(460), 30, + ACTIONS(1848), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70373,13 +73054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17993] = 3, + [18231] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2247), 15, + ACTIONS(2214), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70391,9 +73071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2245), 30, + ACTIONS(2212), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70424,13 +73105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18047] = 3, + [18285] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(504), 15, + ACTIONS(2218), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70442,9 +73122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(502), 30, + ACTIONS(2216), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70475,13 +73156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18101] = 3, + [18339] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2251), 15, + ACTIONS(2222), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70493,9 +73173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2249), 30, + ACTIONS(2220), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70526,32 +73207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18155] = 12, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2060), 1, - anon_sym_PLUS, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2253), 1, - anon_sym_COLON_COLON, - STATE(700), 1, - sym_field_initializer_list, - STATE(983), 1, - sym_type_arguments, - STATE(1208), 1, - sym_parameters, + [18393] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2055), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(468), 16, + ACTIONS(539), 15, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -70560,22 +73222,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(470), 19, + ACTIONS(537), 30, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_as, + anon_sym_COMMA, anon_sym_QMARK, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -70585,14 +73255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18227] = 3, + anon_sym_EQ_GT, + [18447] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 15, + ACTIONS(2226), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70604,9 +73275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2011), 30, + ACTIONS(2224), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70637,13 +73309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18281] = 3, + [18501] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2257), 15, + ACTIONS(2230), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70655,9 +73326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2255), 30, + ACTIONS(2228), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70688,13 +73360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18335] = 3, + [18555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2261), 15, + ACTIONS(2234), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70706,9 +73377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2259), 30, + ACTIONS(2232), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70739,13 +73411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18389] = 3, + [18609] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2071), 15, + ACTIONS(477), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70757,9 +73428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2067), 30, + ACTIONS(475), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70790,13 +73462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18443] = 3, + [18663] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2265), 15, + ACTIONS(2238), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70808,9 +73479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2263), 30, + ACTIONS(2236), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70841,13 +73513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18497] = 3, + [18717] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2269), 15, + ACTIONS(2242), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70859,9 +73530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2267), 30, + ACTIONS(2240), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70892,13 +73564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18551] = 3, + [18771] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1867), 15, + ACTIONS(2246), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70910,9 +73581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1869), 30, + ACTIONS(2244), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70943,13 +73615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18605] = 3, + [18825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(516), 15, + ACTIONS(2250), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -70961,9 +73632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(514), 30, + ACTIONS(2248), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -70994,15 +73666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18659] = 4, - ACTIONS(2271), 1, - anon_sym_COLON_COLON, + [18879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(2254), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71014,14 +73683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 29, + ACTIONS(2252), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -71046,15 +73717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18715] = 4, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, + [18933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2275), 15, + ACTIONS(2258), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71066,14 +73734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2273), 29, + ACTIONS(2256), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -71098,15 +73768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18771] = 4, - ACTIONS(2279), 1, - anon_sym_COLON_COLON, + [18987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(2262), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71118,14 +73785,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 29, + ACTIONS(2260), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -71150,13 +73819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18827] = 3, + [19041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2283), 15, + ACTIONS(2266), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71168,9 +73836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2281), 30, + ACTIONS(2264), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71201,64 +73870,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18881] = 3, + [19095] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1458), 15, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(2270), 15, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2268), 30, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [19149] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(437), 15, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_STAR, anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1460), 30, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, anon_sym_DOT_DOT, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [18935] = 3, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(435), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [19203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1871), 15, + ACTIONS(1834), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71270,9 +73989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1873), 30, + ACTIONS(1836), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71303,13 +74023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18989] = 3, + [19257] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2163), 15, + ACTIONS(2274), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71321,9 +74040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2159), 30, + ACTIONS(2272), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71354,64 +74074,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19043] = 3, + [19311] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(998), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_BANG, + ACTIONS(517), 15, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_STAR, anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1000), 30, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, anon_sym_DOT_DOT, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [19097] = 3, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(515), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [19365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2287), 15, + ACTIONS(2276), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71423,9 +74142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2285), 30, + ACTIONS(429), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71456,13 +74176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19151] = 3, + [19419] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2291), 15, + ACTIONS(483), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71474,9 +74193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2289), 30, + ACTIONS(481), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71507,13 +74227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19205] = 3, + [19473] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(308), 15, + ACTIONS(1998), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71525,9 +74244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(306), 30, + ACTIONS(1996), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71558,13 +74278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19259] = 3, + [19527] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2295), 15, + ACTIONS(2280), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71576,9 +74295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2293), 30, + ACTIONS(2278), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71609,13 +74329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19313] = 3, + [19581] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2299), 15, + ACTIONS(2284), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71627,9 +74346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2297), 30, + ACTIONS(2282), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71660,13 +74380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19367] = 3, + [19635] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2303), 15, + ACTIONS(2288), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71678,9 +74397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2301), 30, + ACTIONS(2286), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71711,13 +74431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19421] = 3, + [19689] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2307), 15, + ACTIONS(2292), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71729,9 +74448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2305), 30, + ACTIONS(2290), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71762,13 +74482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19475] = 3, + [19743] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2311), 15, + ACTIONS(2296), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71780,9 +74499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2309), 30, + ACTIONS(2294), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71813,13 +74533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19529] = 3, + [19797] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(528), 15, + ACTIONS(2300), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71831,9 +74550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(526), 30, + ACTIONS(2298), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71864,13 +74584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19583] = 3, + [19851] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2315), 15, + ACTIONS(2074), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71882,9 +74601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2313), 30, + ACTIONS(2072), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71915,13 +74635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19637] = 3, + [19905] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2319), 15, + ACTIONS(2304), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71933,9 +74652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2317), 30, + ACTIONS(2302), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -71966,13 +74686,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19691] = 3, + [19959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2323), 15, + ACTIONS(2308), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -71984,9 +74703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2321), 30, + ACTIONS(2306), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72017,13 +74737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19745] = 3, + [20013] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2327), 15, + ACTIONS(2312), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72035,9 +74754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2325), 30, + ACTIONS(2310), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72068,13 +74788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19799] = 3, + [20067] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2331), 15, + ACTIONS(2316), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72086,9 +74805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2329), 30, + ACTIONS(2314), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72119,13 +74839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19853] = 3, + [20121] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2335), 15, + ACTIONS(2320), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72137,9 +74856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2333), 30, + ACTIONS(2318), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72170,13 +74890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19907] = 3, + [20175] = 4, + ACTIONS(2168), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2339), 15, + ACTIONS(2166), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72188,15 +74909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2337), 30, + ACTIONS(2164), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -72221,13 +74942,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19961] = 3, + [20231] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(500), 15, + ACTIONS(2324), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72239,9 +74959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(498), 30, + ACTIONS(2322), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72272,32 +74993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20015] = 12, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2060), 1, - anon_sym_PLUS, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2341), 1, - anon_sym_COLON_COLON, - STATE(700), 1, - sym_field_initializer_list, - STATE(983), 1, - sym_type_arguments, - STATE(1208), 1, - sym_parameters, + [20285] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1989), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(468), 16, + ACTIONS(2328), 15, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -72306,22 +75008,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(470), 19, + ACTIONS(2326), 30, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_as, + anon_sym_COMMA, anon_sym_QMARK, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -72331,16 +75041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20087] = 4, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, + anon_sym_EQ_GT, + [20339] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2275), 15, + ACTIONS(2332), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72352,14 +75061,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2273), 29, + ACTIONS(2330), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, @@ -72384,13 +75095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20143] = 3, + [20393] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2345), 15, + ACTIONS(2336), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72402,9 +75112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2343), 30, + ACTIONS(2334), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72435,13 +75146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20197] = 3, + [20447] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(512), 15, + ACTIONS(1994), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72453,9 +75163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(510), 30, + ACTIONS(1992), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72486,13 +75197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20251] = 3, + [20501] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(479), 15, + ACTIONS(2340), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72504,9 +75214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(481), 30, + ACTIONS(2338), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72537,13 +75248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20305] = 3, + [20555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2349), 15, + ACTIONS(2344), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72555,9 +75265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2347), 30, + ACTIONS(2342), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72588,13 +75299,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20359] = 3, + [20609] = 4, + ACTIONS(2350), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2348), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2346), 30, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym__, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_deref, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [20665] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2353), 15, + ACTIONS(2354), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72606,9 +75368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2351), 30, + ACTIONS(2352), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72639,13 +75402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20413] = 3, + [20719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2357), 15, + ACTIONS(2358), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72657,9 +75419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2355), 30, + ACTIONS(2356), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72690,13 +75453,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20467] = 3, + [20773] = 4, + ACTIONS(2360), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2361), 15, + ACTIONS(493), 15, anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(495), 29, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [20829] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2096), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72708,9 +75522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2359), 30, + ACTIONS(2092), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72741,13 +75556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20521] = 3, + [20883] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2365), 15, + ACTIONS(2364), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72759,9 +75573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2363), 30, + ACTIONS(2362), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72792,13 +75607,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20575] = 3, + [20937] = 4, + ACTIONS(2370), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2369), 15, + ACTIONS(2368), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2366), 30, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym__, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_deref, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [20993] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(297), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72810,9 +75676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2367), 30, + ACTIONS(295), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72843,13 +75710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20629] = 3, + [21047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2373), 15, + ACTIONS(2374), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72861,9 +75727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2371), 30, + ACTIONS(2372), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72894,13 +75761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20683] = 3, + [21101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2377), 15, + ACTIONS(509), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72912,9 +75778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2375), 30, + ACTIONS(507), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72945,13 +75812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20737] = 3, + [21155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(492), 15, + ACTIONS(2378), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -72963,9 +75829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(490), 30, + ACTIONS(2376), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72996,13 +75863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20791] = 3, + [21209] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(448), 15, + ACTIONS(427), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -73014,9 +75880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(446), 30, + ACTIONS(425), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -73047,13 +75914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20845] = 3, + [21263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(536), 15, + ACTIONS(535), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -73065,9 +75931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(534), 30, + ACTIONS(533), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -73098,13 +75965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20899] = 3, + [21317] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(496), 15, + ACTIONS(2382), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -73116,9 +75982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(494), 30, + ACTIONS(2380), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -73149,13 +76016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20953] = 3, + [21371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(488), 15, + ACTIONS(527), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -73167,9 +76033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(486), 30, + ACTIONS(525), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -73200,13 +76067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21007] = 3, + [21425] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2381), 15, + ACTIONS(2386), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -73218,9 +76084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2379), 30, + ACTIONS(2384), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, @@ -73251,40 +76118,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21061] = 3, + [21479] = 18, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2394), 1, + anon_sym_EQ, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2406), 1, + anon_sym_DOT_DOT, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1853), 15, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2396), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2404), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2416), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2388), 19, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [21562] = 13, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, anon_sym_AMP, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, + ACTIONS(2414), 1, anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2396), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2404), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(1855), 30, + ACTIONS(2424), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2422), 25, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73302,40 +76243,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21115] = 3, + [21635] = 8, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2406), 1, + anon_sym_DOT_DOT, + ACTIONS(2420), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2385), 15, + ACTIONS(2404), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2424), 13, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2383), 30, + ACTIONS(2422), 25, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73353,40 +76298,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21169] = 3, + [21698] = 11, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2406), 1, + anon_sym_DOT_DOT, + ACTIONS(2420), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2017), 15, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2396), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2404), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2424), 6, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2015), 30, + ACTIONS(2422), 25, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73404,46 +76356,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21223] = 3, + [21767] = 16, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2406), 1, + anon_sym_DOT_DOT, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2424), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2389), 15, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2396), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2404), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2387), 30, + ACTIONS(2416), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2422), 21, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73455,46 +76419,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21277] = 3, + [21846] = 18, + ACTIONS(269), 1, + anon_sym_EQ, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2406), 1, + anon_sym_DOT_DOT, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(432), 15, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2396), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2404), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(430), 30, + ACTIONS(2416), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(261), 19, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73506,13 +76484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21331] = 3, + [21929] = 5, + ACTIONS(2428), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1875), 15, + ACTIONS(2426), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + ACTIONS(2166), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -73524,20 +76507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1877), 30, + ACTIONS(2164), 25, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -73556,41 +76536,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [21385] = 3, + [21986] = 9, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2406), 1, + anon_sym_DOT_DOT, + ACTIONS(2420), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2393), 15, - anon_sym_EQ, + ACTIONS(2404), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2424), 10, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2391), 30, + ACTIONS(2422), 25, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73608,52 +76592,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21439] = 18, - ACTIONS(2397), 1, + [22051] = 18, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2401), 1, - anon_sym_EQ, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2395), 19, + ACTIONS(2430), 19, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -73673,106 +76657,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21522] = 5, - ACTIONS(2431), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2429), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - ACTIONS(2275), 15, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2273), 25, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21579] = 20, - ACTIONS(2397), 1, + [22134] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2433), 8, + ACTIONS(2434), 8, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -73781,7 +76713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_EQ_GT, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73792,119 +76724,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21666] = 20, - ACTIONS(2397), 1, + [22221] = 10, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2441), 8, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_EQ_GT, - ACTIONS(2439), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21753] = 18, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2413), 1, - anon_sym_DOT_DOT, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2445), 1, + ACTIONS(2424), 8, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2443), 19, + ACTIONS(2422), 25, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -73913,6 +76764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73924,52 +76781,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21836] = 18, - ACTIONS(2397), 1, + [22288] = 18, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2449), 1, + ACTIONS(2444), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2447), 19, + ACTIONS(2442), 19, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -73989,97 +76846,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21919] = 10, - ACTIONS(2397), 1, + [22371] = 14, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2413), 1, - anon_sym_DOT_DOT, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2411), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2453), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2402), 1, anon_sym_AMP, + ACTIONS(2406), 1, + anon_sym_DOT_DOT, + ACTIONS(2412), 1, anon_sym_PIPE, + ACTIONS(2414), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 25, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [21986] = 12, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2413), 1, - anon_sym_DOT_DOT, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2453), 5, + ACTIONS(2424), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2451), 25, + ACTIONS(2422), 25, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -74105,52 +76907,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22057] = 18, - ACTIONS(264), 1, - anon_sym_EQ, - ACTIONS(2397), 1, + [22446] = 18, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(256), 19, + ACTIONS(2446), 19, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -74170,175 +76972,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22140] = 18, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2413), 1, - anon_sym_DOT_DOT, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2457), 1, - anon_sym_EQ, + [22529] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2455), 19, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [22223] = 13, - ACTIONS(2397), 1, + ACTIONS(2368), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, + anon_sym_LPAREN, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(2413), 1, anon_sym_DOT_DOT, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2411), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2453), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2451), 25, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [22296] = 17, - ACTIONS(2397), 1, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2366), 30, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym__, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_deref, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [22582] = 17, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2453), 1, + ACTIONS(2424), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2451), 20, + ACTIONS(2422), 20, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -74359,52 +77086,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22377] = 18, - ACTIONS(2397), 1, + [22663] = 18, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2461), 1, + ACTIONS(2452), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2459), 19, + ACTIONS(2450), 19, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -74424,22 +77151,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22460] = 7, - ACTIONS(2397), 1, + [22746] = 7, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2465), 13, + ACTIONS(2456), 13, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -74450,8 +77176,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2463), 26, + ACTIONS(2454), 26, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -74478,22 +77205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22521] = 7, - ACTIONS(2397), 1, + [22807] = 7, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2469), 13, + ACTIONS(2460), 13, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -74504,8 +77230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2467), 26, + ACTIONS(2458), 26, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -74532,24 +77259,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22582] = 8, - ACTIONS(2397), 1, + [22868] = 7, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2453), 13, + ACTIONS(2464), 13, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -74560,13 +77284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2451), 25, + ACTIONS(2462), 26, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, @@ -74587,37 +77313,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22645] = 9, - ACTIONS(2397), 1, + [22929] = 12, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2413), 1, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2411), 2, + ACTIONS(2396), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2453), 10, + ACTIONS(2424), 5, anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 25, + ACTIONS(2422), 25, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, @@ -74643,119 +77372,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22710] = 16, - ACTIONS(2397), 1, + [23000] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2348), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2346), 30, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym__, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_deref, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [23053] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2413), 1, + ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2419), 1, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2453), 1, + ACTIONS(2436), 1, anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2451), 21, + ACTIONS(2466), 8, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_else, - 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_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22789] = 14, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2413), 1, - anon_sym_DOT_DOT, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2411), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2453), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2451), 25, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74766,107 +77489,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [22864] = 11, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2413), 1, - anon_sym_DOT_DOT, - ACTIONS(2427), 1, - anon_sym_DOT, + [23140] = 7, + ACTIONS(2012), 1, + anon_sym_LT2, + ACTIONS(2098), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2411), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2453), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2451), 25, + ACTIONS(2468), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [22933] = 7, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2413), 1, - anon_sym_DOT_DOT, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2411), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2473), 13, + ACTIONS(2100), 16, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 26, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2016), 21, + anon_sym_LBRACK, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -74876,26 +77541,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [22994] = 7, - ACTIONS(2049), 1, + [23200] = 7, + ACTIONS(2018), 1, anon_sym_LT2, - ACTIONS(2171), 1, + ACTIONS(2056), 1, anon_sym_LBRACE, - ACTIONS(2478), 1, + ACTIONS(2477), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2475), 3, + ACTIONS(2474), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2173), 16, + ACTIONS(2058), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -74907,10 +77569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2053), 21, + ACTIONS(2022), 21, anon_sym_LBRACK, anon_sym_as, anon_sym_COMMA, @@ -74932,23 +77595,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23054] = 7, - ACTIONS(2043), 1, + [23260] = 7, + ACTIONS(2006), 1, anon_sym_LT2, - ACTIONS(2141), 1, + ACTIONS(2118), 1, anon_sym_LBRACE, - ACTIONS(2484), 1, + ACTIONS(2483), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2481), 3, + ACTIONS(2480), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2143), 16, + ACTIONS(2120), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -74960,10 +77622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2047), 21, + ACTIONS(2010), 21, anon_sym_LBRACK, anon_sym_as, anon_sym_COMMA, @@ -74985,21 +77648,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23114] = 5, - ACTIONS(2277), 1, + [23320] = 22, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2429), 3, - anon_sym_const, + ACTIONS(1817), 1, + sym_self, + ACTIONS(2486), 1, + sym_identifier, + ACTIONS(2490), 1, + anon_sym_LPAREN, + ACTIONS(2492), 1, anon_sym_default, - anon_sym_fn, - ACTIONS(2275), 15, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, + ACTIONS(2494), 1, + anon_sym_for, + ACTIONS(2496), 1, + anon_sym_STAR, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, + sym_metavariable, + STATE(1553), 1, + sym_scoped_type_identifier, + STATE(1588), 1, + sym_generic_type, + STATE(1590), 1, + sym_primitive_type, + STATE(1682), 1, + sym_where_predicate, + STATE(2045), 1, + sym_bracketed_type, + STATE(2046), 1, + sym_generic_type_with_turbofish, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2488), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1853), 4, + sym_higher_ranked_trait_bound, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [23410] = 22, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(2486), 1, + sym_identifier, + ACTIONS(2490), 1, + anon_sym_LPAREN, + ACTIONS(2492), 1, + anon_sym_default, + ACTIONS(2494), 1, + anon_sym_for, + ACTIONS(2496), 1, + anon_sym_STAR, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, + sym_metavariable, + STATE(1553), 1, + sym_scoped_type_identifier, + STATE(1588), 1, + sym_generic_type, + STATE(1590), 1, + sym_primitive_type, + STATE(1682), 1, + sym_where_predicate, + STATE(2045), 1, + sym_bracketed_type, + STATE(2046), 1, + sym_generic_type_with_turbofish, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2502), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1853), 4, + sym_higher_ranked_trait_bound, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [23500] = 7, + ACTIONS(2000), 1, + anon_sym_LT2, + ACTIONS(2160), 1, + anon_sym_LBRACE, + ACTIONS(2507), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2504), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_LPAREN, + ACTIONS(2162), 16, + anon_sym_EQ, + anon_sym_LT, anon_sym_GT, anon_sym_STAR, anon_sym_AMP, @@ -75007,24 +77808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2273), 24, - anon_sym_SEMI, + ACTIONS(2004), 21, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_as, + anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -75034,21 +77836,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23170] = 5, - ACTIONS(2487), 1, + [23560] = 5, + ACTIONS(2510), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2429), 3, + ACTIONS(2426), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - ACTIONS(2275), 15, + ACTIONS(2166), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -75060,9 +77860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2273), 24, + ACTIONS(2164), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -75087,23 +77888,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23226] = 7, - ACTIONS(2025), 1, - anon_sym_LT2, - ACTIONS(2127), 1, - anon_sym_LBRACE, - ACTIONS(2492), 1, - anon_sym_PLUS, + [23616] = 5, + ACTIONS(2168), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2489), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - ACTIONS(2129), 16, + ACTIONS(2426), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + ACTIONS(2166), 15, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75112,24 +77909,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2029), 21, + ACTIONS(2164), 24, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -75139,75 +77937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23286] = 7, - ACTIONS(2019), 1, + [23672] = 7, + ACTIONS(2000), 1, anon_sym_LT2, - ACTIONS(2091), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - ACTIONS(2498), 1, + ACTIONS(2507), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2495), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2504), 3, anon_sym_LPAREN, - ACTIONS(2093), 16, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2023), 21, - anon_sym_LBRACK, - anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [23346] = 6, - ACTIONS(2025), 1, - anon_sym_LT2, - ACTIONS(2492), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2489), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - ACTIONS(2129), 16, + ACTIONS(2162), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75219,13 +77966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2029), 21, + ACTIONS(2004), 20, anon_sym_LBRACK, anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -75244,23 +77991,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23403] = 7, - ACTIONS(2141), 1, + [23731] = 7, + ACTIONS(2098), 1, anon_sym_LBRACE, - ACTIONS(2481), 1, + ACTIONS(2468), 1, anon_sym_LPAREN, - ACTIONS(2484), 1, + ACTIONS(2471), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2043), 3, + ACTIONS(2012), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2143), 16, + ACTIONS(2100), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75272,10 +78018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2047), 20, + ACTIONS(2016), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -75296,23 +78043,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23462] = 7, - ACTIONS(2127), 1, + [23790] = 7, + ACTIONS(2056), 1, anon_sym_LBRACE, - ACTIONS(2489), 1, + ACTIONS(2474), 1, anon_sym_LPAREN, - ACTIONS(2492), 1, + ACTIONS(2477), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2025), 3, + ACTIONS(2018), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2129), 16, + ACTIONS(2058), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75324,10 +78070,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2029), 20, + ACTIONS(2022), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -75348,23 +78095,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23521] = 7, - ACTIONS(2171), 1, + [23849] = 7, + ACTIONS(2018), 1, + anon_sym_LT2, + ACTIONS(2056), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2477), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2049), 3, + ACTIONS(2474), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2173), 16, + ACTIONS(2058), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75376,10 +78122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2053), 20, + ACTIONS(2022), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -75400,23 +78147,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23580] = 7, - ACTIONS(2043), 1, + [23908] = 7, + ACTIONS(2006), 1, anon_sym_LT2, - ACTIONS(2141), 1, + ACTIONS(2118), 1, anon_sym_LBRACE, - ACTIONS(2484), 1, + ACTIONS(2483), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2481), 3, + ACTIONS(2480), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2143), 16, + ACTIONS(2120), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75428,10 +78174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2047), 20, + ACTIONS(2010), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -75452,28 +78199,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23639] = 4, - ACTIONS(2505), 1, - anon_sym_RBRACE, + [23967] = 19, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(721), 1, + anon_sym_DASH, + ACTIONS(727), 1, + aux_sym_string_literal_token1, + ACTIONS(2512), 1, + sym_identifier, + ACTIONS(2514), 1, + anon_sym_default, + ACTIONS(2516), 1, + anon_sym_COLON_COLON, + ACTIONS(2518), 1, + sym_self, + ACTIONS(2520), 1, + sym_metavariable, + STATE(1211), 1, + sym_primitive_type, + STATE(1212), 1, + sym_scoped_identifier, + STATE(1232), 1, + sym__literal_pattern, + STATE(2003), 1, + sym_generic_type_with_turbofish, + STATE(2037), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2503), 14, + ACTIONS(729), 2, + anon_sym_true, + anon_sym_false, + STATE(1198), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(725), 4, sym_raw_string_literal, sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, sym_integer_literal, - aux_sym_string_literal_token1, sym_char_literal, - sym_metavariable, - ACTIONS(2501), 27, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75484,40 +78254,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [23692] = 7, - ACTIONS(2025), 1, - anon_sym_LT2, - ACTIONS(2127), 1, + [24050] = 7, + ACTIONS(2160), 1, anon_sym_LBRACE, - ACTIONS(2492), 1, + ACTIONS(2504), 1, + anon_sym_LPAREN, + ACTIONS(2507), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2489), 3, - anon_sym_LPAREN, + ACTIONS(2000), 3, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2129), 16, + anon_sym_LT2, + ACTIONS(2162), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75529,10 +78290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2029), 20, + ACTIONS(2004), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -75553,23 +78315,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23751] = 7, - ACTIONS(2049), 1, + [24109] = 7, + ACTIONS(2012), 1, anon_sym_LT2, - ACTIONS(2171), 1, + ACTIONS(2098), 1, anon_sym_LBRACE, - ACTIONS(2478), 1, + ACTIONS(2471), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2475), 3, + ACTIONS(2468), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2173), 16, + ACTIONS(2100), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75581,10 +78342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2053), 20, + ACTIONS(2016), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -75605,23 +78367,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23810] = 7, - ACTIONS(2019), 1, - anon_sym_LT2, - ACTIONS(2091), 1, + [24168] = 7, + ACTIONS(2118), 1, anon_sym_LBRACE, - ACTIONS(2498), 1, + ACTIONS(2480), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2495), 3, - anon_sym_LPAREN, + ACTIONS(2006), 3, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2093), 16, + anon_sym_LT2, + ACTIONS(2120), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75633,10 +78394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2023), 20, + ACTIONS(2010), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -75657,23 +78419,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23869] = 7, - ACTIONS(2091), 1, - anon_sym_LBRACE, - ACTIONS(2495), 1, - anon_sym_LPAREN, - ACTIONS(2498), 1, + [24227] = 6, + ACTIONS(2018), 1, + anon_sym_LT2, + ACTIONS(2477), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2019), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2093), 16, + ACTIONS(2474), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_LPAREN, + ACTIONS(2058), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75685,12 +78444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2023), 20, + ACTIONS(2022), 21, anon_sym_LBRACK, anon_sym_as, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -75709,28 +78470,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23928] = 4, - ACTIONS(2511), 1, - anon_sym_RBRACE, + [24284] = 19, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(721), 1, + anon_sym_DASH, + ACTIONS(727), 1, + aux_sym_string_literal_token1, + ACTIONS(2516), 1, + anon_sym_COLON_COLON, + ACTIONS(2522), 1, + sym_identifier, + ACTIONS(2524), 1, + anon_sym_default, + ACTIONS(2526), 1, + sym_self, + ACTIONS(2528), 1, + sym_metavariable, + STATE(1209), 1, + sym_primitive_type, + STATE(1210), 1, + sym_scoped_identifier, + STATE(1222), 1, + sym__literal_pattern, + STATE(2003), 1, + sym_generic_type_with_turbofish, + STATE(2037), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2509), 14, + ACTIONS(729), 2, + anon_sym_true, + anon_sym_false, + STATE(1198), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(725), 4, sym_raw_string_literal, sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, sym_integer_literal, - aux_sym_string_literal_token1, sym_char_literal, - sym_metavariable, - ACTIONS(2507), 27, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75741,38 +78525,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [23981] = 6, - ACTIONS(2025), 1, - anon_sym_LT2, - ACTIONS(2492), 1, - anon_sym_PLUS, + [24367] = 5, + ACTIONS(2530), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2489), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2129), 16, + ACTIONS(2426), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + ACTIONS(2166), 15, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75781,23 +78555,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2029), 20, + ACTIONS(2164), 22, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_as, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -75807,21 +78581,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24037] = 6, - ACTIONS(2516), 1, - anon_sym_PLUS, - ACTIONS(2519), 1, - anon_sym_COLON_COLON, + [24421] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2513), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(468), 14, + ACTIONS(2036), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(2074), 15, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75832,13 +78605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 23, + ACTIONS(2072), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -75858,20 +78631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24093] = 6, - ACTIONS(2431), 1, + [24473] = 4, + ACTIONS(2532), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2521), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(2275), 14, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -75882,10 +78650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2273), 23, + ACTIONS(495), 25, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_as, anon_sym_COMMA, @@ -75908,110 +78679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24149] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2503), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2501), 27, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [24199] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2509), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2507), 27, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [24249] = 4, - ACTIONS(2527), 1, + [24525] = 6, + ACTIONS(2537), 1, + anon_sym_PLUS, + ACTIONS(2540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(2534), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(493), 14, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -76022,12 +78702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 25, - anon_sym_SEMI, + ACTIONS(495), 23, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_as, anon_sym_COMMA, @@ -76050,19 +78729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24301] = 5, - ACTIONS(2529), 1, + [24581] = 4, + ACTIONS(2540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2429), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - ACTIONS(2275), 15, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -76074,12 +78748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2273), 22, + ACTIONS(495), 25, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_as, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -76099,21 +78777,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24355] = 6, - ACTIONS(2489), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, + [24633] = 6, + ACTIONS(2018), 1, + anon_sym_LT2, + ACTIONS(2477), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2025), 3, + ACTIONS(2474), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2129), 16, + ACTIONS(2058), 16, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -76125,10 +78802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2029), 20, + ACTIONS(2022), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -76149,16 +78827,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [24411] = 4, - ACTIONS(2519), 1, + [24689] = 21, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(2486), 1, + sym_identifier, + ACTIONS(2490), 1, + anon_sym_LPAREN, + ACTIONS(2492), 1, + anon_sym_default, + ACTIONS(2494), 1, + anon_sym_for, + ACTIONS(2496), 1, + anon_sym_STAR, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, + sym_metavariable, + STATE(1553), 1, + sym_scoped_type_identifier, + STATE(1588), 1, + sym_generic_type, + STATE(1590), 1, + sym_primitive_type, + STATE(1682), 1, + sym_where_predicate, + STATE(2045), 1, + sym_bracketed_type, + STATE(2046), 1, + sym_generic_type_with_turbofish, + STATE(2052), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, - anon_sym_EQ, - anon_sym_SLASH, + STATE(1853), 4, + sym_higher_ranked_trait_bound, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [24775] = 6, + ACTIONS(2428), 1, + anon_sym_COLON_COLON, + ACTIONS(2545), 1, anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2542), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(2166), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -76169,12 +78915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 25, - anon_sym_SEMI, + ACTIONS(2164), 23, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_as, anon_sym_COMMA, @@ -76197,18 +78942,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24463] = 4, + [24831] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2081), 4, + ACTIONS(2052), 4, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(2071), 15, + ACTIONS(2074), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -76220,9 +78964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2067), 22, + ACTIONS(2072), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_as, @@ -76245,19 +78990,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24515] = 4, + [24883] = 21, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(2486), 1, + sym_identifier, + ACTIONS(2490), 1, + anon_sym_LPAREN, + ACTIONS(2492), 1, + anon_sym_default, + ACTIONS(2494), 1, + anon_sym_for, + ACTIONS(2496), 1, + anon_sym_STAR, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, + sym_metavariable, + STATE(1549), 1, + sym_where_predicate, + STATE(1553), 1, + sym_scoped_type_identifier, + STATE(1588), 1, + sym_generic_type, + STATE(1590), 1, + sym_primitive_type, + STATE(2045), 1, + sym_bracketed_type, + STATE(2046), 1, + sym_generic_type_with_turbofish, + STATE(2052), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1853), 4, + sym_higher_ranked_trait_bound, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [24969] = 6, + ACTIONS(2474), 1, + anon_sym_LPAREN, + ACTIONS(2477), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2069), 4, + ACTIONS(2018), 3, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(2071), 15, + anon_sym_LT2, + ACTIONS(2058), 16, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -76266,22 +79077,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2067), 22, + ACTIONS(2022), 20, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -76291,22 +79104,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24567] = 6, - ACTIONS(2516), 1, - anon_sym_PLUS, - ACTIONS(2531), 1, + [25025] = 6, + ACTIONS(2510), 1, anon_sym_COLON_COLON, + ACTIONS(2545), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2513), 2, + ACTIONS(2542), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(468), 14, + ACTIONS(2166), 14, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -76317,9 +79128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 22, + ACTIONS(2164), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_as, @@ -76342,18 +79154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24622] = 5, - ACTIONS(2536), 1, + [25080] = 6, + ACTIONS(2537), 1, anon_sym_PLUS, + ACTIONS(2548), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2533), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(2349), 14, + ACTIONS(1996), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(493), 14, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -76364,13 +79177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2347), 23, + ACTIONS(495), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -76390,62 +79203,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24675] = 23, - ACTIONS(654), 1, - anon_sym_RBRACK, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2539), 1, - anon_sym_SEMI, - ACTIONS(2541), 1, - anon_sym_COMMA, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, - STATE(1789), 1, - aux_sym_array_expression_repeat1, + [25135] = 5, + ACTIONS(2548), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2550), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(493), 15, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, anon_sym_SLASH, - anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2423), 4, + anon_sym_DOT, + ACTIONS(495), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76456,82 +79251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24764] = 22, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(2547), 1, - sym_identifier, - ACTIONS(2551), 1, - anon_sym_LPAREN, - ACTIONS(2553), 1, - anon_sym_default, - ACTIONS(2555), 1, - anon_sym_for, - ACTIONS(2557), 1, - anon_sym_STAR, - ACTIONS(2559), 1, - anon_sym_AMP, - ACTIONS(2561), 1, - sym_metavariable, - STATE(1504), 1, - sym_scoped_type_identifier, - STATE(1651), 1, - sym_where_predicate, - STATE(1715), 1, - sym_generic_type, - STATE(1737), 1, - sym_primitive_type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2045), 1, - sym_generic_type_with_turbofish, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2549), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1963), 4, - sym_higher_ranked_trait_bound, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [24851] = 5, - ACTIONS(2563), 1, + [25188] = 4, + ACTIONS(2552), 1, anon_sym_COLON_COLON, - STATE(700), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -76543,13 +79270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 23, + ACTIONS(495), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_as, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -76569,43 +79298,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24904] = 4, - ACTIONS(2565), 1, - anon_sym_COLON_COLON, + [25239] = 23, + ACTIONS(657), 1, + anon_sym_RBRACK, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2554), 1, + anon_sym_SEMI, + ACTIONS(2556), 1, + anon_sym_COMMA, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, + STATE(1608), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2396), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(470), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76616,18 +79364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24955] = 5, - ACTIONS(2041), 1, + [25328] = 6, + ACTIONS(2530), 1, anon_sym_COLON_COLON, - STATE(1938), 1, - sym_field_initializer_list, + ACTIONS(2545), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(1996), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2166), 14, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -76638,12 +79387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 23, + ACTIONS(2164), 22, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, @@ -76664,15 +79413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25008] = 4, - ACTIONS(2531), 1, + [25383] = 4, + ACTIONS(2562), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -76684,9 +79432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 24, + ACTIONS(495), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76711,20 +79460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25059] = 6, - ACTIONS(2487), 1, - anon_sym_COLON_COLON, - ACTIONS(2524), 1, + [25434] = 5, + ACTIONS(2567), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2521), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2275), 14, + ACTIONS(2564), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(2176), 14, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -76735,12 +79481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2273), 22, + ACTIONS(2174), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_as, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -76760,109 +79508,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25114] = 22, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(2547), 1, - sym_identifier, - ACTIONS(2551), 1, - anon_sym_LPAREN, - ACTIONS(2553), 1, - anon_sym_default, - ACTIONS(2555), 1, - anon_sym_for, - ACTIONS(2557), 1, - anon_sym_STAR, - ACTIONS(2559), 1, + [25487] = 23, + ACTIONS(443), 1, + anon_sym_RBRACK, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2561), 1, - sym_metavariable, - STATE(1504), 1, - sym_scoped_type_identifier, - STATE(1651), 1, - sym_where_predicate, - STATE(1715), 1, - sym_generic_type, - STATE(1737), 1, - sym_primitive_type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2045), 1, - sym_generic_type_with_turbofish, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2567), 2, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, + ACTIONS(2570), 1, anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1963), 4, - sym_higher_ranked_trait_bound, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [25201] = 5, - ACTIONS(2571), 1, - anon_sym_COLON_COLON, + ACTIONS(2572), 1, + anon_sym_COMMA, + STATE(1672), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2569), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(468), 15, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2396), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(470), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_QMARK, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76873,62 +79574,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25254] = 23, - ACTIONS(426), 1, - anon_sym_RBRACK, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, - ACTIONS(2573), 1, - anon_sym_SEMI, - ACTIONS(2575), 1, - anon_sym_COMMA, - STATE(1634), 1, - aux_sym_array_expression_repeat1, + [25576] = 6, + ACTIONS(2537), 1, + anon_sym_PLUS, + ACTIONS(2562), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2534), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(493), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, anon_sym_SLASH, - anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2423), 4, + anon_sym_DOT, + ACTIONS(495), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76939,20 +79623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25343] = 6, - ACTIONS(2516), 1, - anon_sym_PLUS, - ACTIONS(2571), 1, + [25631] = 5, + ACTIONS(2026), 1, anon_sym_COLON_COLON, + STATE(1895), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(468), 14, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -76963,11 +79644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 22, + ACTIONS(495), 23, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_as, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, @@ -76988,20 +79671,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25398] = 6, - ACTIONS(2524), 1, - anon_sym_PLUS, - ACTIONS(2529), 1, + [25684] = 5, + ACTIONS(2574), 1, anon_sym_COLON_COLON, + STATE(712), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2275), 14, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -77012,11 +79692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2273), 22, + ACTIONS(495), 23, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_as, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, @@ -77037,15 +79719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25453] = 4, - ACTIONS(2081), 1, + [25737] = 4, + ACTIONS(2052), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2071), 15, + ACTIONS(2074), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77057,9 +79738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2067), 23, + ACTIONS(2072), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -77083,60 +79765,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25503] = 22, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, - ACTIONS(2577), 1, - anon_sym_RPAREN, - ACTIONS(2579), 1, - anon_sym_COMMA, - STATE(1786), 1, - aux_sym_arguments_repeat1, + [25787] = 5, + ACTIONS(2567), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2342), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2176), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, anon_sym_SLASH, - anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2423), 4, + anon_sym_DOT, + ACTIONS(2174), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77147,112 +79812,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25589] = 19, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(682), 1, + [25839] = 18, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(716), 1, - anon_sym_DASH, - ACTIONS(722), 1, - aux_sym_string_literal_token1, - ACTIONS(2581), 1, - sym_identifier, - ACTIONS(2583), 1, - anon_sym_default, - ACTIONS(2585), 1, - anon_sym_COLON_COLON, - ACTIONS(2587), 1, - sym_self, - ACTIONS(2589), 1, - sym_metavariable, - STATE(1203), 1, - sym_scoped_identifier, - STATE(1214), 1, - sym_primitive_type, - STATE(1234), 1, - sym__literal_pattern, - STATE(2036), 1, - sym_bracketed_type, - STATE(2091), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(724), 2, - anon_sym_true, - anon_sym_false, - STATE(1196), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(720), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(680), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [25669] = 19, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(682), 1, - anon_sym_str, - ACTIONS(716), 1, - anon_sym_DASH, - ACTIONS(722), 1, - aux_sym_string_literal_token1, - ACTIONS(2585), 1, - anon_sym_COLON_COLON, - ACTIONS(2591), 1, + ACTIONS(2576), 1, sym_identifier, - ACTIONS(2593), 1, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(2580), 1, + anon_sym_RBRACE, + ACTIONS(2582), 1, anon_sym_default, - ACTIONS(2595), 1, + ACTIONS(2584), 1, + anon_sym_COMMA, + ACTIONS(2586), 1, + anon_sym_COLON_COLON, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2590), 1, sym_self, - ACTIONS(2597), 1, + ACTIONS(2592), 1, sym_metavariable, - STATE(1205), 1, + STATE(1453), 1, sym_primitive_type, - STATE(1212), 1, + STATE(1457), 1, sym_scoped_identifier, - STATE(1220), 1, - sym__literal_pattern, - STATE(2036), 1, - sym_bracketed_type, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, + STATE(2123), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(724), 2, - anon_sym_true, - anon_sym_false, - STATE(1196), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(720), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(680), 16, + STATE(1655), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77263,24 +79863,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [25749] = 5, - ACTIONS(2536), 1, - anon_sym_PLUS, + [25917] = 4, + ACTIONS(2594), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2387), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2349), 14, + ACTIONS(2166), 15, anon_sym_EQ, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -77291,11 +79891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2347), 22, + ACTIONS(2164), 23, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_as, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, @@ -77316,16 +79918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25801] = 4, + [25967] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2569), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(468), 15, + ACTIONS(2162), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77337,13 +79935,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 22, + ACTIONS(2004), 24, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_as, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -77362,13 +79963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25851] = 3, + [26015] = 4, + ACTIONS(2594), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2143), 15, + ACTIONS(2166), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77380,15 +79982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2047), 24, + ACTIONS(2164), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_as, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -77407,15 +80009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25899] = 4, - ACTIONS(2069), 1, + [26065] = 4, + ACTIONS(2596), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2071), 15, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77427,9 +80028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2067), 23, + ACTIONS(495), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -77453,15 +80055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25949] = 4, - ACTIONS(2599), 1, - anon_sym_COLON_COLON, + [26115] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2275), 15, + ACTIONS(2058), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77473,14 +80072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2273), 23, + ACTIONS(2022), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_as, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -77499,15 +80100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25999] = 4, - ACTIONS(2601), 1, + [26163] = 4, + ACTIONS(2598), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77519,9 +80119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 23, + ACTIONS(495), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -77545,13 +80146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26049] = 3, + [26213] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2129), 15, + ACTIONS(2100), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77563,9 +80163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2029), 24, + ACTIONS(2016), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -77590,15 +80191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26097] = 4, - ACTIONS(2599), 1, + [26261] = 4, + ACTIONS(2036), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2275), 15, + ACTIONS(2074), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77610,9 +80210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2273), 23, + ACTIONS(2072), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -77636,42 +80237,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26147] = 4, - ACTIONS(2603), 1, - anon_sym_COLON_COLON, + [26311] = 22, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, + ACTIONS(2600), 1, + anon_sym_RPAREN, + ACTIONS(2602), 1, + anon_sym_COMMA, + STATE(1607), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2396), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(470), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_as, - anon_sym_QMARK, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77682,18 +80301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26197] = 5, - ACTIONS(2536), 1, + [26397] = 5, + ACTIONS(2567), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2533), 2, + ACTIONS(2564), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2349), 14, + ACTIONS(2176), 14, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -77704,9 +80322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2347), 22, + ACTIONS(2174), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_as, @@ -77729,13 +80348,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26249] = 3, + [26449] = 22, + ACTIONS(541), 1, + anon_sym_RPAREN, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, + ACTIONS(2604), 1, + anon_sym_COMMA, + STATE(1619), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2173), 15, - anon_sym_EQ, + ACTIONS(2396), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2416), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2440), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26535] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2550), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(493), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77747,15 +80432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2053), 24, + ACTIONS(495), 22, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -77774,13 +80458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26297] = 3, + [26585] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2093), 15, + ACTIONS(2120), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -77792,9 +80475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2023), 24, + ACTIONS(2010), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -77819,60 +80503,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26345] = 22, - ACTIONS(444), 1, - anon_sym_RPAREN, - ACTIONS(2397), 1, + [26633] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2605), 1, - anon_sym_COMMA, - STATE(1624), 1, - aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2606), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77883,58 +80564,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26431] = 21, - ACTIONS(2397), 1, + [26714] = 18, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2452), 1, + anon_sym_EQ, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, - ACTIONS(2607), 1, - anon_sym_RPAREN, - ACTIONS(2609), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2628), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2450), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26791] = 5, + ACTIONS(2632), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(836), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(1829), 8, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1827), 27, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_pub, + sym_identifier, + sym_self, + [26842] = 4, + ACTIONS(2548), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(493), 15, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + anon_sym_DOT, + ACTIONS(495), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77945,58 +80714,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26514] = 21, - ACTIONS(640), 1, - anon_sym_RPAREN, - ACTIONS(2397), 1, + [26891] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2609), 1, - anon_sym_COMMA, + ACTIONS(2635), 1, + anon_sym_SEMI, + ACTIONS(2637), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78007,58 +80776,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26597] = 21, - ACTIONS(2397), 1, + [26974] = 18, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_EQ, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, - ACTIONS(2611), 1, - anon_sym_SEMI, - ACTIONS(2613), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2446), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78069,58 +80835,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26680] = 21, - ACTIONS(2397), 1, + [27051] = 17, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(2576), 1, + sym_identifier, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(2582), 1, + anon_sym_default, + ACTIONS(2586), 1, + anon_sym_COLON_COLON, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2590), 1, + sym_self, + ACTIONS(2592), 1, + sym_metavariable, + ACTIONS(2639), 1, + anon_sym_RBRACE, + STATE(1453), 1, + sym_primitive_type, + STATE(1457), 1, + sym_scoped_identifier, + STATE(2003), 1, + sym_generic_type_with_turbofish, + STATE(2123), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1983), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [27126] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2643), 11, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, + sym_metavariable, + ACTIONS(2641), 27, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [27173] = 7, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2618), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, - anon_sym_SEMI, - ACTIONS(2617), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2616), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2456), 13, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2454), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_as, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27228] = 7, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2464), 13, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2462), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_as, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78131,58 +81033,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26763] = 21, - ACTIONS(2397), 1, + [27283] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2619), 1, - anon_sym_RBRACE, - ACTIONS(2621), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2645), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78193,58 +81094,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26846] = 21, - ACTIONS(252), 1, - anon_sym_RBRACE, - ACTIONS(2397), 1, + [27364] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, - anon_sym_SEMI, + ACTIONS(2647), 1, + anon_sym_RBRACE, + ACTIONS(2649), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78255,58 +81156,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26929] = 21, - ACTIONS(2397), 1, + [27447] = 18, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2444), 1, + anon_sym_EQ, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, - ACTIONS(2615), 1, - anon_sym_SEMI, - ACTIONS(2623), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2616), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2612), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2628), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2442), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27524] = 7, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2460), 13, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2458), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_as, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78317,58 +81263,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27012] = 21, - ACTIONS(2397), 1, + [27579] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2625), 1, + ACTIONS(2651), 1, anon_sym_SEMI, - ACTIONS(2627), 1, + ACTIONS(2653), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78379,57 +81325,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27095] = 20, - ACTIONS(2397), 1, + [27662] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2655), 1, + anon_sym_RPAREN, + ACTIONS(2657), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2629), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78440,58 +81387,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27176] = 21, - ACTIONS(254), 1, + [27745] = 21, + ACTIONS(257), 1, anon_sym_RBRACE, - ACTIONS(2397), 1, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, + ACTIONS(2635), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78502,58 +81449,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27259] = 21, - ACTIONS(662), 1, - anon_sym_LBRACE, - ACTIONS(2397), 1, + [27828] = 18, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, + ACTIONS(2394), 1, anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2643), 1, + ACTIONS(2618), 1, anon_sym_DOT_DOT, - ACTIONS(2645), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2626), 1, anon_sym_CARET, - STATE(218), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2388), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78564,58 +81508,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27342] = 21, - ACTIONS(21), 1, - anon_sym_LBRACE, - ACTIONS(2397), 1, + [27905] = 8, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, - anon_sym_AMP, - ACTIONS(2643), 1, + ACTIONS(2618), 1, anon_sym_DOT_DOT, - ACTIONS(2645), 1, - anon_sym_AMP_AMP, - ACTIONS(2647), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, - anon_sym_PIPE, - ACTIONS(2651), 1, - anon_sym_CARET, - STATE(81), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2616), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2424), 13, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2637), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, anon_sym_SLASH, - anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2422), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78626,58 +81557,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27425] = 21, - ACTIONS(662), 1, - anon_sym_LBRACE, - ACTIONS(2397), 1, + [27962] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2643), 1, + ACTIONS(2618), 1, anon_sym_DOT_DOT, - ACTIONS(2645), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2626), 1, anon_sym_CARET, - STATE(214), 1, - sym_block, + ACTIONS(2659), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2466), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78688,58 +81618,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27508] = 21, - ACTIONS(2397), 1, + [28043] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, - anon_sym_SEMI, - ACTIONS(2659), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2663), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78750,120 +81679,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27591] = 21, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(2547), 1, - sym_identifier, - ACTIONS(2551), 1, - anon_sym_LPAREN, - ACTIONS(2553), 1, - anon_sym_default, - ACTIONS(2555), 1, - anon_sym_for, - ACTIONS(2557), 1, - anon_sym_STAR, - ACTIONS(2559), 1, - anon_sym_AMP, - ACTIONS(2561), 1, - sym_metavariable, - STATE(1504), 1, - sym_scoped_type_identifier, - STATE(1651), 1, - sym_where_predicate, - STATE(1715), 1, - sym_generic_type, - STATE(1737), 1, - sym_primitive_type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2045), 1, - sym_generic_type_with_turbofish, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1963), 4, - sym_higher_ranked_trait_bound, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [27674] = 21, - ACTIONS(2397), 1, + [28124] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2661), 1, + ACTIONS(2665), 1, anon_sym_SEMI, - ACTIONS(2663), 1, + ACTIONS(2667), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78874,58 +81741,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27757] = 21, - ACTIONS(2397), 1, + [28207] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_DOT_DOT, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2665), 1, - anon_sym_LBRACE, - STATE(213), 1, - sym_match_block, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, + ACTIONS(2669), 1, + anon_sym_RPAREN, + ACTIONS(2671), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78936,58 +81803,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27840] = 21, - ACTIONS(244), 1, - anon_sym_RBRACE, - ACTIONS(2397), 1, + [28290] = 21, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2659), 1, anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2675), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, - anon_sym_SEMI, + STATE(746), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78998,58 +81865,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27923] = 21, - ACTIONS(21), 1, - anon_sym_LBRACE, - ACTIONS(2397), 1, + [28373] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_DOT_DOT, - ACTIONS(2645), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2626), 1, anon_sym_CARET, - STATE(76), 1, - sym_block, + ACTIONS(2659), 1, + anon_sym_EQ, + ACTIONS(2675), 1, + anon_sym_DOT_DOT, + ACTIONS(2677), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79060,58 +81927,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28006] = 21, - ACTIONS(2397), 1, + [28456] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2667), 1, + ACTIONS(2679), 1, anon_sym_SEMI, - ACTIONS(2669), 1, + ACTIONS(2681), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79122,58 +81989,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28089] = 21, - ACTIONS(2397), 1, + [28539] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2685), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2683), 27, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [28586] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2671), 1, + ACTIONS(2687), 1, anon_sym_SEMI, - ACTIONS(2673), 1, + ACTIONS(2689), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79184,58 +82095,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28172] = 21, - ACTIONS(260), 1, + [28669] = 21, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(2397), 1, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_DOT_DOT, - ACTIONS(2645), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2626), 1, anon_sym_CARET, - STATE(664), 1, + ACTIONS(2659), 1, + anon_sym_EQ, + ACTIONS(2675), 1, + anon_sym_DOT_DOT, + STATE(78), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79246,58 +82157,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28255] = 21, - ACTIONS(2397), 1, + [28752] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2675), 1, - anon_sym_SEMI, - ACTIONS(2677), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2691), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79308,58 +82218,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28338] = 21, - ACTIONS(2397), 1, + [28833] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2695), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2693), 27, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [28880] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2679), 1, - anon_sym_RBRACE, - ACTIONS(2681), 1, - anon_sym_COMMA, + ACTIONS(2697), 1, + anon_sym_SEMI, + ACTIONS(2699), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79370,102 +82324,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28421] = 4, - ACTIONS(2571), 1, - anon_sym_COLON_COLON, + [28963] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(2703), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(470), 22, + sym_metavariable, + ACTIONS(2701), 27, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [29010] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2392), 1, anon_sym_as, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2438), 1, anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28470] = 20, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2659), 1, anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2434), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2683), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79476,57 +82429,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28551] = 20, - ACTIONS(2397), 1, + [29091] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2659), 1, anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2675), 1, anon_sym_DOT_DOT, + ACTIONS(2705), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2685), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79537,57 +82491,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28632] = 20, - ACTIONS(2397), 1, + [29174] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2635), 1, + anon_sym_SEMI, + ACTIONS(2707), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2441), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79598,58 +82553,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28713] = 21, - ACTIONS(2397), 1, + [29257] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2691), 1, - anon_sym_SEMI, - ACTIONS(2693), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2709), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79660,52 +82614,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28796] = 18, - ACTIONS(2397), 1, + [29338] = 18, + ACTIONS(269), 1, + anon_sym_EQ, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2457), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2645), 1, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2455), 13, + ACTIONS(261), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -79719,58 +82673,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28873] = 21, - ACTIONS(2397), 1, + [29415] = 21, + ACTIONS(259), 1, + anon_sym_RBRACE, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2695), 1, - anon_sym_RPAREN, - ACTIONS(2697), 1, - anon_sym_COMMA, + ACTIONS(2635), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79781,58 +82735,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28956] = 21, - ACTIONS(2397), 1, + [29498] = 21, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_DOT_DOT, - ACTIONS(2645), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2699), 1, - anon_sym_LBRACE, + ACTIONS(2659), 1, + anon_sym_EQ, + ACTIONS(2675), 1, + anon_sym_DOT_DOT, STATE(67), 1, - sym_match_block, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2673), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79843,58 +82797,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29039] = 21, - ACTIONS(2397), 1, + [29581] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2713), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2711), 27, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [29628] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, - anon_sym_SEMI, - ACTIONS(2703), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2715), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79905,58 +82902,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29122] = 21, - ACTIONS(260), 1, - anon_sym_LBRACE, - ACTIONS(2397), 1, + [29709] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_DOT_DOT, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - STATE(669), 1, - sym_block, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2717), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79967,57 +82963,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29205] = 20, - ACTIONS(2397), 1, + [29790] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2719), 1, + anon_sym_SEMI, + ACTIONS(2721), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2433), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80028,58 +83025,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29286] = 21, - ACTIONS(248), 1, + [29873] = 17, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(2576), 1, + sym_identifier, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(2582), 1, + anon_sym_default, + ACTIONS(2586), 1, + anon_sym_COLON_COLON, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2590), 1, + sym_self, + ACTIONS(2592), 1, + sym_metavariable, + ACTIONS(2723), 1, anon_sym_RBRACE, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, + STATE(1453), 1, + sym_primitive_type, + STATE(1457), 1, + sym_scoped_identifier, + STATE(2003), 1, + sym_generic_type_with_turbofish, + STATE(2123), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1983), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [29948] = 21, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, + ACTIONS(2635), 1, anon_sym_SEMI, + ACTIONS(2725), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80090,57 +83145,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29369] = 20, - ACTIONS(2397), 1, + [30031] = 18, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_EQ, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2705), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2430), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80151,93 +83204,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29450] = 8, - ACTIONS(2397), 1, + [30108] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2453), 13, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, + ACTIONS(2402), 1, anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PERCENT, - ACTIONS(2451), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(2408), 1, anon_sym_AMP_AMP, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29507] = 7, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2689), 1, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2727), 1, + anon_sym_SEMI, + ACTIONS(2729), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2465), 13, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2396), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2463), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_as, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80248,55 +83266,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29562] = 18, - ACTIONS(2397), 1, + [30191] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2401), 1, - anon_sym_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2731), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2395), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80307,58 +83327,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29639] = 21, - ACTIONS(2397), 1, + [30272] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, - anon_sym_SEMI, - ACTIONS(2707), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2733), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80369,55 +83388,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29722] = 18, - ACTIONS(2397), 1, + [30353] = 21, + ACTIONS(549), 1, + anon_sym_RPAREN, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2461), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2671), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2459), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80428,44 +83450,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29799] = 7, - ACTIONS(2397), 1, + [30436] = 21, + ACTIONS(101), 1, + anon_sym_RBRACE, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2427), 1, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2689), 1, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2635), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2469), 13, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2396), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2467), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_as, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80476,37 +83512,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29854] = 7, - ACTIONS(2397), 1, + [30519] = 9, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2427), 1, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2689), 1, + ACTIONS(2618), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2687), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2473), 13, - anon_sym_EQ, + ACTIONS(2612), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2424), 10, + anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, anon_sym_AMP, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PERCENT, - ACTIONS(2471), 20, + ACTIONS(2422), 19, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_as, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80524,37 +83562,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29909] = 9, - ACTIONS(2397), 1, + [30578] = 14, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2689), 1, + ACTIONS(2614), 1, + anon_sym_AMP, + ACTIONS(2618), 1, anon_sym_DOT_DOT, + ACTIONS(2624), 1, + anon_sym_PIPE, + ACTIONS(2626), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2687), 2, + ACTIONS(2608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2453), 10, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2424), 3, anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 19, + ACTIONS(2612), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2422), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -80574,55 +83617,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29968] = 18, - ACTIONS(2397), 1, + [30647] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2445), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2635), 1, + anon_sym_SEMI, + ACTIONS(2735), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2443), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80633,58 +83679,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30045] = 21, - ACTIONS(2397), 1, + [30730] = 21, + ACTIONS(545), 1, + anon_sym_RPAREN, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_DOT_DOT, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2709), 1, - anon_sym_LBRACE, - STATE(739), 1, - sym_match_block, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, + ACTIONS(2671), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80695,42 +83741,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30128] = 14, - ACTIONS(2397), 1, + [30813] = 11, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2639), 1, - anon_sym_AMP, - ACTIONS(2649), 1, - anon_sym_PIPE, - ACTIONS(2651), 1, - anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2618), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2655), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2453), 3, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2424), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2451), 19, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2422), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -80750,48 +83793,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30197] = 11, - ACTIONS(2397), 1, + [30876] = 21, + ACTIONS(105), 1, + anon_sym_RBRACE, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2689), 1, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2635), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2655), 2, + ACTIONS(2398), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2453), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2451), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80802,48 +83855,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30260] = 16, - ACTIONS(2397), 1, + [30959] = 16, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2453), 1, + ACTIONS(2424), 1, anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2649), 1, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2451), 15, + ACTIONS(2422), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -80859,54 +83912,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30333] = 17, - ACTIONS(2397), 1, + [31032] = 21, + ACTIONS(667), 1, + anon_sym_LBRACE, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2453), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2645), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2649), 1, + ACTIONS(2622), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2659), 1, + anon_sym_EQ, + ACTIONS(2675), 1, anon_sym_DOT_DOT, + STATE(218), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2451), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80917,55 +83974,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30408] = 18, - ACTIONS(264), 1, + [31115] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2739), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_EQ, - ACTIONS(2397), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2737), 27, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [31162] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2741), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(256), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80976,58 +84079,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30485] = 21, - ACTIONS(246), 1, - anon_sym_RBRACE, - ACTIONS(2397), 1, + [31243] = 21, + ACTIONS(667), 1, + anon_sym_LBRACE, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2659), 1, anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2675), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, - anon_sym_SEMI, + STATE(219), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81038,50 +84141,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30568] = 13, - ACTIONS(2397), 1, + [31326] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2743), 1, + anon_sym_RBRACE, + ACTIONS(2745), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2655), 2, + ACTIONS(2398), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2453), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2451), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81092,49 +84203,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30635] = 12, - ACTIONS(2397), 1, + [31409] = 21, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2639), 1, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2689), 1, + ACTIONS(2620), 1, + anon_sym_AMP_AMP, + ACTIONS(2622), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2624), 1, + anon_sym_PIPE, + ACTIONS(2626), 1, + anon_sym_CARET, + ACTIONS(2659), 1, + anon_sym_EQ, + ACTIONS(2675), 1, anon_sym_DOT_DOT, + STATE(696), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2655), 2, + ACTIONS(2610), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2453), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2451), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81145,57 +84265,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30700] = 20, - ACTIONS(2397), 1, + [31492] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2635), 1, + anon_sym_SEMI, + ACTIONS(2747), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2711), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81206,57 +84327,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30781] = 20, - ACTIONS(2397), 1, + [31575] = 17, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2424), 1, + anon_sym_EQ, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2713), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2422), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81267,57 +84385,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30862] = 20, - ACTIONS(2397), 1, + [31650] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2659), 1, anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2675), 1, anon_sym_DOT_DOT, + ACTIONS(2749), 1, + anon_sym_LBRACE, + STATE(223), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2715), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81328,38 +84447,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30943] = 10, - ACTIONS(2397), 1, + [31733] = 13, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2689), 1, + ACTIONS(2614), 1, + anon_sym_AMP, + ACTIONS(2618), 1, anon_sym_DOT_DOT, + ACTIONS(2626), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2687), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, - anon_sym_STAR, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2453), 8, + ACTIONS(2424), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 19, + ACTIONS(2422), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -81379,55 +84501,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31004] = 18, - ACTIONS(2397), 1, + [31800] = 21, + ACTIONS(99), 1, + anon_sym_RBRACE, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2449), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2645), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2647), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2689), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2635), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2687), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2447), 13, + ACTIONS(2440), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31883] = 12, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2614), 1, + anon_sym_AMP, + ACTIONS(2618), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2616), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2630), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2612), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2424), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2422), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81438,57 +84616,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31081] = 20, - ACTIONS(2397), 1, + [31948] = 21, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2751), 1, + anon_sym_SEMI, + ACTIONS(2753), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2717), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81499,77 +84678,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31162] = 21, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(2547), 1, - sym_identifier, - ACTIONS(2551), 1, - anon_sym_LPAREN, - ACTIONS(2553), 1, - anon_sym_default, - ACTIONS(2555), 1, - anon_sym_for, - ACTIONS(2557), 1, - anon_sym_STAR, - ACTIONS(2559), 1, - anon_sym_AMP, - ACTIONS(2561), 1, - sym_metavariable, - STATE(1500), 1, - sym_where_predicate, - STATE(1504), 1, - sym_scoped_type_identifier, - STATE(1715), 1, - sym_generic_type, - STATE(1737), 1, - sym_primitive_type, - STATE(2044), 1, - sym_bracketed_type, - STATE(2045), 1, - sym_generic_type_with_turbofish, - STATE(2059), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1963), 4, - sym_higher_ranked_trait_bound, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [31245] = 4, - ACTIONS(2719), 1, + [32031] = 4, + ACTIONS(2755), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(493), 15, anon_sym_EQ, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -81581,9 +84697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 22, + ACTIONS(495), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_as, @@ -81606,58 +84723,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31294] = 21, - ACTIONS(538), 1, - anon_sym_RPAREN, - ACTIONS(2397), 1, + [32080] = 10, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2618), 1, anon_sym_DOT_DOT, - ACTIONS(2609), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2424), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2422), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81668,58 +84774,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31377] = 21, - ACTIONS(2397), 1, + [32141] = 19, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2659), 1, anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2675), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, - anon_sym_SEMI, - ACTIONS(2721), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2757), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81730,57 +84833,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31460] = 20, - ACTIONS(2397), 1, + [32219] = 16, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(2576), 1, + sym_identifier, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(2582), 1, + anon_sym_default, + ACTIONS(2586), 1, + anon_sym_COLON_COLON, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2590), 1, + sym_self, + ACTIONS(2592), 1, + sym_metavariable, + STATE(1453), 1, + sym_primitive_type, + STATE(1457), 1, + sym_scoped_identifier, + STATE(2003), 1, + sym_generic_type_with_turbofish, + STATE(2123), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2088), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [32291] = 16, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(2576), 1, + sym_identifier, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(2582), 1, + anon_sym_default, + ACTIONS(2586), 1, + anon_sym_COLON_COLON, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2590), 1, + sym_self, + ACTIONS(2592), 1, + sym_metavariable, + STATE(1453), 1, + sym_primitive_type, + STATE(1457), 1, + sym_scoped_identifier, + STATE(2003), 1, + sym_generic_type_with_turbofish, + STATE(2123), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2004), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [32363] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2759), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2723), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81791,55 +85005,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31541] = 19, - ACTIONS(2397), 1, + [32443] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_DOT_DOT, - ACTIONS(2647), 1, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, + ACTIONS(2761), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2725), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81850,56 +85065,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31619] = 20, - ACTIONS(2397), 1, + [32523] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_DOT_DOT, - ACTIONS(2647), 1, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2727), 1, - anon_sym_LBRACE, - ACTIONS(2729), 1, - anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, + ACTIONS(2635), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81910,56 +85125,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31699] = 20, - ACTIONS(2397), 1, + [32603] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2731), 1, - anon_sym_SEMI, + ACTIONS(2671), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81970,56 +85185,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31779] = 20, - ACTIONS(2397), 1, + [32683] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2733), 1, - anon_sym_COMMA, + ACTIONS(2763), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82030,55 +85245,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31859] = 19, - ACTIONS(2397), 1, + [32763] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2631), 1, - anon_sym_EQ, - ACTIONS(2639), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2643), 1, - anon_sym_DOT_DOT, - ACTIONS(2647), 1, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2649), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2651), 1, + ACTIONS(2414), 1, anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, + ACTIONS(2765), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2635), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2637), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2641), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2655), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2735), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(2633), 3, - anon_sym_SLASH, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2653), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2657), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82089,56 +85305,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31937] = 20, - ACTIONS(2397), 1, + [32843] = 16, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(2576), 1, + sym_identifier, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(2582), 1, + anon_sym_default, + ACTIONS(2586), 1, + anon_sym_COLON_COLON, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2590), 1, + sym_self, + ACTIONS(2592), 1, + sym_metavariable, + STATE(1453), 1, + sym_primitive_type, + STATE(1457), 1, + sym_scoped_identifier, + STATE(2003), 1, + sym_generic_type_with_turbofish, + STATE(2123), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1983), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [32915] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2609), 1, - anon_sym_COMMA, + ACTIONS(2767), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82149,56 +85421,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32017] = 20, - ACTIONS(2397), 1, + [32995] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2737), 1, - anon_sym_RBRACK, + ACTIONS(2769), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82209,56 +85481,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32097] = 20, - ACTIONS(2397), 1, + [33075] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2739), 1, + ACTIONS(2771), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82269,56 +85541,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32177] = 20, - ACTIONS(2397), 1, + [33155] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2741), 1, + ACTIONS(2773), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82329,56 +85601,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32257] = 20, - ACTIONS(2397), 1, + [33235] = 20, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1803), 1, + anon_sym_fn, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(2500), 1, + sym_metavariable, + ACTIONS(2775), 1, + sym_identifier, + STATE(1033), 1, + sym_generic_type, + STATE(1192), 1, + sym_function_type, + STATE(1263), 1, + sym_scoped_type_identifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2045), 1, + sym_bracketed_type, + STATE(2046), 1, + sym_generic_type_with_turbofish, + STATE(2052), 1, + sym_scoped_identifier, + STATE(2142), 1, + sym_primitive_type, + STATE(2169), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [33315] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2743), 1, + ACTIONS(2777), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82389,55 +85721,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32337] = 19, - ACTIONS(2397), 1, + [33395] = 20, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1926), 1, + anon_sym_default, + ACTIONS(1928), 1, + anon_sym_fn, + ACTIONS(1934), 1, + anon_sym_COLON_COLON, + ACTIONS(1942), 1, + sym_self, + ACTIONS(2779), 1, + sym_identifier, + ACTIONS(2781), 1, + sym_metavariable, + STATE(624), 1, + sym_scoped_type_identifier, + STATE(643), 1, + sym_generic_type, + STATE(734), 1, + sym_function_type, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2054), 1, + sym_function_modifiers, + STATE(2075), 1, + sym_primitive_type, + STATE(2140), 1, + sym_bracketed_type, + STATE(2141), 1, + sym_generic_type_with_turbofish, + STATE(2144), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [33475] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2417), 1, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2783), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2725), 2, - anon_sym_AMP_AMP, - anon_sym_EQ_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82448,56 +85841,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32415] = 20, - ACTIONS(2397), 1, + [33555] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2745), 1, - anon_sym_RBRACK, + ACTIONS(2785), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82508,56 +85901,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32495] = 20, - ACTIONS(2397), 1, + [33635] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2417), 1, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2727), 1, - anon_sym_EQ_GT, - ACTIONS(2747), 1, - anon_sym_AMP_AMP, + ACTIONS(2787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82568,56 +85961,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32575] = 20, - ACTIONS(2397), 1, + [33715] = 19, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2749), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2757), 2, + anon_sym_AMP_AMP, + anon_sym_EQ_GT, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82628,115 +86020,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32655] = 20, - ACTIONS(2397), 1, + [33793] = 19, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, - ACTIONS(2751), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2439), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32735] = 19, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2659), 1, anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2675), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2735), 2, + ACTIONS(2789), 2, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_EQ_GT, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82747,56 +86079,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32813] = 20, - ACTIONS(2397), 1, + [33871] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2753), 1, + ACTIONS(2791), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82807,176 +86139,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32893] = 20, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, - ACTIONS(2755), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + [33951] = 16, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2576), 1, + sym_identifier, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(2582), 1, + anon_sym_default, + ACTIONS(2586), 1, + anon_sym_COLON_COLON, + ACTIONS(2588), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2439), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32973] = 20, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_as, - ACTIONS(2409), 1, - anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, - anon_sym_PIPE, - ACTIONS(2421), 1, - anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, - anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_DOT_DOT, - ACTIONS(2757), 1, - anon_sym_SEMI, + ACTIONS(2590), 1, + sym_self, + ACTIONS(2592), 1, + sym_metavariable, + STATE(1453), 1, + sym_primitive_type, + STATE(1457), 1, + sym_scoped_identifier, + STATE(2003), 1, + sym_generic_type_with_turbofish, + STATE(2123), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2439), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33053] = 20, - ACTIONS(2397), 1, + STATE(2181), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [34023] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2615), 1, + ACTIONS(2793), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82987,56 +86255,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33133] = 20, - ACTIONS(2397), 1, + [34103] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2624), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(2427), 1, - anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2659), 1, anon_sym_EQ, - ACTIONS(2437), 1, - anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2675), 1, anon_sym_DOT_DOT, - ACTIONS(2759), 1, - anon_sym_SEMI, + ACTIONS(2795), 1, + anon_sym_LBRACE, + ACTIONS(2797), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2608), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2612), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2628), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2661), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83047,56 +86315,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33213] = 20, - ACTIONS(2397), 1, + [34183] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2761), 1, - anon_sym_SEMI, + ACTIONS(2799), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83107,56 +86375,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33293] = 20, - ACTIONS(2397), 1, + [34263] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, + ACTIONS(2408), 1, anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2763), 1, + ACTIONS(2801), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83167,56 +86435,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33373] = 20, - ACTIONS(2397), 1, + [34343] = 19, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2765), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2789), 2, + anon_sym_AMP_AMP, + anon_sym_EQ_GT, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83227,47 +86494,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33453] = 18, + [34421] = 20, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2767), 1, + ACTIONS(355), 1, + anon_sym_fn, + ACTIONS(1799), 1, + anon_sym_const, + ACTIONS(1801), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(2500), 1, + sym_metavariable, + ACTIONS(2803), 1, sym_identifier, - ACTIONS(2769), 1, + STATE(1033), 1, + sym_generic_type, + STATE(1035), 1, + sym_scoped_type_identifier, + STATE(1192), 1, + sym_function_type, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2000), 1, + sym_function_modifiers, + STATE(2045), 1, + sym_bracketed_type, + STATE(2046), 1, + sym_generic_type_with_turbofish, + STATE(2052), 1, + sym_scoped_identifier, + STATE(2142), 1, + sym_primitive_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11), 19, + 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [34501] = 16, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(2576), 1, + sym_identifier, + ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, - anon_sym_RBRACE, - ACTIONS(2773), 1, + ACTIONS(2582), 1, anon_sym_default, - ACTIONS(2775), 1, - anon_sym_COMMA, - ACTIONS(2777), 1, + ACTIONS(2586), 1, anon_sym_COLON_COLON, - ACTIONS(2779), 1, + ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2781), 1, + ACTIONS(2590), 1, sym_self, - ACTIONS(2783), 1, + ACTIONS(2592), 1, sym_metavariable, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1480), 1, + STATE(1453), 1, sym_primitive_type, - STATE(2091), 1, + STATE(1457), 1, + sym_scoped_identifier, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1703), 5, + STATE(2068), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83278,60 +86601,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [33528] = 19, - ACTIONS(2397), 1, + [34573] = 20, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2409), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2415), 1, - anon_sym_AMP_AMP, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_PIPE_PIPE, - ACTIONS(2419), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2427), 1, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2435), 1, + ACTIONS(2436), 1, anon_sym_EQ, - ACTIONS(2437), 1, + ACTIONS(2438), 1, anon_sym_QMARK, - ACTIONS(2545), 1, + ACTIONS(2560), 1, anon_sym_DOT_DOT, + ACTIONS(2795), 1, + anon_sym_EQ_GT, + ACTIONS(2805), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 2, + ACTIONS(2396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 2, + ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, + ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2403), 3, - anon_sym_SLASH, + ACTIONS(2400), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2423), 4, + ACTIONS(2416), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2439), 10, + ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83342,135 +86670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33605] = 17, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_default, - ACTIONS(2777), 1, - anon_sym_COLON_COLON, - ACTIONS(2779), 1, - anon_sym_STAR, - ACTIONS(2781), 1, - sym_self, - ACTIONS(2783), 1, - sym_metavariable, - ACTIONS(2785), 1, - anon_sym_RBRACE, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1480), 1, - sym_primitive_type, - STATE(2091), 1, - sym_generic_type_with_turbofish, - STATE(2110), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1889), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [33677] = 17, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_default, - ACTIONS(2777), 1, - anon_sym_COLON_COLON, - ACTIONS(2779), 1, - anon_sym_STAR, - ACTIONS(2781), 1, - sym_self, - ACTIONS(2783), 1, - sym_metavariable, - ACTIONS(2787), 1, - anon_sym_RBRACE, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1480), 1, - sym_primitive_type, - STATE(2091), 1, - sym_generic_type_with_turbofish, - STATE(2110), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1889), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [33749] = 5, - ACTIONS(2789), 1, - anon_sym_POUND, + [34653] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(922), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(1848), 8, + ACTIONS(867), 9, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(1846), 24, + ACTIONS(869), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83481,6 +86695,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -83495,22 +86712,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_self, - [33797] = 3, + [34698] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 10, - anon_sym_SEMI, + ACTIONS(1317), 9, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(2792), 24, + ACTIONS(1319), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83521,6 +86737,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -83532,65 +86751,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_fn, anon_sym_impl, - anon_sym_where, + anon_sym_pub, sym_identifier, sym_self, - [33840] = 3, + [34743] = 19, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(2392), 1, + anon_sym_as, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2408), 1, + anon_sym_AMP_AMP, + ACTIONS(2410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2414), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2436), 1, + anon_sym_EQ, + ACTIONS(2438), 1, + anon_sym_QMARK, + ACTIONS(2560), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 10, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(2396), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2398), 2, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, + ACTIONS(2418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2558), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2400), 3, anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2796), 24, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym_where, - sym_identifier, - sym_self, - [33883] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2416), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2440), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 10, - anon_sym_SEMI, + ACTIONS(1095), 9, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(2800), 24, + ACTIONS(1097), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83601,6 +86837,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -83612,670 +86851,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_fn, anon_sym_impl, - anon_sym_where, + anon_sym_pub, sym_identifier, sym_self, - [33926] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2806), 10, + [34865] = 21, + ACTIONS(2807), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2804), 24, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, + ACTIONS(2809), 1, + anon_sym_RBRACE, + ACTIONS(2811), 1, anon_sym_const, + ACTIONS(2813), 1, anon_sym_default, + ACTIONS(2815), 1, + anon_sym_mod, + ACTIONS(2817), 1, + anon_sym_enum, + ACTIONS(2819), 1, anon_sym_fn, + ACTIONS(2821), 1, anon_sym_impl, - anon_sym_where, - sym_identifier, - sym_self, - [33969] = 3, + ACTIONS(2823), 1, + anon_sym_let, + ACTIONS(2825), 1, + anon_sym_pub, + ACTIONS(2827), 1, + anon_sym_struct, + ACTIONS(2829), 1, + anon_sym_trait, + ACTIONS(2831), 1, + anon_sym_type, + ACTIONS(2833), 1, + anon_sym_use, + ACTIONS(2835), 1, + anon_sym_POUND, + ACTIONS(2837), 1, + anon_sym_asm, + STATE(1249), 1, + sym_visibility_modifier, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2190), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 10, + STATE(946), 16, + sym_empty_statement, + sym_attribute_item, + sym_inner_attribute_item, + sym_mod_item, + sym_struct_item, + sym_enum_item, + sym_const_item, + sym_asm_item, + sym_type_item, + sym_function_item, + sym_function_signature_item, + sym_impl_item, + sym_trait_item, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [34945] = 21, + ACTIONS(2839), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2808), 24, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym_where, - sym_identifier, - sym_self, - [34012] = 16, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_default, - ACTIONS(2777), 1, - anon_sym_COLON_COLON, - ACTIONS(2779), 1, - anon_sym_STAR, - ACTIONS(2781), 1, - sym_self, - ACTIONS(2783), 1, - sym_metavariable, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1480), 1, - sym_primitive_type, - STATE(2091), 1, - sym_generic_type_with_turbofish, - STATE(2110), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2089), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [34081] = 16, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_default, - ACTIONS(2777), 1, - anon_sym_COLON_COLON, - ACTIONS(2779), 1, - anon_sym_STAR, - ACTIONS(2781), 1, - sym_self, - ACTIONS(2783), 1, - sym_metavariable, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1480), 1, - sym_primitive_type, - STATE(2091), 1, - sym_generic_type_with_turbofish, - STATE(2110), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2090), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [34150] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2814), 10, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2812), 24, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym_where, - sym_identifier, - sym_self, - [34193] = 20, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1822), 1, - anon_sym_fn, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(2561), 1, - sym_metavariable, - ACTIONS(2816), 1, - sym_identifier, - STATE(986), 1, - sym_generic_type, - STATE(1067), 1, - sym_function_type, - STATE(1265), 1, - sym_scoped_type_identifier, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2045), 1, - sym_generic_type_with_turbofish, - STATE(2059), 1, - sym_scoped_identifier, - STATE(2162), 1, - sym_function_modifiers, - STATE(2168), 1, - sym_primitive_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [34270] = 16, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_default, - ACTIONS(2777), 1, - anon_sym_COLON_COLON, - ACTIONS(2779), 1, - anon_sym_STAR, - ACTIONS(2781), 1, - sym_self, - ACTIONS(2783), 1, - sym_metavariable, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1480), 1, - sym_primitive_type, - STATE(2091), 1, - sym_generic_type_with_turbofish, - STATE(2110), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1889), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [34339] = 16, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_default, - ACTIONS(2777), 1, - anon_sym_COLON_COLON, - ACTIONS(2779), 1, - anon_sym_STAR, - ACTIONS(2781), 1, - sym_self, - ACTIONS(2783), 1, - sym_metavariable, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1480), 1, - sym_primitive_type, - STATE(2091), 1, - sym_generic_type_with_turbofish, - STATE(2110), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2167), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [34408] = 20, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(350), 1, - anon_sym_fn, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1820), 1, - anon_sym_default, - ACTIONS(1828), 1, - anon_sym_COLON_COLON, - ACTIONS(1836), 1, - sym_self, - ACTIONS(2561), 1, - sym_metavariable, - ACTIONS(2818), 1, - sym_identifier, - STATE(986), 1, - sym_generic_type, - STATE(1002), 1, - sym_scoped_type_identifier, - STATE(1067), 1, - sym_function_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2044), 1, - sym_bracketed_type, - STATE(2045), 1, - sym_generic_type_with_turbofish, - STATE(2052), 1, - sym_function_modifiers, - STATE(2059), 1, - sym_scoped_identifier, - STATE(2168), 1, - sym_primitive_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [34485] = 16, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_default, - ACTIONS(2777), 1, - anon_sym_COLON_COLON, - ACTIONS(2779), 1, - anon_sym_STAR, - ACTIONS(2781), 1, - sym_self, - ACTIONS(2783), 1, - sym_metavariable, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1480), 1, - sym_primitive_type, - STATE(2091), 1, - sym_generic_type_with_turbofish, - STATE(2110), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2071), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [34554] = 20, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(1818), 1, - anon_sym_const, - ACTIONS(1953), 1, - anon_sym_default, - ACTIONS(1955), 1, - anon_sym_fn, - ACTIONS(1961), 1, - anon_sym_COLON_COLON, - ACTIONS(1969), 1, - sym_self, - ACTIONS(2820), 1, - sym_identifier, - ACTIONS(2822), 1, - sym_metavariable, - STATE(619), 1, - sym_scoped_type_identifier, - STATE(638), 1, - sym_generic_type, - STATE(743), 1, - sym_function_type, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2053), 1, - sym_function_modifiers, - STATE(2073), 1, - sym_primitive_type, - STATE(2134), 1, - sym_bracketed_type, - STATE(2135), 1, - sym_generic_type_with_turbofish, - STATE(2138), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [34631] = 20, - ACTIONS(2824), 1, - anon_sym_SEMI, - ACTIONS(2826), 1, - anon_sym_RBRACE, - ACTIONS(2828), 1, - anon_sym_const, - ACTIONS(2830), 1, - anon_sym_default, - ACTIONS(2832), 1, - anon_sym_dep, - ACTIONS(2834), 1, - anon_sym_enum, - ACTIONS(2836), 1, - anon_sym_fn, - ACTIONS(2838), 1, - anon_sym_impl, - ACTIONS(2840), 1, - anon_sym_let, ACTIONS(2842), 1, - anon_sym_pub, + anon_sym_RBRACE, ACTIONS(2844), 1, - anon_sym_struct, - ACTIONS(2846), 1, - anon_sym_trait, - ACTIONS(2848), 1, - anon_sym_use, - ACTIONS(2850), 1, - anon_sym_POUND, - ACTIONS(2852), 1, - anon_sym_asm, - STATE(1264), 1, - sym_visibility_modifier, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2178), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(941), 15, - sym_empty_statement, - sym_attribute_item, - sym_inner_attribute_item, - sym_dep_item, - sym_struct_item, - sym_enum_item, - sym_const_item, - sym_asm_item, - sym_function_item, - sym_function_signature_item, - sym_impl_item, - sym_trait_item, - sym_let_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [34707] = 20, - ACTIONS(2824), 1, - anon_sym_SEMI, - ACTIONS(2828), 1, anon_sym_const, - ACTIONS(2830), 1, + ACTIONS(2847), 1, anon_sym_default, - ACTIONS(2832), 1, - anon_sym_dep, - ACTIONS(2834), 1, + ACTIONS(2850), 1, + anon_sym_mod, + ACTIONS(2853), 1, anon_sym_enum, - ACTIONS(2836), 1, + ACTIONS(2856), 1, anon_sym_fn, - ACTIONS(2838), 1, + ACTIONS(2859), 1, anon_sym_impl, - ACTIONS(2840), 1, + ACTIONS(2862), 1, anon_sym_let, - ACTIONS(2842), 1, + ACTIONS(2865), 1, anon_sym_pub, - ACTIONS(2844), 1, + ACTIONS(2868), 1, anon_sym_struct, - ACTIONS(2846), 1, + ACTIONS(2871), 1, anon_sym_trait, - ACTIONS(2848), 1, + ACTIONS(2874), 1, + anon_sym_type, + ACTIONS(2877), 1, anon_sym_use, - ACTIONS(2850), 1, + ACTIONS(2880), 1, anon_sym_POUND, - ACTIONS(2852), 1, + ACTIONS(2883), 1, anon_sym_asm, - ACTIONS(2854), 1, - anon_sym_RBRACE, - STATE(1264), 1, + STATE(1249), 1, sym_visibility_modifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2178), 1, + STATE(2190), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(939), 15, + STATE(945), 16, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, - sym_dep_item, + sym_mod_item, sym_struct_item, sym_enum_item, sym_const_item, sym_asm_item, + sym_type_item, sym_function_item, sym_function_signature_item, sym_impl_item, @@ -84283,55 +86972,58 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [34783] = 20, - ACTIONS(2824), 1, + [35025] = 21, + ACTIONS(2807), 1, anon_sym_SEMI, - ACTIONS(2828), 1, + ACTIONS(2811), 1, anon_sym_const, - ACTIONS(2830), 1, + ACTIONS(2813), 1, anon_sym_default, - ACTIONS(2832), 1, - anon_sym_dep, - ACTIONS(2834), 1, + ACTIONS(2815), 1, + anon_sym_mod, + ACTIONS(2817), 1, anon_sym_enum, - ACTIONS(2836), 1, + ACTIONS(2819), 1, anon_sym_fn, - ACTIONS(2838), 1, + ACTIONS(2821), 1, anon_sym_impl, - ACTIONS(2840), 1, + ACTIONS(2823), 1, anon_sym_let, - ACTIONS(2842), 1, + ACTIONS(2825), 1, anon_sym_pub, - ACTIONS(2844), 1, + ACTIONS(2827), 1, anon_sym_struct, - ACTIONS(2846), 1, + ACTIONS(2829), 1, anon_sym_trait, - ACTIONS(2848), 1, + ACTIONS(2831), 1, + anon_sym_type, + ACTIONS(2833), 1, anon_sym_use, - ACTIONS(2850), 1, + ACTIONS(2835), 1, anon_sym_POUND, - ACTIONS(2852), 1, + ACTIONS(2837), 1, anon_sym_asm, - ACTIONS(2856), 1, + ACTIONS(2886), 1, anon_sym_RBRACE, - STATE(1264), 1, + STATE(1249), 1, sym_visibility_modifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2178), 1, + STATE(2190), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(940), 15, + STATE(945), 16, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, - sym_dep_item, + sym_mod_item, sym_struct_item, sym_enum_item, sym_const_item, sym_asm_item, + sym_type_item, sym_function_item, sym_function_signature_item, sym_impl_item, @@ -84339,55 +87031,58 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [34859] = 20, - ACTIONS(2858), 1, + [35105] = 21, + ACTIONS(2807), 1, anon_sym_SEMI, - ACTIONS(2861), 1, - anon_sym_RBRACE, - ACTIONS(2863), 1, + ACTIONS(2811), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2813), 1, anon_sym_default, - ACTIONS(2869), 1, - anon_sym_dep, - ACTIONS(2872), 1, + ACTIONS(2815), 1, + anon_sym_mod, + ACTIONS(2817), 1, anon_sym_enum, - ACTIONS(2875), 1, + ACTIONS(2819), 1, anon_sym_fn, - ACTIONS(2878), 1, + ACTIONS(2821), 1, anon_sym_impl, - ACTIONS(2881), 1, + ACTIONS(2823), 1, anon_sym_let, - ACTIONS(2884), 1, + ACTIONS(2825), 1, anon_sym_pub, - ACTIONS(2887), 1, + ACTIONS(2827), 1, anon_sym_struct, - ACTIONS(2890), 1, + ACTIONS(2829), 1, anon_sym_trait, - ACTIONS(2893), 1, + ACTIONS(2831), 1, + anon_sym_type, + ACTIONS(2833), 1, anon_sym_use, - ACTIONS(2896), 1, + ACTIONS(2835), 1, anon_sym_POUND, - ACTIONS(2899), 1, + ACTIONS(2837), 1, anon_sym_asm, - STATE(1264), 1, + ACTIONS(2888), 1, + anon_sym_RBRACE, + STATE(1249), 1, sym_visibility_modifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2178), 1, + STATE(2190), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(940), 15, + STATE(945), 16, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, - sym_dep_item, + sym_mod_item, sym_struct_item, sym_enum_item, sym_const_item, sym_asm_item, + sym_type_item, sym_function_item, sym_function_signature_item, sym_impl_item, @@ -84395,55 +87090,58 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [34935] = 20, - ACTIONS(2824), 1, + [35185] = 21, + ACTIONS(2807), 1, anon_sym_SEMI, - ACTIONS(2828), 1, + ACTIONS(2811), 1, anon_sym_const, - ACTIONS(2830), 1, + ACTIONS(2813), 1, anon_sym_default, - ACTIONS(2832), 1, - anon_sym_dep, - ACTIONS(2834), 1, + ACTIONS(2815), 1, + anon_sym_mod, + ACTIONS(2817), 1, anon_sym_enum, - ACTIONS(2836), 1, + ACTIONS(2819), 1, anon_sym_fn, - ACTIONS(2838), 1, + ACTIONS(2821), 1, anon_sym_impl, - ACTIONS(2840), 1, + ACTIONS(2823), 1, anon_sym_let, - ACTIONS(2842), 1, + ACTIONS(2825), 1, anon_sym_pub, - ACTIONS(2844), 1, + ACTIONS(2827), 1, anon_sym_struct, - ACTIONS(2846), 1, + ACTIONS(2829), 1, anon_sym_trait, - ACTIONS(2848), 1, + ACTIONS(2831), 1, + anon_sym_type, + ACTIONS(2833), 1, anon_sym_use, - ACTIONS(2850), 1, + ACTIONS(2835), 1, anon_sym_POUND, - ACTIONS(2852), 1, + ACTIONS(2837), 1, anon_sym_asm, - ACTIONS(2902), 1, + ACTIONS(2890), 1, anon_sym_RBRACE, - STATE(1264), 1, + STATE(1249), 1, sym_visibility_modifier, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2178), 1, + STATE(2190), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(940), 15, + STATE(947), 16, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, - sym_dep_item, + sym_mod_item, sym_struct_item, sym_enum_item, sym_const_item, sym_asm_item, + sym_type_item, sym_function_item, sym_function_signature_item, sym_impl_item, @@ -84451,21 +87149,20 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [35011] = 3, + [35265] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 9, + ACTIONS(2894), 8, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(1604), 24, + ACTIONS(2892), 26, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84476,6 +87173,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -84487,24 +87187,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_fn, anon_sym_impl, - anon_sym_pub, sym_identifier, sym_self, - [35053] = 3, + [35308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(998), 9, + ACTIONS(2898), 8, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(1000), 24, + ACTIONS(2896), 26, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84515,6 +87213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -84526,24 +87227,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_fn, anon_sym_impl, - anon_sym_pub, sym_identifier, sym_self, - [35095] = 3, + [35351] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1458), 9, + ACTIONS(2902), 8, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(1460), 24, + ACTIONS(2900), 26, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84554,6 +87253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -84565,23 +87267,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_fn, anon_sym_impl, - anon_sym_pub, sym_identifier, sym_self, - [35137] = 3, + [35394] = 4, + ACTIONS(2908), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2906), 8, + ACTIONS(2906), 7, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(2904), 23, + ACTIONS(2904), 26, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84592,6 +87294,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, @@ -84605,20 +87310,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, sym_identifier, sym_self, - [35177] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2910), 8, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_BANG, + [35439] = 15, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, anon_sym_LT, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, + ACTIONS(2910), 1, + sym_identifier, + ACTIONS(2912), 1, + anon_sym_RBRACK, + ACTIONS(2914), 1, + anon_sym_default, + ACTIONS(2916), 1, + sym_self, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(2908), 23, + STATE(1316), 1, + sym_scoped_identifier, + STATE(1320), 1, + sym_primitive_type, + STATE(1699), 1, + sym_attribute, + STATE(2003), 1, + sym_generic_type_with_turbofish, + STATE(2123), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84629,125 +87351,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, + [35504] = 15, + ACTIONS(13), 1, anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - sym_identifier, - sym_self, - [35217] = 4, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2914), 7, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2912), 23, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - sym_identifier, - sym_self, - [35259] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2920), 8, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2918), 23, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - sym_identifier, - sym_self, - [35299] = 15, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2585), 1, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - ACTIONS(2922), 1, + ACTIONS(2910), 1, sym_identifier, - ACTIONS(2924), 1, - anon_sym_RBRACK, - ACTIONS(2926), 1, + ACTIONS(2914), 1, anon_sym_default, - ACTIONS(2928), 1, + ACTIONS(2916), 1, sym_self, - ACTIONS(2930), 1, + ACTIONS(2918), 1, sym_metavariable, - STATE(1309), 1, + ACTIONS(2920), 1, + anon_sym_RBRACK, + STATE(1316), 1, sym_scoped_identifier, - STATE(1314), 1, + STATE(1320), 1, sym_primitive_type, - STATE(1768), 1, + STATE(1795), 1, sym_attribute, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84758,43 +87401,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [35361] = 15, + [35569] = 15, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2585), 1, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - ACTIONS(2922), 1, + ACTIONS(2910), 1, sym_identifier, - ACTIONS(2926), 1, + ACTIONS(2914), 1, anon_sym_default, - ACTIONS(2928), 1, + ACTIONS(2916), 1, sym_self, - ACTIONS(2930), 1, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(2932), 1, + ACTIONS(2922), 1, anon_sym_RBRACK, - STATE(1309), 1, + STATE(1316), 1, sym_scoped_identifier, - STATE(1314), 1, + STATE(1320), 1, sym_primitive_type, - STATE(1632), 1, + STATE(1765), 1, sym_attribute, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84805,43 +87451,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [35423] = 15, + [35634] = 15, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2585), 1, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - ACTIONS(2922), 1, + ACTIONS(2910), 1, sym_identifier, - ACTIONS(2926), 1, + ACTIONS(2914), 1, anon_sym_default, - ACTIONS(2928), 1, + ACTIONS(2916), 1, sym_self, - ACTIONS(2930), 1, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(2934), 1, + ACTIONS(2924), 1, anon_sym_RBRACK, - STATE(1309), 1, + STATE(1316), 1, sym_scoped_identifier, - STATE(1314), 1, + STATE(1320), 1, sym_primitive_type, - STATE(1597), 1, + STATE(1650), 1, sym_attribute, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84852,43 +87501,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [35485] = 15, + [35699] = 15, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2585), 1, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - ACTIONS(2922), 1, + ACTIONS(2910), 1, sym_identifier, - ACTIONS(2926), 1, + ACTIONS(2914), 1, anon_sym_default, - ACTIONS(2928), 1, + ACTIONS(2916), 1, sym_self, - ACTIONS(2930), 1, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(2936), 1, + ACTIONS(2926), 1, anon_sym_RBRACK, - STATE(1309), 1, + STATE(1316), 1, sym_scoped_identifier, - STATE(1314), 1, + STATE(1320), 1, sym_primitive_type, - STATE(1605), 1, + STATE(1640), 1, sym_attribute, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84899,43 +87551,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [35547] = 15, + [35764] = 14, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2585), 1, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - ACTIONS(2922), 1, + ACTIONS(2910), 1, sym_identifier, - ACTIONS(2926), 1, + ACTIONS(2914), 1, anon_sym_default, - ACTIONS(2928), 1, + ACTIONS(2916), 1, sym_self, - ACTIONS(2930), 1, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(2938), 1, - anon_sym_RBRACK, - STATE(1309), 1, + STATE(1316), 1, sym_scoped_identifier, - STATE(1314), 1, + STATE(1320), 1, sym_primitive_type, - STATE(1747), 1, + STATE(1988), 1, sym_attribute, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84946,41 +87599,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [35609] = 14, + [35826] = 14, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2585), 1, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - ACTIONS(2922), 1, + ACTIONS(2910), 1, sym_identifier, - ACTIONS(2926), 1, + ACTIONS(2914), 1, anon_sym_default, - ACTIONS(2928), 1, + ACTIONS(2916), 1, sym_self, - ACTIONS(2930), 1, + ACTIONS(2918), 1, sym_metavariable, - STATE(1309), 1, + STATE(1316), 1, sym_scoped_identifier, - STATE(1314), 1, + STATE(1320), 1, sym_primitive_type, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, - STATE(2136), 1, + STATE(2175), 1, sym_attribute, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84991,41 +87647,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [35668] = 14, + [35888] = 14, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2585), 1, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - ACTIONS(2922), 1, + ACTIONS(2910), 1, sym_identifier, - ACTIONS(2926), 1, + ACTIONS(2914), 1, anon_sym_default, - ACTIONS(2928), 1, + ACTIONS(2916), 1, sym_self, - ACTIONS(2930), 1, + ACTIONS(2918), 1, sym_metavariable, - STATE(1309), 1, + STATE(1316), 1, sym_scoped_identifier, - STATE(1314), 1, + STATE(1320), 1, sym_primitive_type, - STATE(1911), 1, + STATE(1802), 1, sym_attribute, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85036,84 +87695,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [35727] = 14, + [35950] = 13, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2585), 1, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2926), 1, - anon_sym_default, ACTIONS(2928), 1, - sym_self, - ACTIONS(2930), 1, - sym_metavariable, - STATE(1309), 1, - sym_scoped_identifier, - STATE(1314), 1, - sym_primitive_type, - STATE(2060), 1, - sym_attribute, - STATE(2091), 1, - sym_generic_type_with_turbofish, - STATE(2110), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(11), 16, - 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [35786] = 13, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(73), 1, - anon_sym_LT, - ACTIONS(2585), 1, - anon_sym_COLON_COLON, - ACTIONS(2940), 1, sym_identifier, - ACTIONS(2942), 1, + ACTIONS(2930), 1, anon_sym_default, - ACTIONS(2944), 1, + ACTIONS(2932), 1, sym_self, - ACTIONS(2946), 1, + ACTIONS(2934), 1, sym_metavariable, - STATE(1815), 1, + STATE(1948), 1, sym_primitive_type, - STATE(1818), 1, + STATE(1951), 1, sym_scoped_identifier, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85124,39 +87741,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [35842] = 13, + [36009] = 13, ACTIONS(13), 1, anon_sym_str, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2585), 1, + ACTIONS(2516), 1, anon_sym_COLON_COLON, - ACTIONS(2948), 1, + ACTIONS(2936), 1, sym_identifier, - ACTIONS(2950), 1, + ACTIONS(2938), 1, anon_sym_default, - ACTIONS(2952), 1, + ACTIONS(2940), 1, sym_self, - ACTIONS(2954), 1, + ACTIONS(2942), 1, sym_metavariable, - STATE(1836), 1, + STATE(1813), 1, sym_primitive_type, - STATE(1848), 1, + STATE(1816), 1, sym_scoped_identifier, - STATE(2091), 1, + STATE(2003), 1, sym_generic_type_with_turbofish, - STATE(2110), 1, + STATE(2123), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 16, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85167,19 +87787,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, anon_sym_isize, anon_sym_usize, anon_sym_f32, anon_sym_f64, anon_sym_bool, anon_sym_char, - [35898] = 3, - ACTIONS(456), 1, + [36068] = 3, + ACTIONS(437), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(454), 25, + ACTIONS(435), 26, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -85187,7 +87810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_if, @@ -85196,6 +87819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_COMMA, @@ -85205,13 +87829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [35933] = 3, - ACTIONS(432), 1, + [36104] = 3, + ACTIONS(441), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(430), 25, + ACTIONS(439), 26, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -85219,7 +87843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_if, @@ -85228,6 +87852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_COMMA, @@ -85237,13 +87862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [35968] = 3, - ACTIONS(448), 1, + [36140] = 3, + ACTIONS(427), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(446), 25, + ACTIONS(425), 26, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -85251,7 +87876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_if, @@ -85260,6 +87885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_COMMA, @@ -85269,758 +87895,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [36003] = 10, - ACTIONS(2065), 1, + [36176] = 10, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(2960), 1, + ACTIONS(2948), 1, anon_sym_LPAREN, - ACTIONS(2962), 1, + ACTIONS(2950), 1, anon_sym_LBRACE, - ACTIONS(2964), 1, + ACTIONS(2952), 1, anon_sym_COLON_COLON, - ACTIONS(2968), 1, + ACTIONS(2956), 1, anon_sym_AT, - STATE(983), 1, + STATE(987), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2958), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2956), 10, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36046] = 4, - ACTIONS(2023), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2021), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2019), 12, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [36076] = 4, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2051), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2049), 12, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [36106] = 4, - ACTIONS(2029), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2027), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2025), 12, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [36136] = 4, - ACTIONS(2047), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2045), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2043), 12, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [36166] = 4, - ACTIONS(2970), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1861), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1863), 16, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36196] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2019), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2093), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2023), 14, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36225] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2027), 5, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2025), 13, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [36252] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2025), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2129), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2029), 14, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36281] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1883), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1885), 16, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36308] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2173), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2053), 14, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36337] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1861), 2, + ACTIONS(2946), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(1863), 16, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_else, - anon_sym_COLON_COLON, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, - anon_sym_in, anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36364] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2043), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2143), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2047), 14, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36393] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2147), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2145), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [36419] = 8, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2972), 1, - anon_sym_COLON_COLON, - STATE(983), 1, - sym_type_arguments, - STATE(1208), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2003), 4, - anon_sym_COLON, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2001), 8, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - [36455] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2143), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2047), 15, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36481] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2137), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2135), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [36507] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2089), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2087), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [36533] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2093), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2023), 15, + ACTIONS(2944), 10, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [36559] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2157), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2155), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [36585] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2173), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2053), 15, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + [36219] = 4, + ACTIONS(2016), 1, anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_EQ_GT, - [36611] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2125), 6, + ACTIONS(2014), 6, anon_sym_COLON, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2123), 11, + ACTIONS(2012), 12, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [36637] = 8, - ACTIONS(2058), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2972), 1, - anon_sym_COLON_COLON, - STATE(983), 1, - sym_type_arguments, - STATE(1208), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1993), 4, - anon_sym_COLON, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(1989), 8, - anon_sym_SEMI, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - [36673] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2149), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2081), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [36698] = 4, - ACTIONS(2974), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2017), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2015), 10, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [36725] = 7, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2065), 1, - anon_sym_LT2, - STATE(975), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2013), 3, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2011), 9, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - [36758] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1458), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - ACTIONS(1460), 13, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_asm, - sym_identifier, - [36783] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1602), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - ACTIONS(1604), 13, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_asm, - sym_identifier, - [36808] = 6, - ACTIONS(2960), 1, - anon_sym_LPAREN, - ACTIONS(2976), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, + [36249] = 4, + ACTIONS(2958), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2958), 2, + ACTIONS(1838), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2956), 10, + ACTIONS(1840), 16, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_GT, anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [36839] = 3, + [36279] = 4, + ACTIONS(2010), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2085), 4, + ACTIONS(2008), 6, + anon_sym_COLON, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2083), 12, + ACTIONS(2006), 12, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_PLUS, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [36864] = 4, - ACTIONS(2978), 1, + [36309] = 4, + ACTIONS(2022), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 5, + ACTIONS(2020), 6, anon_sym_COLON, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2011), 10, + ACTIONS(2018), 12, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86028,22 +88030,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PLUS, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [36891] = 4, - ACTIONS(2980), 1, + [36339] = 4, + ACTIONS(2004), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 5, + ACTIONS(2002), 6, anon_sym_COLON, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2011), 10, + ACTIONS(2000), 12, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86051,221 +88056,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PLUS, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [36918] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(998), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - ACTIONS(1000), 13, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_asm, - sym_identifier, - [36943] = 3, + [36369] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2153), 4, + ACTIONS(2020), 5, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2151), 12, + ACTIONS(2018), 13, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_PLUS, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [36968] = 3, + [36396] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2073), 5, + ACTIONS(2018), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2058), 2, anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2069), 11, + anon_sym_EQ, + ACTIONS(2022), 14, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_if, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, + anon_sym_else, anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [36993] = 3, + anon_sym_EQ_GT, + [36425] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2133), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2131), 12, + ACTIONS(2012), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2100), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2016), 14, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + anon_sym_EQ_GT, + [36454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1838), 2, + anon_sym_COLON, anon_sym_EQ, - anon_sym_DASH_GT, + ACTIONS(1840), 16, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_GT, - anon_sym_PIPE, - [37018] = 4, - ACTIONS(2982), 1, + anon_sym_else, anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + anon_sym_EQ_GT, + [36481] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 5, + ACTIONS(2000), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2162), 2, anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2011), 10, + anon_sym_EQ, + ACTIONS(2004), 14, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + anon_sym_EQ_GT, + [36510] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1864), 2, + anon_sym_COLON, anon_sym_EQ, + ACTIONS(1866), 16, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_GT, - anon_sym_PIPE, - [37045] = 4, - ACTIONS(2974), 1, + anon_sym_else, anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + anon_sym_EQ_GT, + [36537] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 5, + ACTIONS(2006), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2120), 2, anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2011), 10, + anon_sym_EQ, + ACTIONS(2010), 14, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_if, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [37072] = 3, + anon_sym_EQ_GT, + [36566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2177), 4, + ACTIONS(2116), 6, + anon_sym_COLON, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2175), 12, + ACTIONS(2114), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_PLUS, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [37097] = 3, + [36592] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2077), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2075), 12, + ACTIONS(2120), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2010), 15, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PLUS, - anon_sym_GT, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [37122] = 7, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2065), 1, - anon_sym_LT2, - STATE(975), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, + anon_sym_EQ_GT, + [36618] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2017), 3, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2015), 9, + ACTIONS(2100), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2016), 15, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - [37155] = 2, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_EQ_GT, + [36644] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1006), 15, + ACTIONS(1095), 3, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_POUND, + ACTIONS(1097), 14, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86273,39 +88318,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, - anon_sym_POUND, anon_sym_asm, - [37177] = 2, + sym_identifier, + [36670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 15, + ACTIONS(2152), 6, + anon_sym_COLON, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2150), 11, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [37199] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [36696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 15, + ACTIONS(1317), 3, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_POUND, + ACTIONS(1319), 14, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86313,79 +88364,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, - anon_sym_POUND, anon_sym_asm, - [37221] = 2, + sym_identifier, + [36722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 15, + ACTIONS(2162), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2004), 15, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [37243] = 2, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_EQ_GT, + [36748] = 8, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2960), 1, + anon_sym_COLON_COLON, + STATE(987), 1, + sym_type_arguments, + STATE(1204), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 15, + ACTIONS(1986), 4, + anon_sym_COLON, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1984), 8, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [37265] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + [36784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1506), 15, + ACTIONS(2108), 6, + anon_sym_COLON, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2106), 11, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [37287] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [36810] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 15, + ACTIONS(867), 3, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_POUND, + ACTIONS(869), 14, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86393,39 +88461,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, - anon_sym_POUND, anon_sym_asm, - [37309] = 2, + sym_identifier, + [36836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 15, + ACTIONS(2104), 6, + anon_sym_COLON, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2102), 11, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [37331] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [36862] = 8, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2960), 1, + anon_sym_COLON_COLON, + STATE(987), 1, + sym_type_arguments, + STATE(1204), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1978), 4, + anon_sym_COLON, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1974), 8, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + [36898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2088), 6, + anon_sym_COLON, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2086), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [36924] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 15, + ACTIONS(1367), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86433,19 +88556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37353] = 2, + [36947] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(894), 15, + ACTIONS(1575), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86453,19 +88577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37375] = 2, + [36970] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 15, + ACTIONS(1387), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86473,19 +88598,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37397] = 2, + [36993] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 15, + ACTIONS(1451), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86493,19 +88619,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37419] = 2, + [37016] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 15, + ACTIONS(1567), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86513,19 +88640,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37441] = 2, + [37039] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1086), 15, + ACTIONS(1571), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86533,19 +88661,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37463] = 2, + [37062] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1094), 15, + ACTIONS(1059), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86553,40 +88682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37485] = 3, - ACTIONS(1875), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1877), 14, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [37509] = 2, + [37085] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 15, + ACTIONS(1051), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86594,19 +88703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37531] = 2, + [37108] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1258), 15, + ACTIONS(1035), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86614,19 +88724,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37553] = 2, + [37131] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 15, + ACTIONS(1055), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86634,19 +88745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37575] = 2, + [37154] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 15, + ACTIONS(1435), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86654,19 +88766,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37597] = 2, + [37177] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1442), 15, + ACTIONS(1515), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86674,61 +88787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37619] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2243), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2241), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [37643] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2231), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2229), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [37667] = 2, + [37200] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 15, + ACTIONS(1329), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86736,40 +88808,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37689] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2307), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2305), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [37713] = 2, + [37223] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 15, + ACTIONS(1019), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86777,19 +88829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37735] = 2, + [37246] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 15, + ACTIONS(1333), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86797,19 +88850,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37757] = 3, + [37269] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2185), 4, + ACTIONS(2112), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2183), 11, + ACTIONS(2110), 12, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -86818,19 +88872,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [37781] = 2, + [37294] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 15, + ACTIONS(1011), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86838,40 +88893,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37803] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2303), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2301), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [37827] = 2, + [37317] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 15, + ACTIONS(1579), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86879,19 +88914,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37849] = 2, + [37340] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 15, + ACTIONS(1379), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86899,19 +88935,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37871] = 2, + [37363] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 15, + ACTIONS(1015), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86919,42 +88956,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37893] = 5, - ACTIONS(2988), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2986), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2990), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 10, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_EQ_GT, - [37921] = 2, + [37386] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 15, + ACTIONS(1023), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86962,19 +88977,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37943] = 2, + [37409] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 15, + ACTIONS(1325), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -86982,19 +88998,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37965] = 2, + [37432] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 15, + ACTIONS(1321), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87002,19 +89019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [37987] = 2, + [37455] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(882), 15, + ACTIONS(1391), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87022,19 +89040,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38009] = 2, + [37478] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(958), 15, + ACTIONS(1527), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87042,40 +89061,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38031] = 3, + [37501] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2295), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2293), 11, + ACTIONS(1063), 16, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [38055] = 2, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_asm, + [37524] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(962), 15, + ACTIONS(915), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87083,19 +89103,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38077] = 2, + [37547] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(990), 15, + ACTIONS(1447), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87103,40 +89124,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38099] = 3, + [37570] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2291), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2289), 11, + ACTIONS(1301), 16, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [38123] = 2, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_asm, + [37593] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1030), 15, + ACTIONS(1297), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87144,19 +89166,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38145] = 2, + [37616] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1062), 15, + ACTIONS(1411), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87164,19 +89187,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38167] = 2, + [37639] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1078), 15, + ACTIONS(1047), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87184,19 +89208,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38189] = 2, + [37662] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 15, + ACTIONS(1277), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87204,19 +89229,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38211] = 2, + [37685] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 15, + ACTIONS(1523), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87224,19 +89250,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38233] = 3, + [37708] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2189), 4, + ACTIONS(2084), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2187), 11, + ACTIONS(2082), 12, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -87245,40 +89272,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [38257] = 3, + [37733] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2191), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(418), 11, + ACTIONS(1201), 16, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [38281] = 2, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_asm, + [37756] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1046), 15, + ACTIONS(1555), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87286,19 +89314,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38303] = 2, + [37779] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1026), 15, + ACTIONS(959), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87306,19 +89335,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38325] = 2, + [37802] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1018), 15, + ACTIONS(1289), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87326,19 +89356,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38347] = 2, + [37825] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1010), 15, + ACTIONS(1407), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87346,19 +89377,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38369] = 2, + [37848] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 15, + ACTIONS(1519), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87366,22 +89398,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38391] = 3, + [37871] = 4, + ACTIONS(2962), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2013), 4, + ACTIONS(1994), 5, + anon_sym_COLON, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2011), 11, + ACTIONS(1992), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87390,16 +89425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [38415] = 2, + [37898] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(994), 15, + ACTIONS(1511), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87407,19 +89442,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38437] = 2, + [37921] = 7, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + STATE(989), 1, + sym_type_arguments, + STATE(1203), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1994), 3, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1992), 9, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + [37954] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1206), 15, + ACTIONS(1007), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87427,19 +89489,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38459] = 2, + [37977] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 15, + ACTIONS(1281), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87447,19 +89510,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38481] = 2, + [38000] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1254), 15, + ACTIONS(1499), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87467,19 +89531,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38503] = 2, + [38023] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1034), 15, + ACTIONS(1399), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87487,19 +89552,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38525] = 2, + [38046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 15, + ACTIONS(2044), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2042), 12, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [38071] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1027), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87507,19 +89595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38547] = 2, + [38094] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1194), 15, + ACTIONS(1491), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87527,19 +89616,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38569] = 2, + [38117] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1198), 15, + ACTIONS(1193), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87547,40 +89637,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38591] = 3, + [38140] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2017), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2015), 11, + ACTIONS(1273), 16, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [38615] = 2, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_asm, + [38163] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 15, + ACTIONS(1181), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87588,19 +89679,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38637] = 2, + [38186] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1270), 15, + ACTIONS(1043), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87608,19 +89700,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38659] = 2, + [38209] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 15, + ACTIONS(1091), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87628,19 +89721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38681] = 2, + [38232] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 15, + ACTIONS(1133), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87648,19 +89742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38703] = 2, + [38255] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 15, + ACTIONS(1487), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87668,19 +89763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38725] = 2, + [38278] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1450), 15, + ACTIONS(947), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87688,40 +89784,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38747] = 3, - ACTIONS(1871), 1, - anon_sym_EQ, + [38301] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1873), 14, + ACTIONS(1221), 16, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [38771] = 2, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_asm, + [38324] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1542), 15, + ACTIONS(1459), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87729,19 +89826,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38793] = 2, + [38347] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(942), 15, + ACTIONS(1583), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87749,19 +89847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38815] = 2, + [38370] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(938), 15, + ACTIONS(1479), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87769,19 +89868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38837] = 2, + [38393] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 15, + ACTIONS(1177), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87789,19 +89889,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38859] = 2, + [38416] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1098), 15, + ACTIONS(1475), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87809,19 +89910,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38881] = 2, + [38439] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(906), 15, + ACTIONS(919), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87829,19 +89931,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38903] = 2, + [38462] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 15, + ACTIONS(1495), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87849,19 +89952,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38925] = 2, + [38485] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 15, + ACTIONS(927), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87869,19 +89973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38947] = 2, + [38508] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1166), 15, + ACTIONS(1587), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87889,19 +89994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38969] = 2, + [38531] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1466), 15, + ACTIONS(971), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87909,19 +90015,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [38991] = 2, + [38554] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1474), 15, + ACTIONS(1075), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87929,19 +90036,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39013] = 2, + [38577] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1490), 15, + ACTIONS(1563), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87949,40 +90057,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39035] = 3, + [38600] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2389), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2387), 11, + ACTIONS(1071), 16, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [39059] = 2, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_asm, + [38623] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 15, + ACTIONS(1423), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -87990,19 +90099,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39081] = 2, + [38646] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 15, + ACTIONS(1173), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88010,40 +90120,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39103] = 3, - ACTIONS(1867), 1, - anon_sym_EQ, + [38669] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1869), 14, + ACTIONS(1415), 16, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [39127] = 2, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_asm, + [38692] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 15, + ACTIONS(1403), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88051,19 +90162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39149] = 2, + [38715] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1182), 15, + ACTIONS(1395), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88071,19 +90183,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39171] = 2, + [38738] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1058), 15, + ACTIONS(511), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88091,40 +90204,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39193] = 3, + [38761] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2353), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2351), 11, + ACTIONS(979), 16, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [39217] = 2, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_asm, + [38784] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1351), 16, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_asm, + [38807] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1038), 15, + ACTIONS(1383), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88132,19 +90267,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39239] = 2, + [38830] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1002), 15, + ACTIONS(1149), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88152,19 +90288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39261] = 2, + [38853] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(954), 15, + ACTIONS(903), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88172,19 +90309,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39283] = 2, + [38876] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(502), 15, + ACTIONS(1363), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88192,43 +90330,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39305] = 3, + [38899] = 4, + ACTIONS(2962), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2215), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2213), 11, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(1998), 5, anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [39329] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2211), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2209), 11, + ACTIONS(1996), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -88237,16 +90357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [39353] = 2, + [38926] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(498), 15, + ACTIONS(975), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88254,19 +90374,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39375] = 2, + [38949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(934), 15, + ACTIONS(1551), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88274,19 +90395,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39397] = 2, + [38972] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(930), 15, + ACTIONS(1269), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88294,19 +90416,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39419] = 2, + [38995] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(914), 15, + ACTIONS(871), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88314,39 +90437,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39441] = 2, + [39018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1102), 15, + ACTIONS(2054), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2052), 11, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [39463] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [39043] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(910), 15, + ACTIONS(939), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88354,19 +90480,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39485] = 2, + [39066] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(890), 15, + ACTIONS(1161), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88374,19 +90501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39507] = 2, + [39089] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(898), 15, + ACTIONS(1153), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88394,19 +90522,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39529] = 2, + [39112] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(946), 15, + ACTIONS(1145), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88414,19 +90543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39551] = 2, + [39135] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(534), 15, + ACTIONS(1087), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88434,19 +90564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39573] = 2, + [39158] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(982), 15, + ACTIONS(967), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88454,19 +90585,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39595] = 2, + [39181] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1014), 15, + ACTIONS(1039), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88474,19 +90606,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39617] = 2, + [39204] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1022), 15, + ACTIONS(1031), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88494,40 +90627,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39639] = 3, + [39227] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2369), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2367), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [39663] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1114), 15, + ACTIONS(1355), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88535,40 +90648,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39685] = 3, + [39250] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2373), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2371), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [39709] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1090), 15, + ACTIONS(1345), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88576,19 +90669,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39731] = 2, + [39273] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1082), 15, + ACTIONS(911), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88596,19 +90690,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39753] = 2, + [39296] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1074), 15, + ACTIONS(899), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88616,19 +90711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39775] = 2, + [39319] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1070), 15, + ACTIONS(1559), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88636,19 +90732,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39797] = 2, + [39342] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 15, + ACTIONS(907), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88656,19 +90753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39819] = 2, + [39365] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1066), 15, + ACTIONS(1309), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88676,19 +90774,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39841] = 2, + [39388] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 15, + ACTIONS(895), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88696,19 +90795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39863] = 2, + [39411] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1050), 15, + ACTIONS(1141), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88716,19 +90816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39885] = 2, + [39434] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1042), 15, + ACTIONS(1359), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88736,19 +90837,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39907] = 2, + [39457] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(986), 15, + ACTIONS(1431), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88756,19 +90858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39929] = 2, + [39480] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(974), 15, + ACTIONS(1427), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88776,19 +90879,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39951] = 2, + [39503] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(970), 15, + ACTIONS(935), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88796,19 +90900,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39973] = 2, + [39526] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1134), 15, + ACTIONS(1313), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88816,39 +90921,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [39995] = 2, + [39549] = 4, + ACTIONS(2964), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(950), 15, + ACTIONS(1998), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1996), 10, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [40017] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [39576] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(918), 15, + ACTIONS(1443), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88856,19 +90965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40039] = 2, + [39599] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1446), 15, + ACTIONS(1067), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88876,19 +90986,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40061] = 2, + [39622] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 15, + ACTIONS(1503), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88896,59 +91007,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40083] = 2, + [39645] = 4, + ACTIONS(2966), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 15, + ACTIONS(1998), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1996), 10, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [40105] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [39672] = 4, + ACTIONS(2968), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 15, + ACTIONS(1998), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1996), 10, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [40127] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [39699] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 15, + ACTIONS(1483), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88956,19 +91074,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40149] = 2, + [39722] = 7, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + STATE(989), 1, + sym_type_arguments, + STATE(1203), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1142), 15, + ACTIONS(1998), 3, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1996), 9, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + [39755] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1419), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88976,19 +91121,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40171] = 2, + [39778] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1202), 15, + ACTIONS(1265), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -88996,19 +91142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40193] = 2, + [39801] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1190), 15, + ACTIONS(991), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89016,19 +91163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40215] = 2, + [39824] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 15, + ACTIONS(1507), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89036,19 +91184,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40237] = 2, + [39847] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 15, + ACTIONS(2126), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2124), 12, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [39872] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1261), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89056,19 +91227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40259] = 2, + [39895] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1054), 15, + ACTIONS(1137), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89076,19 +91248,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40281] = 2, + [39918] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 15, + ACTIONS(1253), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89096,19 +91269,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40303] = 2, + [39941] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 15, + ACTIONS(1245), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89116,19 +91290,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40325] = 2, + [39964] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 15, + ACTIONS(1547), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89136,19 +91311,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40347] = 2, + [39987] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 15, + ACTIONS(1129), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89156,19 +91332,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40369] = 2, + [40010] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 15, + ACTIONS(1535), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89176,19 +91353,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40391] = 2, + [40033] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 15, + ACTIONS(1531), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89196,19 +91374,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40413] = 2, + [40056] = 6, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(2970), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1230), 15, + ACTIONS(2946), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2944), 10, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_EQ_GT, + [40087] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1241), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89216,19 +91420,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40435] = 2, + [40110] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 15, + ACTIONS(1455), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89236,19 +91441,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40457] = 2, + [40133] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 15, + ACTIONS(503), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89256,19 +91462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40479] = 2, + [40156] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 15, + ACTIONS(931), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89276,19 +91483,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40501] = 2, + [40179] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 15, + ACTIONS(2132), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2130), 12, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [40204] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1305), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89296,19 +91526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40523] = 2, + [40227] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1454), 15, + ACTIONS(1371), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89316,19 +91547,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40545] = 2, + [40250] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 15, + ACTIONS(951), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89336,19 +91568,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40567] = 2, + [40273] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2038), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2036), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [40298] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1326), 15, + ACTIONS(1003), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89356,19 +91611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40589] = 2, + [40321] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 15, + ACTIONS(1341), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89376,19 +91632,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40611] = 2, + [40344] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1510), 15, + ACTIONS(1337), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89396,19 +91653,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40633] = 2, + [40367] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 15, + ACTIONS(943), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89416,19 +91674,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40655] = 2, + [40390] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1514), 15, + ACTIONS(1237), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89436,19 +91695,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40677] = 2, + [40413] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1518), 15, + ACTIONS(955), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89456,19 +91716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40699] = 2, + [40436] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1526), 15, + ACTIONS(1213), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89476,19 +91737,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40721] = 2, + [40459] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1530), 15, + ACTIONS(1471), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89496,19 +91758,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40743] = 2, + [40482] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1538), 15, + ACTIONS(1233), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89516,19 +91779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40765] = 2, + [40505] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 15, + ACTIONS(1121), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89536,19 +91800,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40787] = 2, + [40528] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 15, + ACTIONS(963), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89556,19 +91821,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40809] = 2, + [40551] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 15, + ACTIONS(1229), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89576,19 +91842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40831] = 2, + [40574] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 15, + ACTIONS(1225), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89596,19 +91863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40853] = 2, + [40597] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1582), 15, + ACTIONS(1217), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89616,19 +91884,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40875] = 2, + [40620] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 15, + ACTIONS(1249), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89636,19 +91905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40897] = 2, + [40643] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1570), 15, + ACTIONS(1079), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89656,19 +91926,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40919] = 2, + [40666] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 15, + ACTIONS(1165), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89676,19 +91947,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40941] = 2, + [40689] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 15, + ACTIONS(1185), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89696,19 +91968,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40963] = 2, + [40712] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 15, + ACTIONS(863), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89716,19 +91989,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [40985] = 2, + [40735] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 15, + ACTIONS(1285), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89736,19 +92010,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41007] = 2, + [40758] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 15, + ACTIONS(1467), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89756,19 +92031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41029] = 2, + [40781] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 15, + ACTIONS(1205), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89776,19 +92052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41051] = 2, + [40804] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1534), 15, + ACTIONS(1209), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89796,19 +92073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41073] = 2, + [40827] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1522), 15, + ACTIONS(1293), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89816,19 +92094,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41095] = 2, + [40850] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1502), 15, + ACTIONS(1375), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89836,19 +92115,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41117] = 2, + [40873] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1498), 15, + ACTIONS(1197), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89856,19 +92136,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41139] = 2, + [40896] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 15, + ACTIONS(1463), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89876,19 +92157,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41161] = 2, + [40919] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(886), 15, + ACTIONS(1125), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89896,19 +92178,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41183] = 2, + [40942] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1494), 15, + ACTIONS(1189), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89916,19 +92199,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41205] = 2, + [40965] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 15, + ACTIONS(983), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89936,19 +92220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41227] = 2, + [40988] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1482), 15, + ACTIONS(1117), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89956,19 +92241,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41249] = 2, + [41011] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 15, + ACTIONS(1157), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89976,19 +92262,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41271] = 2, + [41034] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 15, + ACTIONS(1113), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -89996,19 +92283,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41293] = 2, + [41057] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 15, + ACTIONS(1105), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -90016,19 +92304,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41315] = 2, + [41080] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 15, + ACTIONS(999), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -90036,19 +92325,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41337] = 2, + [41103] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 15, + ACTIONS(519), 16, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -90056,105 +92346,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, anon_sym_POUND, anon_sym_asm, - [41359] = 2, + [41126] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2300), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2298), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41150] = 3, + ACTIONS(1846), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1848), 14, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + anon_sym_EQ_GT, + [41174] = 5, + ACTIONS(2976), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2974), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2978), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2972), 10, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_EQ_GT, + [41202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2204), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2202), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1998), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1996), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41250] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2364), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2362), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2344), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2342), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41298] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2340), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2338), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41322] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2324), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2322), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41346] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2270), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2268), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2192), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2190), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41394] = 3, + ACTIONS(1850), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1852), 14, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + anon_sym_EQ_GT, + [41418] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2386), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2384), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2276), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(429), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1470), 15, + ACTIONS(2382), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2380), 11, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [41381] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41490] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1462), 15, + ACTIONS(2222), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2220), 11, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [41403] = 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1438), 15, + ACTIONS(2308), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2306), 11, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [41425] = 12, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2956), 1, - anon_sym_PIPE, - ACTIONS(2958), 1, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(2962), 1, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(2968), 1, - anon_sym_AT, - ACTIONS(2992), 1, - anon_sym_LPAREN, - ACTIONS(2994), 1, - anon_sym_COLON_COLON, - STATE(983), 1, - sym_type_arguments, - STATE(1208), 1, - sym_parameters, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41538] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1989), 3, + ACTIONS(2254), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2252), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PLUS, - [41466] = 3, - ACTIONS(2998), 1, + anon_sym_GT, + anon_sym_PIPE, + [41562] = 3, + ACTIONS(1834), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 13, + ACTIONS(1836), 14, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90162,22 +92744,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [41489] = 4, - ACTIONS(2958), 1, + [41586] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2332), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2330), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41610] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1994), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1992), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41634] = 4, + ACTIONS(2946), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2956), 11, + ACTIONS(2944), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90189,72 +92814,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41514] = 13, - ACTIONS(1989), 1, - anon_sym_PLUS, - ACTIONS(2065), 1, + [41659] = 12, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(2956), 1, + ACTIONS(2944), 1, anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(2946), 1, anon_sym_COLON, - ACTIONS(2962), 1, + ACTIONS(2950), 1, anon_sym_LBRACE, - ACTIONS(2968), 1, + ACTIONS(2956), 1, anon_sym_AT, - ACTIONS(3000), 1, + ACTIONS(2980), 1, anon_sym_LPAREN, - ACTIONS(3005), 1, + ACTIONS(2982), 1, anon_sym_COLON_COLON, - STATE(983), 1, + STATE(987), 1, sym_type_arguments, - STATE(1208), 1, + STATE(1204), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3002), 2, + ACTIONS(1984), 3, anon_sym_RPAREN, anon_sym_COMMA, - [41557] = 12, - ACTIONS(2065), 1, + anon_sym_PLUS, + [41700] = 12, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(2962), 1, + ACTIONS(2950), 1, anon_sym_LBRACE, - ACTIONS(2968), 1, + ACTIONS(2956), 1, anon_sym_AT, - ACTIONS(3002), 1, + ACTIONS(2984), 1, anon_sym_RBRACK, - ACTIONS(3007), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(3009), 1, + ACTIONS(2989), 1, anon_sym_COLON_COLON, - STATE(983), 1, + STATE(987), 1, sym_type_arguments, - STATE(1208), 1, + STATE(1204), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1989), 2, + ACTIONS(1984), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(2956), 2, + ACTIONS(2944), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2966), 2, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [41598] = 3, - ACTIONS(3013), 1, + [41741] = 13, + ACTIONS(1984), 1, + anon_sym_PLUS, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2944), 1, + anon_sym_PIPE, + ACTIONS(2946), 1, + anon_sym_COLON, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(2956), 1, + anon_sym_AT, + ACTIONS(2991), 1, + anon_sym_LPAREN, + ACTIONS(2993), 1, + anon_sym_COLON_COLON, + STATE(987), 1, + sym_type_arguments, + STATE(1204), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2984), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [41784] = 3, + ACTIONS(2997), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 13, + ACTIONS(2995), 13, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90268,36 +92922,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [41621] = 4, - ACTIONS(3019), 1, - anon_sym_COLON_COLON, + [41807] = 3, + ACTIONS(3001), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3017), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3015), 10, + ACTIONS(2999), 13, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [41645] = 4, - ACTIONS(3021), 1, + [41830] = 4, + ACTIONS(3007), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3017), 2, + ACTIONS(3005), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3015), 10, + ACTIONS(3003), 10, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_RPAREN, @@ -90308,16 +92962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41669] = 4, - ACTIONS(3023), 1, + [41854] = 4, + ACTIONS(3007), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3017), 2, + ACTIONS(3011), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3015), 10, + ACTIONS(3009), 10, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_RPAREN, @@ -90328,17 +92982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41693] = 4, - ACTIONS(3025), 1, + [41878] = 4, + ACTIONS(3013), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2097), 3, + ACTIONS(2048), 3, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2095), 9, + ACTIONS(2046), 9, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90348,37 +93002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, - [41717] = 4, - ACTIONS(3031), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3029), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3027), 10, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_EQ_GT, - [41741] = 4, - ACTIONS(3033), 1, + [41902] = 4, + ACTIONS(3015), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2111), 3, + ACTIONS(2078), 3, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2109), 9, + ACTIONS(2076), 9, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90388,46 +93022,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, - [41765] = 13, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2972), 1, - anon_sym_COLON_COLON, - ACTIONS(3035), 1, - anon_sym_COLON, - ACTIONS(3037), 1, - anon_sym_COMMA, - ACTIONS(3039), 1, - anon_sym_EQ, - ACTIONS(3041), 1, - anon_sym_GT, - STATE(983), 1, - sym_type_arguments, - STATE(1340), 1, - sym_parameters, - STATE(1621), 1, - sym_trait_bounds, - STATE(1622), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1989), 2, - anon_sym_as, - anon_sym_PLUS, - [41807] = 4, - ACTIONS(3043), 1, + [41926] = 4, + ACTIONS(3017), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2103), 3, + ACTIONS(2062), 3, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2101), 9, + ACTIONS(2060), 9, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90437,17 +93042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, - [41831] = 4, - ACTIONS(3045), 1, + [41950] = 4, + ACTIONS(3019), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2117), 3, + ACTIONS(2068), 3, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2115), 9, + ACTIONS(2066), 9, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90457,16 +93062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, - [41855] = 4, - ACTIONS(3019), 1, - anon_sym_COLON_COLON, + [41974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3049), 2, + ACTIONS(2058), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3047), 10, + ACTIONS(2022), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_RPAREN, @@ -90474,19 +93077,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41879] = 4, + [41996] = 13, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2960), 1, + anon_sym_COLON_COLON, ACTIONS(3021), 1, + anon_sym_COLON, + ACTIONS(3023), 1, + anon_sym_COMMA, + ACTIONS(3025), 1, + anon_sym_EQ, + ACTIONS(3027), 1, + anon_sym_GT, + STATE(987), 1, + sym_type_arguments, + STATE(1356), 1, + sym_parameters, + STATE(1654), 1, + sym_trait_bounds, + STATE(1658), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1984), 2, + anon_sym_as, + anon_sym_PLUS, + [42038] = 4, + ACTIONS(3029), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3049), 2, + ACTIONS(3005), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3047), 10, + ACTIONS(3003), 10, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_RPAREN, @@ -90497,16 +93130,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41903] = 4, - ACTIONS(3023), 1, + [42062] = 4, + ACTIONS(3029), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3049), 2, + ACTIONS(3011), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3047), 10, + ACTIONS(3009), 10, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_RPAREN, @@ -90517,14 +93150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41927] = 3, + [42086] = 4, + ACTIONS(3035), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2129), 2, + ACTIONS(3033), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2029), 11, + ACTIONS(3031), 10, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_RPAREN, @@ -90532,20 +93167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41949] = 4, - ACTIONS(3031), 1, + [42110] = 4, + ACTIONS(3037), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3053), 2, + ACTIONS(3005), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3051), 10, + ACTIONS(3003), 10, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_RPAREN, @@ -90556,16 +93190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41973] = 3, - ACTIONS(3057), 1, - anon_sym_EQ, + [42134] = 4, + ACTIONS(3035), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 11, + ACTIONS(3041), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3039), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_if, @@ -90574,16 +93210,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41994] = 3, - ACTIONS(3061), 1, - anon_sym_EQ, + [42158] = 4, + ACTIONS(3037), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3059), 11, + ACTIONS(3011), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3009), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_if, @@ -90592,13 +93230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42015] = 3, - ACTIONS(3065), 1, + [42182] = 3, + ACTIONS(3045), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 11, + ACTIONS(3043), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90610,13 +93248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42036] = 3, - ACTIONS(3069), 1, + [42203] = 3, + ACTIONS(3049), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3067), 11, + ACTIONS(3047), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90628,13 +93266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42057] = 3, - ACTIONS(3073), 1, + [42224] = 3, + ACTIONS(3053), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 11, + ACTIONS(3051), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90646,13 +93284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42078] = 3, - ACTIONS(3049), 1, + [42245] = 3, + ACTIONS(3057), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 11, + ACTIONS(3055), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90664,13 +93302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42099] = 3, - ACTIONS(3077), 1, + [42266] = 3, + ACTIONS(3061), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 11, + ACTIONS(3059), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90682,13 +93320,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42120] = 3, - ACTIONS(3081), 1, + [42287] = 3, + ACTIONS(3065), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3079), 11, + ACTIONS(3063), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90700,13 +93338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42141] = 3, - ACTIONS(3085), 1, + [42308] = 3, + ACTIONS(3069), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3083), 11, + ACTIONS(3067), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90718,13 +93356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42162] = 3, - ACTIONS(3089), 1, + [42329] = 3, + ACTIONS(3073), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3087), 11, + ACTIONS(3071), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90736,13 +93374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42183] = 3, - ACTIONS(3093), 1, + [42350] = 3, + ACTIONS(3077), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3091), 11, + ACTIONS(3075), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90754,13 +93392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42204] = 3, - ACTIONS(3097), 1, + [42371] = 3, + ACTIONS(3005), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3095), 11, + ACTIONS(3003), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90772,13 +93410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42225] = 3, - ACTIONS(3101), 1, + [42392] = 3, + ACTIONS(3081), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 11, + ACTIONS(3079), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90790,13 +93428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42246] = 3, - ACTIONS(3105), 1, + [42413] = 3, + ACTIONS(3085), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3103), 11, + ACTIONS(3083), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90808,13 +93446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42267] = 3, - ACTIONS(3109), 1, + [42434] = 3, + ACTIONS(3089), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3107), 11, + ACTIONS(3087), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90826,13 +93464,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42288] = 3, - ACTIONS(3113), 1, + [42455] = 3, + ACTIONS(2946), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3111), 11, + ACTIONS(2944), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90844,13 +93482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42309] = 3, - ACTIONS(3117), 1, + [42476] = 3, + ACTIONS(3093), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 11, + ACTIONS(3091), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90862,13 +93500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42330] = 3, - ACTIONS(3121), 1, + [42497] = 3, + ACTIONS(3097), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3119), 11, + ACTIONS(3095), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90880,13 +93518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42351] = 3, - ACTIONS(3125), 1, + [42518] = 3, + ACTIONS(3101), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3123), 11, + ACTIONS(3099), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90898,13 +93536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42372] = 3, - ACTIONS(3017), 1, + [42539] = 3, + ACTIONS(3105), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 11, + ACTIONS(3103), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90916,13 +93554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42393] = 3, - ACTIONS(3129), 1, + [42560] = 3, + ACTIONS(3109), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3127), 11, + ACTIONS(3107), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90934,13 +93572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42414] = 3, - ACTIONS(508), 1, + [42581] = 3, + ACTIONS(3011), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(506), 11, + ACTIONS(3009), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90952,13 +93590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42435] = 3, - ACTIONS(3133), 1, + [42602] = 3, + ACTIONS(3113), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3131), 11, + ACTIONS(3111), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90970,13 +93608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42456] = 3, - ACTIONS(3137), 1, + [42623] = 3, + ACTIONS(3117), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 11, + ACTIONS(3115), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -90988,13 +93626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42477] = 3, - ACTIONS(2958), 1, + [42644] = 3, + ACTIONS(3121), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 11, + ACTIONS(3119), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -91006,13 +93644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42498] = 3, - ACTIONS(3141), 1, + [42665] = 3, + ACTIONS(3125), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3139), 11, + ACTIONS(3123), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -91024,13 +93662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42519] = 3, - ACTIONS(3145), 1, + [42686] = 3, + ACTIONS(3129), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3143), 11, + ACTIONS(3127), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -91042,13 +93680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42540] = 3, - ACTIONS(3149), 1, + [42707] = 3, + ACTIONS(3133), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 11, + ACTIONS(3131), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -91060,13 +93698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42561] = 3, - ACTIONS(3153), 1, + [42728] = 3, + ACTIONS(3137), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3151), 11, + ACTIONS(3135), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -91078,13 +93716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42582] = 3, - ACTIONS(3157), 1, + [42749] = 3, + ACTIONS(3141), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 11, + ACTIONS(3139), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -91096,13 +93734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42603] = 3, - ACTIONS(3161), 1, + [42770] = 3, + ACTIONS(3145), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 11, + ACTIONS(3143), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -91114,13 +93752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42624] = 3, - ACTIONS(3165), 1, + [42791] = 3, + ACTIONS(3149), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3163), 11, + ACTIONS(3147), 11, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, @@ -91132,5365 +93770,5167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42645] = 5, - ACTIONS(2143), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_LPAREN, + [42812] = 3, + ACTIONS(517), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2047), 4, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - ACTIONS(2043), 5, + ACTIONS(515), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_if, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_LT2, - [42669] = 5, - ACTIONS(2129), 1, - anon_sym_COLON, - ACTIONS(2489), 1, - anon_sym_LPAREN, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_EQ_GT, + [42833] = 3, + ACTIONS(3153), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2029), 4, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - ACTIONS(2025), 5, + ACTIONS(3151), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_if, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_LT2, - [42693] = 5, - ACTIONS(2173), 1, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_EQ_GT, + [42854] = 5, + ACTIONS(2100), 1, anon_sym_COLON, - ACTIONS(2475), 1, + ACTIONS(2468), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2053), 4, + ACTIONS(2016), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - ACTIONS(2049), 5, + ACTIONS(2012), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PLUS, anon_sym_LT2, - [42717] = 4, + [42878] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2495), 2, + ACTIONS(2504), 2, anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2019), 4, + ACTIONS(2000), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2023), 5, + ACTIONS(2004), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42739] = 5, - ACTIONS(2093), 1, + [42900] = 5, + ACTIONS(2058), 1, anon_sym_COLON, - ACTIONS(2495), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2023), 4, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - ACTIONS(2019), 5, - anon_sym_RPAREN, + ACTIONS(2018), 3, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_LT2, - [42763] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2475), 2, - anon_sym_RBRACK, + ACTIONS(2474), 3, anon_sym_LPAREN, - ACTIONS(2049), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2053), 5, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2022), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42785] = 4, + [42924] = 5, + ACTIONS(2100), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2489), 2, - anon_sym_RBRACK, - anon_sym_LPAREN, - ACTIONS(2025), 4, - anon_sym_SEMI, + ACTIONS(2012), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2029), 5, + ACTIONS(2468), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2016), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42807] = 4, + [42948] = 12, + ACTIONS(2813), 1, + anon_sym_default, + ACTIONS(3155), 1, + anon_sym_const, + ACTIONS(3157), 1, + anon_sym_mod, + ACTIONS(3159), 1, + anon_sym_enum, + ACTIONS(3161), 1, + anon_sym_fn, + ACTIONS(3163), 1, + anon_sym_struct, + ACTIONS(3165), 1, + anon_sym_trait, + ACTIONS(3167), 1, + anon_sym_type, + ACTIONS(3169), 1, + anon_sym_use, + STATE(1496), 1, + aux_sym_function_modifiers_repeat1, + STATE(2193), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2481), 2, - anon_sym_RBRACK, + [42986] = 5, + ACTIONS(2162), 1, + anon_sym_COLON, + ACTIONS(2504), 1, anon_sym_LPAREN, - ACTIONS(2043), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2047), 5, - anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2004), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42829] = 5, - ACTIONS(2093), 1, + ACTIONS(2000), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_LT2, + [43010] = 3, + ACTIONS(3171), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2904), 10, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + sym_identifier, + [43030] = 5, + ACTIONS(2120), 1, anon_sym_COLON, + ACTIONS(2480), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2019), 3, + ACTIONS(2010), 4, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + ACTIONS(2006), 5, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2495), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2023), 4, + [43054] = 5, + ACTIONS(2058), 1, + anon_sym_COLON, + ACTIONS(2474), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2022), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42853] = 7, - ACTIONS(2058), 1, + ACTIONS(2018), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_LT2, + [43078] = 7, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(2972), 1, + ACTIONS(2960), 1, anon_sym_COLON_COLON, - STATE(983), 1, + STATE(987), 1, sym_type_arguments, - STATE(1340), 1, + STATE(1356), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2001), 6, + ACTIONS(1984), 6, anon_sym_as, anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [42881] = 5, - ACTIONS(2129), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2025), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2489), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2029), 4, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [42905] = 5, - ACTIONS(2143), 1, + [43106] = 5, + ACTIONS(2120), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2043), 3, + ACTIONS(2006), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2481), 3, + ACTIONS(2480), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2047), 4, + ACTIONS(2010), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42929] = 7, - ACTIONS(2058), 1, + [43130] = 7, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(2972), 1, + ACTIONS(2960), 1, anon_sym_COLON_COLON, - STATE(983), 1, + STATE(987), 1, sym_type_arguments, - STATE(1340), 1, + STATE(1356), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1989), 6, + ACTIONS(1974), 6, anon_sym_as, anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [42957] = 5, - ACTIONS(2173), 1, + [43158] = 5, + ACTIONS(2162), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2049), 3, + ACTIONS(2000), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2475), 3, + ACTIONS(2504), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2053), 4, + ACTIONS(2004), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42981] = 8, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2972), 1, - anon_sym_COLON_COLON, - ACTIONS(3167), 1, - anon_sym_for, - STATE(983), 1, - sym_type_arguments, - STATE(1208), 1, - sym_parameters, + [43182] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1989), 4, + ACTIONS(2474), 2, + anon_sym_RBRACK, + anon_sym_LPAREN, + ACTIONS(2018), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, anon_sym_PLUS, - [43010] = 3, - ACTIONS(3169), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2912), 9, - anon_sym_const, + anon_sym_LT2, + ACTIONS(2022), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [43204] = 12, + ACTIONS(2813), 1, anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - sym_identifier, - [43029] = 8, - ACTIONS(3171), 1, - sym_identifier, ACTIONS(3173), 1, - anon_sym_RBRACE, + anon_sym_const, ACTIONS(3175), 1, - anon_sym_POUND, + anon_sym_mod, ACTIONS(3177), 1, - anon_sym_COMMA, + anon_sym_enum, ACTIONS(3179), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1536), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1807), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [43058] = 11, - ACTIONS(2830), 1, - anon_sym_default, + anon_sym_fn, ACTIONS(3181), 1, - anon_sym_const, + anon_sym_struct, ACTIONS(3183), 1, - anon_sym_dep, + anon_sym_trait, ACTIONS(3185), 1, - anon_sym_enum, + anon_sym_type, ACTIONS(3187), 1, - anon_sym_fn, - ACTIONS(3189), 1, - anon_sym_struct, - ACTIONS(3191), 1, - anon_sym_trait, - ACTIONS(3193), 1, anon_sym_use, - STATE(1516), 1, + STATE(1496), 1, aux_sym_function_modifiers_repeat1, - STATE(2180), 1, + STATE(2062), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43093] = 6, - ACTIONS(2058), 1, + [43242] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2480), 2, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2006), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_LT2, - STATE(975), 1, - sym_type_arguments, - STATE(1335), 1, - sym_parameters, + ACTIONS(2010), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [43264] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2015), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(2468), 2, + anon_sym_RBRACK, + anon_sym_LPAREN, + ACTIONS(2012), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, + anon_sym_LT2, + ACTIONS(2016), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [43118] = 8, - ACTIONS(2058), 1, + [43286] = 6, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(2972), 1, - anon_sym_COLON_COLON, - ACTIONS(3195), 1, - anon_sym_for, - STATE(983), 1, + STATE(989), 1, sym_type_arguments, - STATE(1208), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1989), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(1996), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PLUS, - [43147] = 6, - ACTIONS(2058), 1, + anon_sym_GT, + anon_sym_PIPE, + [43311] = 6, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2144), 1, anon_sym_LT2, - STATE(975), 1, + STATE(989), 1, sym_type_arguments, - STATE(1335), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 6, + ACTIONS(1992), 6, anon_sym_as, anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [43172] = 8, - ACTIONS(2058), 1, + [43336] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2892), 10, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + sym_identifier, + [43353] = 8, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(2972), 1, + ACTIONS(2960), 1, anon_sym_COLON_COLON, - ACTIONS(3197), 1, + ACTIONS(3189), 1, anon_sym_for, - STATE(983), 1, + STATE(987), 1, sym_type_arguments, - STATE(1208), 1, + STATE(1204), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1989), 4, + ACTIONS(1984), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_PLUS, - [43201] = 11, - ACTIONS(2830), 1, - anon_sym_default, + [43382] = 8, + ACTIONS(3191), 1, + sym_identifier, + ACTIONS(3193), 1, + anon_sym_RBRACE, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3197), 1, + anon_sym_COMMA, ACTIONS(3199), 1, - anon_sym_const, - ACTIONS(3201), 1, - anon_sym_dep, - ACTIONS(3203), 1, - anon_sym_enum, - ACTIONS(3205), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_trait, - ACTIONS(3211), 1, - anon_sym_use, - STATE(1516), 1, - aux_sym_function_modifiers_repeat1, - STATE(2109), 1, - sym_function_modifiers, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43236] = 7, - ACTIONS(2058), 1, + STATE(1542), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1625), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [43411] = 7, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(3213), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - STATE(975), 1, + STATE(989), 1, sym_type_arguments, - STATE(1204), 1, + STATE(1203), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 5, + ACTIONS(1996), 5, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PLUS, - [43263] = 6, - ACTIONS(2986), 1, - anon_sym_COLON, - ACTIONS(3215), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2990), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2429), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - ACTIONS(2984), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [43288] = 8, - ACTIONS(2058), 1, + [43438] = 8, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(2972), 1, + ACTIONS(2960), 1, anon_sym_COLON_COLON, - ACTIONS(3217), 1, + ACTIONS(3203), 1, anon_sym_for, - STATE(983), 1, + STATE(987), 1, sym_type_arguments, - STATE(1208), 1, + STATE(1204), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1989), 4, + ACTIONS(1984), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_PLUS, - [43317] = 7, - ACTIONS(2058), 1, + [43467] = 8, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(3219), 1, + ACTIONS(2960), 1, + anon_sym_COLON_COLON, + ACTIONS(3205), 1, anon_sym_for, - STATE(975), 1, + STATE(987), 1, sym_type_arguments, STATE(1204), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 4, + ACTIONS(1984), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_PLUS, - [43343] = 7, - ACTIONS(3171), 1, - sym_identifier, - ACTIONS(3175), 1, - anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_DOT_DOT, - ACTIONS(3221), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1536), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1826), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [43369] = 7, - ACTIONS(3171), 1, - sym_identifier, - ACTIONS(3175), 1, - anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1536), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1826), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [43395] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3175), 1, - anon_sym_POUND, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3227), 1, - anon_sym_RBRACE, - ACTIONS(3229), 1, - anon_sym_COMMA, - STATE(1803), 1, - sym_field_declaration, - STATE(2126), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1326), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43425] = 7, - ACTIONS(2058), 1, + [43496] = 8, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(3231), 1, + ACTIONS(2960), 1, + anon_sym_COLON_COLON, + ACTIONS(3207), 1, anon_sym_for, - STATE(975), 1, + STATE(987), 1, sym_type_arguments, STATE(1204), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 4, + ACTIONS(1984), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_PLUS, - [43451] = 8, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, - sym_identifier, - ACTIONS(3235), 1, - anon_sym_RBRACE, - ACTIONS(3237), 1, - anon_sym_COMMA, - ACTIONS(3241), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3239), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1572), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [43479] = 10, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3245), 1, - anon_sym_LPAREN, - ACTIONS(3247), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3251), 1, - anon_sym_LT, - STATE(281), 1, - sym_field_declaration_list, - STATE(1352), 1, - sym_type_parameters, - STATE(1643), 1, - sym_ordered_field_declaration_list, - STATE(1922), 1, - sym_where_clause, + [43525] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43511] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3175), 1, - anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(2900), 10, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, sym_identifier, - ACTIONS(3253), 1, - anon_sym_RBRACE, - ACTIONS(3255), 1, - anon_sym_COMMA, - STATE(1638), 1, - sym_field_declaration, - STATE(2126), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1349), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43541] = 10, - ACTIONS(3245), 1, - anon_sym_LPAREN, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3251), 1, - anon_sym_LT, - ACTIONS(3257), 1, - anon_sym_SEMI, - ACTIONS(3259), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym_field_declaration_list, - STATE(1327), 1, - sym_type_parameters, - STATE(1773), 1, - sym_ordered_field_declaration_list, - STATE(1838), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [43573] = 2, + [43542] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2918), 9, + ACTIONS(2896), 10, anon_sym_const, anon_sym_default, - anon_sym_dep, + anon_sym_mod, anon_sym_enum, anon_sym_fn, anon_sym_struct, anon_sym_trait, + anon_sym_type, anon_sym_use, sym_identifier, - [43589] = 5, - ACTIONS(3261), 1, + [43559] = 6, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(3209), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2990), 2, + ACTIONS(2978), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2429), 3, + ACTIONS(2426), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - ACTIONS(2984), 3, - anon_sym_RBRACK, + ACTIONS(2972), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [43611] = 9, + [43584] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3211), 1, sym_identifier, - ACTIONS(3265), 1, + ACTIONS(3213), 1, anon_sym_RBRACE, - ACTIONS(3267), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - STATE(1785), 1, - sym_enum_variant, - STATE(2159), 1, + STATE(1703), 1, + sym_storage_content, + STATE(2143), 1, + sym_field_declaration, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1328), 2, + STATE(1340), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43641] = 7, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3269), 1, - anon_sym_for, - STATE(975), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2011), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_PLUS, - [43667] = 10, - ACTIONS(3245), 1, - anon_sym_LPAREN, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3251), 1, - anon_sym_LT, - ACTIONS(3259), 1, - anon_sym_LBRACE, - ACTIONS(3271), 1, - anon_sym_SEMI, - STATE(1028), 1, - sym_field_declaration_list, - STATE(1332), 1, - sym_type_parameters, - STATE(1762), 1, - sym_ordered_field_declaration_list, - STATE(1844), 1, - sym_where_clause, + [43617] = 8, + ACTIONS(809), 1, + anon_sym_DOT_DOT, + ACTIONS(3217), 1, + sym_identifier, + ACTIONS(3219), 1, + anon_sym_RBRACE, + ACTIONS(3221), 1, + anon_sym_COMMA, + ACTIONS(3225), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43699] = 9, + ACTIONS(3223), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1558), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [43645] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3211), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3227), 1, anon_sym_RBRACE, - ACTIONS(3275), 1, + ACTIONS(3229), 1, anon_sym_COMMA, - STATE(1738), 1, - sym_enum_variant, - STATE(2159), 1, + STATE(1767), 1, + sym_field_declaration, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1334), 2, + STATE(1336), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43729] = 8, - ACTIONS(796), 1, + [43675] = 8, + ACTIONS(809), 1, anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(3217), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3225), 1, sym_mutable_specifier, - ACTIONS(3277), 1, + ACTIONS(3231), 1, anon_sym_RBRACE, - ACTIONS(3279), 1, + ACTIONS(3233), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3239), 2, + ACTIONS(3223), 2, anon_sym_ref, anon_sym_deref, - STATE(1591), 2, + STATE(1635), 2, sym_field_pattern, sym_remaining_field_pattern, - [43757] = 8, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2972), 1, - anon_sym_COLON_COLON, - ACTIONS(3281), 1, - anon_sym_EQ, - STATE(1340), 1, - sym_parameters, - STATE(1445), 1, - sym_type_arguments, + [43703] = 7, + ACTIONS(3191), 1, + sym_identifier, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3199), 1, + anon_sym_DOT_DOT, + ACTIONS(3235), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1989), 3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_GT, - [43785] = 10, - ACTIONS(3245), 1, + STATE(1542), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1931), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [43729] = 10, + ACTIONS(3237), 1, + anon_sym_SEMI, + ACTIONS(3239), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, + ACTIONS(3241), 1, anon_sym_LBRACE, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3251), 1, + ACTIONS(3245), 1, anon_sym_LT, - ACTIONS(3283), 1, - anon_sym_SEMI, - STATE(356), 1, + STATE(1020), 1, sym_field_declaration_list, - STATE(1354), 1, + STATE(1335), 1, sym_type_parameters, - STATE(1680), 1, + STATE(1736), 1, sym_ordered_field_declaration_list, - STATE(1919), 1, + STATE(1836), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43817] = 7, - ACTIONS(2058), 1, + [43761] = 10, + ACTIONS(3239), 1, anon_sym_LPAREN, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3285), 1, - anon_sym_for, - STATE(975), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3245), 1, + anon_sym_LT, + ACTIONS(3247), 1, + anon_sym_SEMI, + ACTIONS(3249), 1, + anon_sym_LBRACE, + STATE(352), 1, + sym_field_declaration_list, + STATE(1341), 1, + sym_type_parameters, + STATE(1668), 1, + sym_ordered_field_declaration_list, + STATE(1884), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_PLUS, - [43843] = 2, + [43793] = 5, + ACTIONS(3251), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 9, + ACTIONS(2978), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2426), 3, anon_sym_const, anon_sym_default, - anon_sym_dep, - anon_sym_enum, anon_sym_fn, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, + ACTIONS(2972), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [43815] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3211), 1, sym_identifier, - [43859] = 2, + ACTIONS(3253), 1, + anon_sym_RBRACE, + STATE(1970), 1, + sym_storage_content, + STATE(2143), 1, + sym_field_declaration, + STATE(2150), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2904), 9, - anon_sym_const, - anon_sym_default, - anon_sym_dep, - anon_sym_enum, - anon_sym_fn, - anon_sym_struct, - anon_sym_trait, - anon_sym_use, - sym_identifier, - [43875] = 9, - ACTIONS(3249), 1, + STATE(1340), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [43845] = 10, + ACTIONS(3239), 1, + anon_sym_LPAREN, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3287), 1, - anon_sym_COLON, - ACTIONS(3289), 1, + ACTIONS(3245), 1, + anon_sym_LT, + ACTIONS(3249), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3255), 1, + anon_sym_SEMI, + STATE(332), 1, + sym_field_declaration_list, + STATE(1357), 1, + sym_type_parameters, + STATE(1653), 1, + sym_ordered_field_declaration_list, + STATE(1940), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [43877] = 10, + ACTIONS(3239), 1, + anon_sym_LPAREN, + ACTIONS(3241), 1, + anon_sym_LBRACE, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3245), 1, anon_sym_LT, - STATE(360), 1, - sym_declaration_list, - STATE(1373), 1, + ACTIONS(3257), 1, + anon_sym_SEMI, + STATE(1010), 1, + sym_field_declaration_list, + STATE(1339), 1, sym_type_parameters, - STATE(1542), 1, - sym_trait_bounds, - STATE(1929), 1, + STATE(1759), 1, + sym_ordered_field_declaration_list, + STATE(1826), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43904] = 8, + [43909] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(3211), 1, sym_identifier, - ACTIONS(3293), 1, + ACTIONS(3259), 1, anon_sym_RBRACE, - STATE(1845), 1, + ACTIONS(3261), 1, + anon_sym_COMMA, + STATE(1721), 1, sym_field_declaration, - STATE(2126), 1, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1339), 2, + STATE(1343), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43931] = 8, + [43939] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3295), 1, + ACTIONS(3265), 1, anon_sym_RBRACE, - STATE(1845), 1, - sym_field_declaration, - STATE(2126), 1, + ACTIONS(3267), 1, + anon_sym_COMMA, + STATE(1594), 1, + sym_enum_variant, + STATE(2076), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1339), 2, + STATE(1348), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43958] = 8, + [43969] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, ACTIONS(3263), 1, sym_identifier, - ACTIONS(3297), 1, + ACTIONS(3269), 1, anon_sym_RBRACE, - STATE(1846), 1, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1783), 1, sym_enum_variant, - STATE(2159), 1, + STATE(2076), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1325), 2, + STATE(1355), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43985] = 6, - ACTIONS(3171), 1, - sym_identifier, - ACTIONS(3175), 1, - anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_DOT_DOT, + [43999] = 7, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3273), 1, + anon_sym_for, + STATE(989), 1, + sym_type_arguments, + STATE(1203), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1536), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1826), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [44008] = 6, - ACTIONS(2984), 1, - anon_sym_PIPE, - ACTIONS(2986), 1, - anon_sym_COLON, - ACTIONS(3299), 1, + ACTIONS(1996), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_PLUS, + [44025] = 8, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2960), 1, anon_sym_COLON_COLON, + ACTIONS(3275), 1, + anon_sym_EQ, + STATE(1356), 1, + sym_parameters, + STATE(1448), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2990), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2011), 3, - anon_sym_RPAREN, + ACTIONS(1984), 3, anon_sym_COMMA, anon_sym_PLUS, - [44031] = 8, + anon_sym_GT, + [44053] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3211), 1, sym_identifier, - ACTIONS(3301), 1, + ACTIONS(3277), 1, anon_sym_RBRACE, - STATE(1846), 1, - sym_enum_variant, - STATE(2159), 1, + STATE(1970), 1, + sym_storage_content, + STATE(2143), 1, + sym_field_declaration, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1325), 2, + STATE(1340), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44058] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3175), 1, - anon_sym_POUND, - ACTIONS(3225), 1, + [44083] = 7, + ACTIONS(3191), 1, sym_identifier, - ACTIONS(3303), 1, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3199), 1, + anon_sym_DOT_DOT, + ACTIONS(3279), 1, anon_sym_RBRACE, - STATE(1845), 1, - sym_field_declaration, - STATE(2126), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1339), 2, + STATE(1542), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44085] = 8, + STATE(1931), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [44109] = 7, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3281), 1, + anon_sym_for, + STATE(989), 1, + sym_type_arguments, + STATE(1203), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1996), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_PLUS, + [44135] = 7, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3283), 1, + anon_sym_for, + STATE(989), 1, + sym_type_arguments, + STATE(1203), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1996), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_PLUS, + [44161] = 7, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3285), 1, + anon_sym_for, + STATE(989), 1, + sym_type_arguments, + STATE(1203), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1996), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_PLUS, + [44187] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3211), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3287), 1, anon_sym_RBRACE, - STATE(1846), 1, - sym_enum_variant, - STATE(2159), 1, + STATE(1876), 1, + sym_field_declaration, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1325), 2, + STATE(1344), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44112] = 8, + [44214] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3289), 1, anon_sym_RBRACE, - STATE(1845), 1, - sym_field_declaration, - STATE(2126), 1, + STATE(1909), 1, + sym_enum_variant, + STATE(2076), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1339), 2, + STATE(1354), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44139] = 6, - ACTIONS(2984), 1, - anon_sym_PIPE, - ACTIONS(2986), 1, + [44241] = 6, + ACTIONS(2946), 1, anon_sym_COLON, - ACTIONS(3299), 1, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(3291), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2990), 2, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2429), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [44162] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3175), 1, - anon_sym_POUND, - ACTIONS(3263), 1, - sym_identifier, - ACTIONS(3309), 1, - anon_sym_RBRACE, - STATE(1846), 1, - sym_enum_variant, - STATE(2159), 1, - sym_visibility_modifier, + ACTIONS(2944), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [44264] = 9, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3293), 1, + anon_sym_COLON, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3297), 1, + anon_sym_LT, + STATE(1015), 1, + sym_declaration_list, + STATE(1417), 1, + sym_type_parameters, + STATE(1486), 1, + sym_trait_bounds, + STATE(1824), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1325), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [44189] = 8, + [44293] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3311), 1, + ACTIONS(3299), 1, anon_sym_RBRACE, - STATE(1845), 1, - sym_field_declaration, - STATE(2126), 1, + STATE(1909), 1, + sym_enum_variant, + STATE(2076), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1339), 2, + STATE(1354), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44216] = 9, - ACTIONS(3249), 1, + [44320] = 9, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3287), 1, + ACTIONS(3293), 1, anon_sym_COLON, - ACTIONS(3291), 1, - anon_sym_LT, - ACTIONS(3313), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(1026), 1, + ACTIONS(3297), 1, + anon_sym_LT, + STATE(1014), 1, sym_declaration_list, - STATE(1418), 1, + STATE(1414), 1, sym_type_parameters, - STATE(1494), 1, + STATE(1503), 1, sym_trait_bounds, - STATE(1842), 1, + STATE(1838), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44245] = 6, - ACTIONS(3261), 1, - anon_sym_COLON_COLON, - ACTIONS(3315), 1, - anon_sym_RBRACK, + [44349] = 7, + ACTIONS(809), 1, + anon_sym_DOT_DOT, + ACTIONS(3217), 1, + sym_identifier, + ACTIONS(3225), 1, + sym_mutable_specifier, + ACTIONS(3301), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(2984), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2990), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [44268] = 8, - ACTIONS(3318), 1, - anon_sym_LBRACK, - ACTIONS(3322), 1, - anon_sym_LPAREN, - ACTIONS(3324), 1, - anon_sym_LBRACE, - ACTIONS(3326), 1, - anon_sym_EQ, - ACTIONS(3328), 1, - anon_sym_COLON_COLON, - STATE(1873), 1, - sym_delim_token_tree, + ACTIONS(3223), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1902), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [44374] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3211), 1, + sym_identifier, + ACTIONS(3303), 1, + anon_sym_RBRACE, + STATE(1876), 1, + sym_field_declaration, + STATE(2150), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [44295] = 8, + STATE(1344), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44401] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, ACTIONS(3263), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3305), 1, anon_sym_RBRACE, - STATE(1846), 1, + STATE(1909), 1, sym_enum_variant, - STATE(2159), 1, + STATE(2076), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1325), 2, + STATE(1354), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44322] = 8, - ACTIONS(3318), 1, - anon_sym_LBRACK, - ACTIONS(3322), 1, - anon_sym_LPAREN, - ACTIONS(3324), 1, - anon_sym_LBRACE, - ACTIONS(3326), 1, - anon_sym_EQ, - ACTIONS(3332), 1, + [44428] = 6, + ACTIONS(2972), 1, + anon_sym_PIPE, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(3307), 1, anon_sym_COLON_COLON, - STATE(1873), 1, - sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_RBRACK, + ACTIONS(2978), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1996), 3, + anon_sym_RPAREN, anon_sym_COMMA, - [44349] = 8, - ACTIONS(3318), 1, - anon_sym_LBRACK, - ACTIONS(3322), 1, - anon_sym_LPAREN, - ACTIONS(3324), 1, - anon_sym_LBRACE, - ACTIONS(3326), 1, - anon_sym_EQ, - ACTIONS(3334), 1, - anon_sym_COLON_COLON, - STATE(1873), 1, - sym_delim_token_tree, + anon_sym_PLUS, + [44451] = 7, + ACTIONS(809), 1, + anon_sym_DOT_DOT, + ACTIONS(3217), 1, + sym_identifier, + ACTIONS(3225), 1, + sym_mutable_specifier, + ACTIONS(3309), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [44376] = 7, - ACTIONS(796), 1, + ACTIONS(3223), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1902), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [44476] = 7, + ACTIONS(809), 1, anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(3217), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3225), 1, sym_mutable_specifier, - ACTIONS(3336), 1, + ACTIONS(3311), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3239), 2, + ACTIONS(3223), 2, anon_sym_ref, anon_sym_deref, - STATE(1839), 2, + STATE(1902), 2, sym_field_pattern, sym_remaining_field_pattern, - [44401] = 8, - ACTIONS(3031), 1, + [44501] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3263), 1, + sym_identifier, + ACTIONS(3313), 1, + anon_sym_RBRACE, + STATE(1909), 1, + sym_enum_variant, + STATE(2076), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1354), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44528] = 6, + ACTIONS(2972), 1, + anon_sym_PIPE, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(3307), 1, anon_sym_COLON_COLON, - ACTIONS(3318), 1, - anon_sym_LBRACK, - ACTIONS(3322), 1, - anon_sym_LPAREN, - ACTIONS(3324), 1, - anon_sym_LBRACE, - ACTIONS(3340), 1, - anon_sym_EQ, - STATE(1886), 1, - sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3338), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [44428] = 7, - ACTIONS(796), 1, + ACTIONS(2978), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2426), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [44551] = 7, + ACTIONS(809), 1, anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(3217), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3225), 1, sym_mutable_specifier, - ACTIONS(3342), 1, + ACTIONS(3315), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3239), 2, + ACTIONS(3223), 2, anon_sym_ref, anon_sym_deref, - STATE(1839), 2, + STATE(1902), 2, sym_field_pattern, sym_remaining_field_pattern, - [44453] = 7, - ACTIONS(2011), 1, + [44576] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3211), 1, + sym_identifier, + ACTIONS(3317), 1, + anon_sym_RBRACE, + STATE(1876), 1, + sym_field_declaration, + STATE(2150), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1344), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44603] = 9, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3293), 1, + anon_sym_COLON, + ACTIONS(3297), 1, + anon_sym_LT, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(337), 1, + sym_declaration_list, + STATE(1378), 1, + sym_type_parameters, + STATE(1537), 1, + sym_trait_bounds, + STATE(1968), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [44632] = 7, + ACTIONS(1996), 1, anon_sym_PLUS, - ACTIONS(2984), 1, + ACTIONS(2972), 1, anon_sym_PIPE, - ACTIONS(2986), 1, + ACTIONS(2974), 1, anon_sym_COLON, - ACTIONS(3215), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2990), 2, + ACTIONS(2978), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3315), 2, + ACTIONS(3321), 2, anon_sym_RPAREN, anon_sym_COMMA, - [44478] = 6, - ACTIONS(2958), 1, + [44657] = 6, + ACTIONS(3191), 1, + sym_identifier, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3199), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1542), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1931), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [44680] = 9, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3293), 1, anon_sym_COLON, - ACTIONS(2960), 1, - anon_sym_LPAREN, - ACTIONS(3344), 1, - anon_sym_COLON_COLON, + ACTIONS(3297), 1, + anon_sym_LT, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(356), 1, + sym_declaration_list, + STATE(1395), 1, + sym_type_parameters, + STATE(1527), 1, + sym_trait_bounds, + STATE(1885), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2956), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [44501] = 8, + [44709] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(3211), 1, sym_identifier, - ACTIONS(3346), 1, + ACTIONS(3324), 1, anon_sym_RBRACE, - STATE(1845), 1, + STATE(1876), 1, sym_field_declaration, - STATE(2126), 1, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1339), 2, + STATE(1344), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44528] = 7, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, - sym_identifier, - ACTIONS(3241), 1, - sym_mutable_specifier, - ACTIONS(3348), 1, - anon_sym_RBRACE, + [44736] = 8, + ACTIONS(3326), 1, + anon_sym_LBRACK, + ACTIONS(3330), 1, + anon_sym_LPAREN, + ACTIONS(3332), 1, + anon_sym_LBRACE, + ACTIONS(3334), 1, + anon_sym_EQ, + ACTIONS(3336), 1, + anon_sym_COLON_COLON, + STATE(1959), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3239), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1839), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [44553] = 9, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3287), 1, - anon_sym_COLON, - ACTIONS(3289), 1, + ACTIONS(3328), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [44763] = 8, + ACTIONS(3326), 1, + anon_sym_LBRACK, + ACTIONS(3330), 1, + anon_sym_LPAREN, + ACTIONS(3332), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_LT, - STATE(321), 1, - sym_declaration_list, - STATE(1423), 1, - sym_type_parameters, - STATE(1550), 1, - sym_trait_bounds, - STATE(1935), 1, - sym_where_clause, + ACTIONS(3334), 1, + anon_sym_EQ, + ACTIONS(3338), 1, + anon_sym_COLON_COLON, + STATE(1959), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44582] = 8, + ACTIONS(3328), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [44790] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3211), 1, sym_identifier, - ACTIONS(3350), 1, + ACTIONS(3340), 1, anon_sym_RBRACE, - STATE(1846), 1, - sym_enum_variant, - STATE(2159), 1, + STATE(1876), 1, + sym_field_declaration, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1325), 2, + STATE(1344), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44609] = 9, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3287), 1, - anon_sym_COLON, - ACTIONS(3291), 1, - anon_sym_LT, - ACTIONS(3313), 1, + [44817] = 8, + ACTIONS(3326), 1, + anon_sym_LBRACK, + ACTIONS(3330), 1, + anon_sym_LPAREN, + ACTIONS(3332), 1, anon_sym_LBRACE, - STATE(1049), 1, - sym_declaration_list, - STATE(1414), 1, - sym_type_parameters, - STATE(1489), 1, - sym_trait_bounds, - STATE(1840), 1, - sym_where_clause, + ACTIONS(3334), 1, + anon_sym_EQ, + ACTIONS(3342), 1, + anon_sym_COLON_COLON, + STATE(1959), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44638] = 7, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, - sym_identifier, - ACTIONS(3241), 1, - sym_mutable_specifier, - ACTIONS(3352), 1, - anon_sym_RBRACE, + ACTIONS(3328), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [44844] = 8, + ACTIONS(3035), 1, + anon_sym_COLON_COLON, + ACTIONS(3326), 1, + anon_sym_LBRACK, + ACTIONS(3330), 1, + anon_sym_LPAREN, + ACTIONS(3332), 1, + anon_sym_LBRACE, + ACTIONS(3346), 1, + anon_sym_EQ, + STATE(1958), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3239), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1839), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [44663] = 7, - ACTIONS(3354), 1, - sym_identifier, - ACTIONS(3356), 1, - anon_sym_const, - ACTIONS(3358), 1, - anon_sym_GT, - ACTIONS(3360), 1, - sym_metavariable, - STATE(1792), 1, - sym_constrained_type_parameter, + ACTIONS(3344), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [44871] = 6, + ACTIONS(3251), 1, + anon_sym_COLON_COLON, + ACTIONS(3321), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1819), 2, - sym_const_parameter, - sym_optional_type_parameter, - [44687] = 7, + ACTIONS(1996), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(2972), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2978), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [44894] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, ACTIONS(3263), 1, sym_identifier, - STATE(1977), 1, + ACTIONS(3348), 1, + anon_sym_RBRACE, + STATE(1909), 1, sym_enum_variant, - STATE(2159), 1, + STATE(2076), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1440), 2, + STATE(1354), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44711] = 7, + [44921] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(3263), 1, sym_identifier, - STATE(1711), 1, - sym_field_declaration, - STATE(2126), 1, + ACTIONS(3350), 1, + anon_sym_RBRACE, + STATE(1909), 1, + sym_enum_variant, + STATE(2076), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1440), 2, + STATE(1354), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44735] = 8, - ACTIONS(3245), 1, - anon_sym_LPAREN, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3259), 1, - anon_sym_LBRACE, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(1104), 1, - sym_field_declaration_list, - STATE(1700), 1, - sym_ordered_field_declaration_list, - STATE(1890), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [44761] = 7, + [44948] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3211), 1, sym_identifier, - STATE(1759), 1, - sym_enum_variant, - STATE(2159), 1, + ACTIONS(3352), 1, + anon_sym_RBRACE, + STATE(1876), 1, + sym_field_declaration, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1440), 2, + STATE(1344), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44785] = 7, + [44975] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3211), 1, sym_identifier, - STATE(1846), 1, - sym_enum_variant, - STATE(2159), 1, + STATE(1970), 1, + sym_storage_content, + STATE(2143), 1, + sym_field_declaration, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1325), 2, + STATE(1340), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44809] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3364), 1, - anon_sym_RBRACE, - ACTIONS(3366), 1, - anon_sym_COMMA, - STATE(1614), 1, - sym_storage_content, - STATE(2124), 1, - sym_field_declaration, - STATE(2126), 1, - sym_visibility_modifier, + [45002] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44835] = 7, - ACTIONS(3354), 1, - sym_identifier, - ACTIONS(3356), 1, - anon_sym_const, - ACTIONS(3360), 1, - sym_metavariable, - ACTIONS(3368), 1, + ACTIONS(3354), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_GT, - STATE(1792), 1, - sym_constrained_type_parameter, + [45016] = 3, + ACTIONS(3356), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1819), 2, - sym_const_parameter, - sym_optional_type_parameter, - [44859] = 8, - ACTIONS(3245), 1, - anon_sym_LPAREN, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3259), 1, - anon_sym_LBRACE, - ACTIONS(3370), 1, - anon_sym_SEMI, - STATE(1034), 1, - sym_field_declaration_list, - STATE(1795), 1, - sym_ordered_field_declaration_list, - STATE(1823), 1, - sym_where_clause, + ACTIONS(2076), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [45032] = 3, + ACTIONS(3358), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44885] = 5, - ACTIONS(2960), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_COLON_COLON, + ACTIONS(2046), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [45048] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2956), 3, - anon_sym_RBRACK, + ACTIONS(3360), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, anon_sym_COMMA, - anon_sym_PIPE, - [44905] = 7, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3175), 1, - anon_sym_POUND, - ACTIONS(3263), 1, - sym_identifier, - STATE(1717), 1, - sym_enum_variant, - STATE(2159), 1, - sym_visibility_modifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + [45062] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1440), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [44929] = 3, - ACTIONS(3374), 1, - anon_sym_DASH_GT, + ACTIONS(3362), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + [45076] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2095), 6, - anon_sym_as, + ACTIONS(3360), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, anon_sym_GT, - anon_sym_PIPE, - [44945] = 3, - ACTIONS(3376), 1, - anon_sym_DASH_GT, + [45090] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2115), 6, - anon_sym_as, + ACTIONS(3360), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, anon_sym_GT, - anon_sym_PIPE, - [44961] = 7, - ACTIONS(3354), 1, + [45104] = 7, + ACTIONS(3364), 1, sym_identifier, - ACTIONS(3356), 1, + ACTIONS(3366), 1, anon_sym_const, - ACTIONS(3360), 1, - sym_metavariable, - ACTIONS(3378), 1, + ACTIONS(3368), 1, anon_sym_GT, - STATE(1792), 1, + ACTIONS(3370), 1, + sym_metavariable, + STATE(1600), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1819), 2, + STATE(1971), 2, sym_const_parameter, sym_optional_type_parameter, - [44985] = 7, - ACTIONS(3354), 1, + [45128] = 7, + ACTIONS(3364), 1, sym_identifier, - ACTIONS(3356), 1, + ACTIONS(3366), 1, anon_sym_const, - ACTIONS(3360), 1, + ACTIONS(3370), 1, sym_metavariable, - ACTIONS(3380), 1, + ACTIONS(3372), 1, anon_sym_GT, - STATE(1792), 1, + STATE(1600), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1819), 2, + STATE(1971), 2, sym_const_parameter, sym_optional_type_parameter, - [45009] = 7, + [45152] = 8, + ACTIONS(3239), 1, + anon_sym_LPAREN, + ACTIONS(3241), 1, + anon_sym_LBRACE, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3374), 1, + anon_sym_SEMI, + STATE(1144), 1, + sym_field_declaration_list, + STATE(1656), 1, + sym_ordered_field_declaration_list, + STATE(1889), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [45178] = 7, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(3211), 1, sym_identifier, - STATE(1953), 1, + STATE(1683), 1, sym_field_declaration, - STATE(2126), 1, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1440), 2, + STATE(1474), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [45033] = 3, - ACTIONS(3382), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2101), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [45049] = 6, - ACTIONS(796), 1, + [45202] = 6, + ACTIONS(809), 1, anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(3217), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3225), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3239), 2, + ACTIONS(3223), 2, anon_sym_ref, anon_sym_deref, - STATE(1839), 2, + STATE(1902), 2, sym_field_pattern, sym_remaining_field_pattern, - [45071] = 3, - ACTIONS(3384), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2109), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [45087] = 2, + [45224] = 7, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3211), 1, + sym_identifier, + STATE(1876), 1, + sym_field_declaration, + STATE(2150), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3386), 7, - anon_sym_SEMI, + STATE(1344), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45248] = 8, + ACTIONS(3239), 1, + anon_sym_LPAREN, + ACTIONS(3241), 1, anon_sym_LBRACE, + ACTIONS(3243), 1, anon_sym_where, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - [45101] = 2, + ACTIONS(3376), 1, + anon_sym_SEMI, + STATE(1017), 1, + sym_field_declaration_list, + STATE(1762), 1, + sym_ordered_field_declaration_list, + STATE(1821), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3388), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - [45115] = 7, - ACTIONS(3354), 1, + [45274] = 7, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3211), 1, sym_identifier, - ACTIONS(3356), 1, - anon_sym_const, - ACTIONS(3360), 1, - sym_metavariable, - ACTIONS(3390), 1, - anon_sym_GT, - STATE(1792), 1, - sym_constrained_type_parameter, + STATE(2080), 1, + sym_field_declaration, + STATE(2150), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1819), 2, - sym_const_parameter, - sym_optional_type_parameter, - [45139] = 2, + STATE(1474), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45298] = 8, + ACTIONS(3239), 1, + anon_sym_LPAREN, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3249), 1, + anon_sym_LBRACE, + ACTIONS(3378), 1, + anon_sym_SEMI, + STATE(272), 1, + sym_field_declaration_list, + STATE(1728), 1, + sym_ordered_field_declaration_list, + STATE(1953), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3392), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - [45153] = 2, + [45324] = 7, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3263), 1, + sym_identifier, + STATE(1909), 1, + sym_enum_variant, + STATE(2076), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3388), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - [45167] = 2, + STATE(1354), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45348] = 7, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3211), 1, + sym_identifier, + STATE(1641), 1, + sym_field_declaration, + STATE(2150), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3388), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - [45181] = 7, + STATE(1474), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45372] = 7, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(3211), 1, sym_identifier, - STATE(1732), 1, + STATE(1910), 1, sym_field_declaration, - STATE(2126), 1, + STATE(2150), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1440), 2, + STATE(1474), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [45205] = 7, - ACTIONS(3354), 1, + [45396] = 7, + ACTIONS(3364), 1, sym_identifier, - ACTIONS(3356), 1, + ACTIONS(3366), 1, anon_sym_const, - ACTIONS(3360), 1, + ACTIONS(3370), 1, sym_metavariable, - ACTIONS(3394), 1, + ACTIONS(3380), 1, anon_sym_GT, - STATE(1792), 1, + STATE(1600), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1819), 2, + STATE(1971), 2, sym_const_parameter, sym_optional_type_parameter, - [45229] = 7, - ACTIONS(3354), 1, + [45420] = 7, + ACTIONS(3364), 1, sym_identifier, - ACTIONS(3356), 1, + ACTIONS(3366), 1, anon_sym_const, - ACTIONS(3360), 1, + ACTIONS(3370), 1, sym_metavariable, - ACTIONS(3396), 1, + ACTIONS(3382), 1, anon_sym_GT, - STATE(1792), 1, + STATE(1600), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1819), 2, + STATE(1971), 2, sym_const_parameter, sym_optional_type_parameter, - [45253] = 8, - ACTIONS(3245), 1, - anon_sym_LPAREN, - ACTIONS(3247), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3398), 1, - anon_sym_SEMI, - STATE(237), 1, - sym_field_declaration_list, - STATE(1617), 1, - sym_ordered_field_declaration_list, - STATE(1967), 1, - sym_where_clause, + [45444] = 7, + ACTIONS(3364), 1, + sym_identifier, + ACTIONS(3366), 1, + anon_sym_const, + ACTIONS(3370), 1, + sym_metavariable, + ACTIONS(3384), 1, + anon_sym_GT, + STATE(1600), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45279] = 7, + STATE(1971), 2, + sym_const_parameter, + sym_optional_type_parameter, + [45468] = 7, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(3175), 1, + ACTIONS(3195), 1, anon_sym_POUND, - ACTIONS(3225), 1, + ACTIONS(3263), 1, sym_identifier, - STATE(1845), 1, - sym_field_declaration, - STATE(2126), 1, + STATE(1568), 1, + sym_enum_variant, + STATE(2076), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1339), 2, + STATE(1474), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [45303] = 8, - ACTIONS(3245), 1, + [45492] = 3, + ACTIONS(3386), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2060), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [45508] = 7, + ACTIONS(3364), 1, + sym_identifier, + ACTIONS(3366), 1, + anon_sym_const, + ACTIONS(3370), 1, + sym_metavariable, + ACTIONS(3388), 1, + anon_sym_GT, + STATE(1600), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1971), 2, + sym_const_parameter, + sym_optional_type_parameter, + [45532] = 5, + ACTIONS(2948), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3400), 1, - anon_sym_SEMI, - STATE(316), 1, - sym_field_declaration_list, - STATE(1575), 1, - sym_ordered_field_declaration_list, - STATE(1916), 1, - sym_where_clause, + ACTIONS(3390), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2944), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [45552] = 7, + ACTIONS(3364), 1, + sym_identifier, + ACTIONS(3366), 1, + anon_sym_const, + ACTIONS(3370), 1, + sym_metavariable, + ACTIONS(3392), 1, + anon_sym_GT, + STATE(1600), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45329] = 7, - ACTIONS(3354), 1, + STATE(1971), 2, + sym_const_parameter, + sym_optional_type_parameter, + [45576] = 7, + ACTIONS(3364), 1, sym_identifier, - ACTIONS(3356), 1, + ACTIONS(3366), 1, anon_sym_const, - ACTIONS(3360), 1, + ACTIONS(3370), 1, sym_metavariable, - ACTIONS(3402), 1, + ACTIONS(3394), 1, anon_sym_GT, - STATE(1792), 1, + STATE(1600), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1819), 2, + STATE(1971), 2, sym_const_parameter, sym_optional_type_parameter, - [45353] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3404), 1, - anon_sym_SEMI, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(3408), 1, - anon_sym_DASH_GT, - STATE(390), 1, - sym_block, - STATE(1662), 1, - sym_where_clause, + [45600] = 7, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3263), 1, + sym_identifier, + STATE(1847), 1, + sym_enum_variant, + STATE(2076), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45376] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(3410), 1, - anon_sym_SEMI, - ACTIONS(3412), 1, - anon_sym_DASH_GT, - STATE(351), 1, - sym_block, - STATE(1663), 1, - sym_where_clause, + STATE(1474), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45624] = 7, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3263), 1, + sym_identifier, + STATE(1723), 1, + sym_enum_variant, + STATE(2076), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45399] = 3, + STATE(1474), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45648] = 3, + ACTIONS(3396), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2083), 4, - anon_sym_RPAREN, + ACTIONS(2066), 6, + anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_PLUS, - [45414] = 7, - ACTIONS(3249), 1, + anon_sym_GT, + anon_sym_PIPE, + [45664] = 8, + ACTIONS(3239), 1, + anon_sym_LPAREN, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3289), 1, + ACTIONS(3249), 1, anon_sym_LBRACE, - ACTIONS(3414), 1, + ACTIONS(3398), 1, anon_sym_SEMI, - ACTIONS(3416), 1, - anon_sym_PLUS, - STATE(295), 1, - sym_declaration_list, - STATE(1734), 1, + STATE(315), 1, + sym_field_declaration_list, + STATE(1670), 1, + sym_ordered_field_declaration_list, + STATE(1925), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45437] = 7, - ACTIONS(3249), 1, + [45690] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3406), 1, + ACTIONS(3400), 1, + anon_sym_SEMI, + ACTIONS(3402), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3418), 1, - anon_sym_SEMI, - STATE(267), 1, + STATE(296), 1, sym_block, - STATE(1757), 1, + STATE(1788), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45460] = 7, - ACTIONS(3249), 1, + [45713] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3289), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3406), 1, anon_sym_SEMI, - STATE(297), 1, + STATE(1029), 1, sym_declaration_list, - STATE(1760), 1, + STATE(1611), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45483] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3406), 1, + [45736] = 7, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3422), 1, - anon_sym_SEMI, - STATE(400), 1, - sym_block, - STATE(1648), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45506] = 6, - ACTIONS(3356), 1, - anon_sym_const, - ACTIONS(3424), 1, + ACTIONS(3408), 1, sym_identifier, - ACTIONS(3426), 1, - sym_metavariable, - STATE(1566), 1, - sym_constrained_type_parameter, + ACTIONS(3410), 1, + anon_sym_STAR, + STATE(1135), 1, + sym_type_arguments, + STATE(1760), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1779), 2, - sym_const_parameter, - sym_optional_type_parameter, - [45527] = 5, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_COLON_COLON, - STATE(694), 1, - sym_field_initializer_list, + [45759] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2082), 2, + anon_sym_DASH_GT, anon_sym_PLUS, - [45546] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3159), 2, + ACTIONS(3147), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2075), 4, + ACTIONS(3412), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PLUS, - [45561] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3406), 1, + [45776] = 7, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(3430), 1, - anon_sym_SEMI, - ACTIONS(3432), 1, - anon_sym_DASH_GT, - STATE(314), 1, - sym_block, - STATE(1571), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45584] = 7, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(3434), 1, + ACTIONS(3415), 1, anon_sym_SEMI, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_DASH_GT, - STATE(393), 1, + STATE(1114), 1, sym_block, - STATE(1653), 1, + STATE(1667), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45607] = 4, - ACTIONS(3440), 1, - anon_sym_PLUS, - STATE(1425), 1, - aux_sym_trait_bounds_repeat1, + [45799] = 4, + ACTIONS(3419), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3438), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(3099), 2, anon_sym_COMMA, - [45624] = 4, - ACTIONS(3442), 1, + anon_sym_PIPE, + ACTIONS(2042), 3, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_PLUS, + [45816] = 6, + ACTIONS(2944), 1, + anon_sym_PIPE, + ACTIONS(2946), 1, + anon_sym_COLON, + ACTIONS(2948), 1, + anon_sym_LPAREN, + ACTIONS(3422), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2011), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - [45641] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3406), 1, + [45837] = 7, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3444), 1, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3424), 1, anon_sym_SEMI, - STATE(387), 1, + ACTIONS(3426), 1, + anon_sym_DASH_GT, + STATE(997), 1, sym_block, - STATE(1590), 1, + STATE(1706), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45664] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3406), 1, + [45860] = 7, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3446), 1, - anon_sym_SEMI, - STATE(309), 1, - sym_block, - STATE(1689), 1, - sym_where_clause, + ACTIONS(3408), 1, + sym_identifier, + ACTIONS(3410), 1, + anon_sym_STAR, + STATE(1082), 1, + sym_type_arguments, + STATE(1760), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45687] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, + [45883] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SEMI, - STATE(1124), 1, - sym_block, - STATE(1639), 1, + ACTIONS(3245), 1, + anon_sym_LT, + ACTIONS(3428), 1, + anon_sym_LBRACE, + STATE(269), 1, + sym_enum_variant_list, + STATE(1513), 1, + sym_type_parameters, + STATE(1827), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45710] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3287), 1, - anon_sym_COLON, - ACTIONS(3289), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_declaration_list, - STATE(1492), 1, - sym_trait_bounds, - STATE(1872), 1, - sym_where_clause, + [45906] = 4, + ACTIONS(2962), 1, + anon_sym_COLON_COLON, + ACTIONS(3283), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45733] = 4, + ACTIONS(1996), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_PLUS, + [45923] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2075), 2, + ACTIONS(2042), 2, anon_sym_DASH_GT, anon_sym_PLUS, - ACTIONS(3159), 2, + ACTIONS(3099), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3450), 2, + ACTIONS(3419), 2, anon_sym_RPAREN, anon_sym_COMMA, - [45750] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, + [45940] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3416), 1, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3453), 1, + ACTIONS(3430), 1, anon_sym_SEMI, - STATE(1130), 1, - sym_block, - STATE(1640), 1, + STATE(244), 1, + sym_declaration_list, + STATE(1557), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45773] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, + [45963] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3416), 1, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3455), 1, + ACTIONS(3432), 1, anon_sym_SEMI, - STATE(1139), 1, - sym_block, - STATE(1642), 1, + STATE(1042), 1, + sym_declaration_list, + STATE(1690), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45796] = 5, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(3457), 1, + [45986] = 6, + ACTIONS(2968), 1, anon_sym_COLON_COLON, - STATE(694), 1, - sym_field_initializer_list, + ACTIONS(3434), 1, + anon_sym_COMMA, + ACTIONS(3436), 1, + anon_sym_GT, + STATE(1669), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1996), 2, + anon_sym_as, anon_sym_PLUS, - [45815] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, + [46007] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3459), 1, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(3438), 1, anon_sym_SEMI, - ACTIONS(3461), 1, + ACTIONS(3440), 1, anon_sym_DASH_GT, - STATE(1161), 1, + STATE(323), 1, sym_block, - STATE(1646), 1, + STATE(1665), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45838] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, + [46030] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3416), 1, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3463), 1, + ACTIONS(3442), 1, anon_sym_SEMI, - STATE(1165), 1, - sym_block, - STATE(1649), 1, + STATE(383), 1, + sym_declaration_list, + STATE(1614), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45861] = 5, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(3465), 1, - anon_sym_COLON_COLON, - STATE(694), 1, - sym_field_initializer_list, + [46053] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(3099), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2042), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PLUS, + [46068] = 7, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3404), 1, anon_sym_PLUS, - [45880] = 4, + ACTIONS(3444), 1, + anon_sym_SEMI, + STATE(1031), 1, + sym_block, + STATE(1687), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2083), 2, - anon_sym_DASH_GT, + [46091] = 7, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3115), 2, + ACTIONS(3446), 1, + anon_sym_SEMI, + STATE(1058), 1, + sym_block, + STATE(1576), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46114] = 7, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3293), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3467), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [45897] = 7, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3470), 1, - anon_sym_RBRACE, - STATE(1939), 1, - sym_storage_content, - STATE(2124), 1, - sym_field_declaration, - STATE(2126), 1, - sym_visibility_modifier, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym_declaration_list, + STATE(1544), 1, + sym_trait_bounds, + STATE(1917), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45920] = 5, + [46137] = 5, ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(3472), 1, + ACTIONS(3448), 1, sym_identifier, - STATE(73), 1, + STATE(71), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 3, + ACTIONS(3450), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - [45939] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3476), 1, - anon_sym_SEMI, - STATE(1184), 1, - sym_block, - STATE(1650), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45962] = 4, - ACTIONS(3467), 1, + [46156] = 4, + ACTIONS(3412), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 2, + ACTIONS(3147), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2083), 3, + ACTIONS(2082), 3, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_PLUS, - [45979] = 5, - ACTIONS(3478), 1, - anon_sym_COLON, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3480), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [45998] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, + [46173] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3484), 1, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3452), 1, anon_sym_SEMI, - ACTIONS(3486), 1, - anon_sym_DASH_GT, - STATE(1194), 1, + STATE(371), 1, sym_block, - STATE(1657), 1, + STATE(1778), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46021] = 6, - ACTIONS(3354), 1, - sym_identifier, - ACTIONS(3356), 1, - anon_sym_const, - ACTIONS(3360), 1, - sym_metavariable, - STATE(1792), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1819), 2, - sym_const_parameter, - sym_optional_type_parameter, - [46042] = 7, - ACTIONS(3249), 1, + [46196] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3406), 1, + ACTIONS(3402), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3488), 1, + ACTIONS(3454), 1, anon_sym_SEMI, - STATE(246), 1, + STATE(384), 1, sym_block, - STATE(1704), 1, + STATE(1771), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46065] = 6, - ACTIONS(2956), 1, - anon_sym_PIPE, - ACTIONS(2958), 1, - anon_sym_COLON, - ACTIONS(2960), 1, - anon_sym_LPAREN, - ACTIONS(3490), 1, + [46219] = 4, + ACTIONS(2962), 1, anon_sym_COLON_COLON, + ACTIONS(3281), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [46086] = 7, - ACTIONS(1816), 1, + ACTIONS(1996), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3249), 1, anon_sym_where, - ACTIONS(3492), 1, - anon_sym_SEMI, - ACTIONS(3494), 1, - anon_sym_DASH_GT, - STATE(1157), 1, - sym_block, - STATE(1665), 1, - sym_where_clause, + anon_sym_PLUS, + [46236] = 7, + ACTIONS(3025), 1, + anon_sym_EQ, + ACTIONS(3456), 1, + anon_sym_COLON, + ACTIONS(3458), 1, + anon_sym_COMMA, + ACTIONS(3460), 1, + anon_sym_GT, + STATE(1654), 1, + sym_trait_bounds, + STATE(1770), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46109] = 7, - ACTIONS(3249), 1, + [46259] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3406), 1, + ACTIONS(3245), 1, + anon_sym_LT, + ACTIONS(3428), 1, anon_sym_LBRACE, - ACTIONS(3496), 1, - anon_sym_SEMI, - ACTIONS(3498), 1, - anon_sym_DASH_GT, - STATE(373), 1, - sym_block, - STATE(1606), 1, + STATE(327), 1, + sym_enum_variant_list, + STATE(1492), 1, + sym_type_parameters, + STATE(1967), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46132] = 7, - ACTIONS(3249), 1, + [46282] = 6, + ACTIONS(3366), 1, + anon_sym_const, + ACTIONS(3462), 1, + sym_identifier, + ACTIONS(3464), 1, + sym_metavariable, + STATE(1520), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1632), 2, + sym_const_parameter, + sym_optional_type_parameter, + [46303] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3289), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3500), 1, + ACTIONS(3466), 1, anon_sym_SEMI, - STATE(329), 1, + STATE(1139), 1, sym_declaration_list, - STATE(1576), 1, + STATE(1606), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46155] = 7, - ACTIONS(3249), 1, + [46326] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3406), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3502), 1, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3468), 1, anon_sym_SEMI, - ACTIONS(3504), 1, - anon_sym_DASH_GT, - STATE(289), 1, - sym_block, - STATE(1636), 1, + STATE(1134), 1, + sym_declaration_list, + STATE(1785), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46178] = 7, - ACTIONS(3249), 1, + [46349] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3289), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3506), 1, + ACTIONS(3470), 1, anon_sym_SEMI, - STATE(376), 1, + STATE(242), 1, sym_declaration_list, - STATE(1623), 1, + STATE(1713), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46201] = 4, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2011), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - [46218] = 7, - ACTIONS(3249), 1, + [46372] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3289), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3510), 1, + ACTIONS(3472), 1, anon_sym_SEMI, - STATE(339), 1, + STATE(246), 1, sym_declaration_list, - STATE(1698), 1, + STATE(1779), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46241] = 5, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, - anon_sym_COLON, + [46395] = 4, + ACTIONS(3476), 1, + anon_sym_PLUS, + STATE(1431), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3474), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_COMMA, + [46412] = 4, + ACTIONS(3478), 1, + anon_sym_PLUS, + STATE(1431), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3514), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [46260] = 7, - ACTIONS(3249), 1, + ACTIONS(3474), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_where, - ACTIONS(3406), 1, + anon_sym_COMMA, + [46429] = 7, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3516), 1, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3480), 1, anon_sym_SEMI, - STATE(274), 1, + ACTIONS(3482), 1, + anon_sym_DASH_GT, + STATE(1004), 1, sym_block, - STATE(1725), 1, + STATE(1582), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46283] = 7, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2769), 1, + [46452] = 5, + ACTIONS(2024), 1, anon_sym_LBRACE, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_STAR, - STATE(996), 1, - sym_type_arguments, - STATE(1697), 1, - sym_use_list, + ACTIONS(3484), 1, + anon_sym_COLON_COLON, + STATE(726), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46306] = 7, - ACTIONS(3249), 1, + ACTIONS(1996), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS, + [46471] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3251), 1, - anon_sym_LT, - ACTIONS(3522), 1, + ACTIONS(3293), 1, + anon_sym_COLON, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1053), 1, - sym_enum_variant_list, - STATE(1493), 1, - sym_type_parameters, - STATE(1864), 1, + STATE(275), 1, + sym_declaration_list, + STATE(1500), 1, + sym_trait_bounds, + STATE(1956), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46329] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3313), 1, + [46494] = 7, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3524), 1, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3486), 1, anon_sym_SEMI, - STATE(1137), 1, - sym_declaration_list, - STATE(1682), 1, + ACTIONS(3488), 1, + anon_sym_DASH_GT, + STATE(1094), 1, + sym_block, + STATE(1794), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46352] = 4, - ACTIONS(2974), 1, + [46517] = 4, + ACTIONS(2962), 1, anon_sym_COLON_COLON, - ACTIONS(3231), 1, + ACTIONS(3285), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 4, + ACTIONS(1996), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_PLUS, - [46369] = 7, - ACTIONS(3249), 1, + [46534] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3313), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3526), 1, + ACTIONS(3490), 1, anon_sym_SEMI, - STATE(1129), 1, + STATE(335), 1, sym_declaration_list, - STATE(1684), 1, + STATE(1678), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46392] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3289), 1, + [46557] = 7, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3528), 1, + ACTIONS(3492), 1, anon_sym_SEMI, - STATE(352), 1, - sym_declaration_list, - STATE(1661), 1, + STATE(1167), 1, + sym_block, + STATE(1562), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46415] = 7, - ACTIONS(3037), 1, + [46580] = 7, + ACTIONS(3023), 1, anon_sym_COMMA, - ACTIONS(3039), 1, + ACTIONS(3025), 1, anon_sym_EQ, - ACTIONS(3041), 1, + ACTIONS(3027), 1, anon_sym_GT, - ACTIONS(3530), 1, + ACTIONS(3456), 1, anon_sym_COLON, - STATE(1621), 1, + STATE(1654), 1, sym_trait_bounds, - STATE(1622), 1, + STATE(1658), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46438] = 4, - ACTIONS(2974), 1, - anon_sym_COLON_COLON, - ACTIONS(3285), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2011), 4, - anon_sym_SEMI, + [46603] = 7, + ACTIONS(1797), 1, anon_sym_LBRACE, + ACTIONS(3243), 1, anon_sym_where, - anon_sym_PLUS, - [46455] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3532), 1, + ACTIONS(3494), 1, anon_sym_SEMI, - STATE(1113), 1, + ACTIONS(3496), 1, + anon_sym_DASH_GT, + STATE(1036), 1, sym_block, - STATE(1687), 1, + STATE(1561), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46478] = 7, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2769), 1, + [46626] = 7, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3245), 1, + anon_sym_LT, + ACTIONS(3498), 1, anon_sym_LBRACE, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_STAR, - STATE(985), 1, - sym_type_arguments, - STATE(1697), 1, - sym_use_list, + STATE(999), 1, + sym_enum_variant_list, + STATE(1498), 1, + sym_type_parameters, + STATE(1839), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46501] = 4, - ACTIONS(3534), 1, + [46649] = 5, + ACTIONS(2024), 1, + anon_sym_LBRACE, + ACTIONS(3500), 1, anon_sym_COLON_COLON, + STATE(726), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2011), 3, + ACTIONS(1996), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_PLUS, - [46518] = 7, - ACTIONS(3249), 1, + [46668] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3313), 1, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(3502), 1, + anon_sym_SEMI, + ACTIONS(3504), 1, + anon_sym_DASH_GT, + STATE(258), 1, + sym_block, + STATE(1789), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46691] = 7, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3536), 1, + ACTIONS(3506), 1, anon_sym_SEMI, - STATE(1035), 1, + STATE(391), 1, sym_declaration_list, - STATE(1756), 1, + STATE(1605), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46541] = 5, - ACTIONS(3442), 1, - anon_sym_COLON_COLON, + [46714] = 5, + ACTIONS(3508), 1, + anon_sym_COLON, ACTIONS(3512), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3510), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [46733] = 5, + ACTIONS(3508), 1, anon_sym_COLON, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3514), 2, + ACTIONS(3510), 2, anon_sym_RPAREN, anon_sym_COMMA, - [46560] = 4, - ACTIONS(3450), 1, - anon_sym_RBRACK, + [46752] = 4, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 2, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1996), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2075), 3, - anon_sym_SEMI, - anon_sym_DASH_GT, anon_sym_PLUS, - [46577] = 7, - ACTIONS(3249), 1, + [46769] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3287), 1, - anon_sym_COLON, - ACTIONS(3313), 1, + ACTIONS(3402), 1, anon_sym_LBRACE, - STATE(1108), 1, - sym_declaration_list, - STATE(1537), 1, - sym_trait_bounds, - STATE(1892), 1, + ACTIONS(3516), 1, + anon_sym_SEMI, + ACTIONS(3518), 1, + anon_sym_DASH_GT, + STATE(231), 1, + sym_block, + STATE(1566), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46600] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, + [46792] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3538), 1, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(3520), 1, anon_sym_SEMI, - ACTIONS(3540), 1, + ACTIONS(3522), 1, anon_sym_DASH_GT, - STATE(1008), 1, + STATE(287), 1, sym_block, - STATE(1796), 1, + STATE(1751), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46623] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3313), 1, + [46815] = 7, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3542), 1, + ACTIONS(3524), 1, anon_sym_SEMI, - STATE(1010), 1, - sym_declaration_list, - STATE(1809), 1, + STATE(1169), 1, + sym_block, + STATE(1617), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46646] = 4, - ACTIONS(2974), 1, + [46838] = 4, + ACTIONS(3512), 1, anon_sym_COLON_COLON, - ACTIONS(3219), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1996), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PLUS, - [46663] = 7, - ACTIONS(3249), 1, + [46855] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3287), 1, - anon_sym_COLON, - ACTIONS(3313), 1, + ACTIONS(3402), 1, anon_sym_LBRACE, - STATE(1040), 1, - sym_declaration_list, - STATE(1556), 1, - sym_trait_bounds, - STATE(1825), 1, + ACTIONS(3526), 1, + anon_sym_SEMI, + ACTIONS(3528), 1, + anon_sym_DASH_GT, + STATE(403), 1, + sym_block, + STATE(1659), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46686] = 7, - ACTIONS(3249), 1, + [46878] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3251), 1, - anon_sym_LT, - ACTIONS(3522), 1, + ACTIONS(3293), 1, + anon_sym_COLON, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(1046), 1, - sym_enum_variant_list, - STATE(1488), 1, - sym_type_parameters, - STATE(1835), 1, + STATE(1149), 1, + sym_declaration_list, + STATE(1529), 1, + sym_trait_bounds, + STATE(1891), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46709] = 7, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3544), 1, - anon_sym_RBRACE, - STATE(1939), 1, - sym_storage_content, - STATE(2124), 1, - sym_field_declaration, - STATE(2126), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [46732] = 7, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(3249), 1, + [46901] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3546), 1, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3530), 1, anon_sym_SEMI, - ACTIONS(3548), 1, - anon_sym_DASH_GT, - STATE(1091), 1, + STATE(283), 1, sym_block, - STATE(1702), 1, + STATE(1696), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46755] = 4, - ACTIONS(3552), 1, - anon_sym_PLUS, - STATE(1368), 1, - aux_sym_trait_bounds_repeat1, + [46924] = 4, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3550), 4, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1996), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_COMMA, - [46772] = 7, - ACTIONS(3249), 1, + anon_sym_RBRACK, + anon_sym_PLUS, + [46941] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3287), 1, + ACTIONS(3293), 1, anon_sym_COLON, - ACTIONS(3289), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(232), 1, + STATE(1062), 1, sym_declaration_list, - STATE(1509), 1, + STATE(1488), 1, sym_trait_bounds, - STATE(1851), 1, + STATE(1823), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46795] = 6, - ACTIONS(3356), 1, - anon_sym_const, - ACTIONS(3554), 1, - sym_identifier, - ACTIONS(3556), 1, - sym_metavariable, - STATE(1511), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1749), 2, - sym_const_parameter, - sym_optional_type_parameter, - [46816] = 4, - ACTIONS(3558), 1, - anon_sym_PLUS, - STATE(1425), 1, - aux_sym_trait_bounds_repeat1, + [46964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3388), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_COMMA, - [46833] = 7, - ACTIONS(3039), 1, - anon_sym_EQ, - ACTIONS(3530), 1, + ACTIONS(3147), 2, anon_sym_COLON, - ACTIONS(3561), 1, + anon_sym_PIPE, + ACTIONS(2082), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3563), 1, - anon_sym_GT, - STATE(1621), 1, - sym_trait_bounds, - STATE(1804), 1, - aux_sym_type_parameters_repeat1, + anon_sym_DASH_GT, + anon_sym_PLUS, + [46979] = 5, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46856] = 6, - ACTIONS(2978), 1, - anon_sym_COLON_COLON, - ACTIONS(3565), 1, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3536), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_GT, - STATE(1641), 1, - aux_sym_type_parameters_repeat1, + [46998] = 5, + ACTIONS(2024), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + STATE(726), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 2, - anon_sym_as, + ACTIONS(1996), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PLUS, - [46877] = 7, - ACTIONS(3249), 1, + [47017] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3251), 1, + ACTIONS(3245), 1, anon_sym_LT, - ACTIONS(3569), 1, + ACTIONS(3498), 1, anon_sym_LBRACE, - STATE(273), 1, + STATE(1037), 1, sym_enum_variant_list, - STATE(1557), 1, + STATE(1497), 1, sym_type_parameters, - STATE(1972), 1, + STATE(1833), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46900] = 7, - ACTIONS(3249), 1, + [47040] = 6, + ACTIONS(3366), 1, + anon_sym_const, + ACTIONS(3542), 1, + sym_identifier, + ACTIONS(3544), 1, + sym_metavariable, + STATE(1494), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1746), 2, + sym_const_parameter, + sym_optional_type_parameter, + [47061] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3251), 1, - anon_sym_LT, - ACTIONS(3569), 1, + ACTIONS(3402), 1, anon_sym_LBRACE, - STATE(269), 1, - sym_enum_variant_list, - STATE(1564), 1, - sym_type_parameters, - STATE(1948), 1, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3546), 1, + anon_sym_SEMI, + STATE(361), 1, + sym_block, + STATE(1758), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46923] = 7, - ACTIONS(3249), 1, + [47084] = 7, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3313), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3571), 1, + ACTIONS(3548), 1, anon_sym_SEMI, - STATE(1073), 1, + STATE(1104), 1, sym_declaration_list, - STATE(1722), 1, + STATE(1753), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46946] = 7, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3313), 1, + [47107] = 7, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3573), 1, + ACTIONS(3550), 1, anon_sym_SEMI, - STATE(1069), 1, - sym_declaration_list, - STATE(1735), 1, + STATE(1106), 1, + sym_block, + STATE(1634), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46969] = 4, - ACTIONS(2974), 1, - anon_sym_COLON_COLON, - ACTIONS(3269), 1, - anon_sym_for, + [47130] = 7, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3552), 1, + anon_sym_SEMI, + ACTIONS(3554), 1, + anon_sym_DASH_GT, + STATE(1145), 1, + sym_block, + STATE(1589), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 4, - anon_sym_SEMI, + [47153] = 7, + ACTIONS(1797), 1, anon_sym_LBRACE, + ACTIONS(3243), 1, anon_sym_where, + ACTIONS(3404), 1, anon_sym_PLUS, - [46986] = 4, - ACTIONS(3440), 1, - anon_sym_PLUS, - STATE(1368), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(3556), 1, + anon_sym_SEMI, + STATE(1156), 1, + sym_block, + STATE(1685), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3550), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + [47176] = 7, + ACTIONS(3243), 1, anon_sym_where, - anon_sym_COMMA, - [47003] = 7, - ACTIONS(1816), 1, + ACTIONS(3402), 1, anon_sym_LBRACE, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3575), 1, + ACTIONS(3558), 1, anon_sym_SEMI, - ACTIONS(3577), 1, + ACTIONS(3560), 1, anon_sym_DASH_GT, - STATE(1064), 1, + STATE(339), 1, sym_block, - STATE(1745), 1, + STATE(1756), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47026] = 5, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(3579), 1, - anon_sym_COMMA, - STATE(1690), 1, - aux_sym_parameters_repeat1, + [47199] = 6, + ACTIONS(3364), 1, + sym_identifier, + ACTIONS(3366), 1, + anon_sym_const, + ACTIONS(3370), 1, + sym_metavariable, + STATE(1600), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 2, - anon_sym_COLON, - anon_sym_PIPE, - [47044] = 6, - ACTIONS(3581), 1, + STATE(1971), 2, + sym_const_parameter, + sym_optional_type_parameter, + [47220] = 7, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3562), 1, anon_sym_SEMI, - ACTIONS(3583), 1, - anon_sym_COLON, - ACTIONS(3585), 1, - anon_sym_EQ, - ACTIONS(3587), 1, - anon_sym_else, - ACTIONS(3589), 1, - anon_sym_PIPE, + STATE(1025), 1, + sym_declaration_list, + STATE(1698), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47064] = 6, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(3591), 1, - anon_sym_COLON, - ACTIONS(3593), 1, - anon_sym_RPAREN, - ACTIONS(3595), 1, + [47243] = 4, + ACTIONS(3476), 1, + anon_sym_PLUS, + STATE(1434), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3564), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, anon_sym_COMMA, - STATE(1739), 1, - aux_sym_tuple_pattern_repeat1, + [47260] = 7, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3566), 1, + anon_sym_SEMI, + STATE(377), 1, + sym_block, + STATE(1772), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47084] = 4, - ACTIONS(3597), 1, - anon_sym_RBRACK, + [47283] = 4, + ACTIONS(2962), 1, + anon_sym_COLON_COLON, + ACTIONS(3273), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2387), 2, + ACTIONS(1996), 4, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3075), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [47100] = 6, - ACTIONS(3289), 1, anon_sym_LBRACE, - ACTIONS(3600), 1, - anon_sym_SEMI, - ACTIONS(3602), 1, - anon_sym_SLASH, - STATE(285), 1, - sym_declaration_list, - STATE(1490), 1, - aux_sym_dep_item_repeat1, + anon_sym_where, + anon_sym_PLUS, + [47300] = 4, + ACTIONS(3568), 1, + anon_sym_PLUS, + STATE(1434), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47120] = 4, - ACTIONS(3604), 1, - anon_sym_POUND, + ACTIONS(3360), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_COMMA, + [47317] = 4, + ACTIONS(3573), 1, + anon_sym_as, + ACTIONS(3575), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 2, - anon_sym_pub, - sym_identifier, - STATE(1440), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [47136] = 6, - ACTIONS(3607), 1, - sym_identifier, - ACTIONS(3609), 1, + ACTIONS(3571), 3, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(1483), 1, - aux_sym_asm_block_repeat1, - STATE(1797), 1, - aux_sym_asm_content_repeat1, - STATE(1837), 1, - sym_asm_content, + anon_sym_COMMA, + [47333] = 4, + ACTIONS(3577), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47156] = 6, - ACTIONS(3607), 1, - sym_identifier, - ACTIONS(3611), 1, - anon_sym_RBRACE, - STATE(1441), 1, - aux_sym_asm_block_repeat1, - STATE(1797), 1, - aux_sym_asm_content_repeat1, - STATE(1837), 1, - sym_asm_content, + ACTIONS(2342), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3083), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [47349] = 6, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(2960), 1, + anon_sym_COLON_COLON, + ACTIONS(3580), 1, + anon_sym_COLON, + STATE(987), 1, + sym_type_arguments, + STATE(1569), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47176] = 4, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, + [47369] = 5, + ACTIONS(3025), 1, + anon_sym_EQ, + ACTIONS(3456), 1, + anon_sym_COLON, + STATE(1654), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3613), 2, + ACTIONS(3582), 2, + anon_sym_COMMA, + anon_sym_GT, + [47387] = 5, + ACTIONS(781), 1, anon_sym_RPAREN, + ACTIONS(3584), 1, anon_sym_COMMA, - [47192] = 6, - ACTIONS(3289), 1, + STATE(1695), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2944), 2, + anon_sym_COLON, + anon_sym_PIPE, + [47405] = 4, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(3602), 1, - anon_sym_SLASH, - ACTIONS(3615), 1, - anon_sym_SEMI, - STATE(276), 1, - sym_declaration_list, - STATE(1490), 1, - aux_sym_dep_item_repeat1, + STATE(1243), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47212] = 3, - ACTIONS(3617), 1, - anon_sym_EQ, + ACTIONS(2426), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [47421] = 4, + ACTIONS(3586), 1, + anon_sym_PLUS, + STATE(1449), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2123), 4, + ACTIONS(3474), 3, anon_sym_COMMA, - anon_sym_PLUS, + anon_sym_EQ, anon_sym_GT, - anon_sym_COLON_COLON, - [47226] = 4, - ACTIONS(2387), 1, + [47437] = 4, + ACTIONS(3588), 1, anon_sym_PLUS, + STATE(1449), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3597), 2, - anon_sym_RPAREN, + ACTIONS(3474), 3, anon_sym_COMMA, - [47242] = 4, - ACTIONS(3442), 1, + anon_sym_EQ, + anon_sym_GT, + [47453] = 4, + ACTIONS(3514), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3613), 2, + ACTIONS(3536), 2, anon_sym_RPAREN, anon_sym_COMMA, - [47258] = 5, - ACTIONS(3619), 1, - anon_sym_RPAREN, - ACTIONS(3622), 1, - anon_sym_COMMA, - STATE(1570), 1, - aux_sym_parameters_repeat1, + [47469] = 6, + ACTIONS(3590), 1, + sym_identifier, + ACTIONS(3592), 1, + anon_sym_RBRACE, + STATE(1462), 1, + aux_sym_asm_block_repeat1, + STATE(1615), 1, + aux_sym_asm_content_repeat1, + STATE(1962), 1, + sym_asm_content, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [47489] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 2, + ACTIONS(3083), 2, anon_sym_COLON, anon_sym_PIPE, - [47276] = 5, - ACTIONS(776), 1, + ACTIONS(2342), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS, + [47503] = 5, + ACTIONS(3594), 1, anon_sym_RPAREN, - ACTIONS(3625), 1, + ACTIONS(3596), 1, anon_sym_COMMA, - STATE(1620), 1, + STATE(1575), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 2, + ACTIONS(2944), 2, anon_sym_COLON, anon_sym_PIPE, - [47294] = 4, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3613), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [47310] = 6, - ACTIONS(3071), 1, + [47521] = 6, + ACTIONS(3135), 1, anon_sym_PIPE, - ACTIONS(3627), 1, + ACTIONS(3598), 1, anon_sym_SEMI, - ACTIONS(3629), 1, + ACTIONS(3600), 1, anon_sym_COLON, - ACTIONS(3631), 1, + ACTIONS(3602), 1, anon_sym_EQ, - ACTIONS(3633), 1, + ACTIONS(3604), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47330] = 4, - ACTIONS(3442), 1, - anon_sym_COLON_COLON, + [47541] = 3, + ACTIONS(3606), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3480), 2, - anon_sym_RPAREN, + ACTIONS(2106), 4, anon_sym_COMMA, - [47346] = 4, - ACTIONS(3508), 1, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COLON_COLON, + [47555] = 4, + ACTIONS(3586), 1, + anon_sym_PLUS, + STATE(1463), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3480), 2, - anon_sym_RPAREN, + ACTIONS(3564), 3, anon_sym_COMMA, - [47362] = 6, - ACTIONS(3289), 1, - anon_sym_LBRACE, - ACTIONS(3602), 1, - anon_sym_SLASH, - ACTIONS(3635), 1, + anon_sym_EQ, + anon_sym_GT, + [47571] = 6, + ACTIONS(3608), 1, anon_sym_SEMI, - STATE(257), 1, - sym_declaration_list, - STATE(1444), 1, - aux_sym_dep_item_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47382] = 5, - ACTIONS(3637), 1, - anon_sym_RPAREN, - ACTIONS(3639), 1, - anon_sym_COMMA, - STATE(1570), 1, - aux_sym_parameters_repeat1, + ACTIONS(3610), 1, + anon_sym_COLON, + ACTIONS(3612), 1, + anon_sym_EQ, + ACTIONS(3614), 1, + anon_sym_else, + ACTIONS(3616), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 2, - anon_sym_COLON, - anon_sym_PIPE, - [47400] = 4, - ACTIONS(3643), 1, + [47591] = 4, + ACTIONS(3573), 1, anon_sym_as, - ACTIONS(3645), 1, + ACTIONS(3618), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3641), 3, + ACTIONS(3571), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [47416] = 4, - ACTIONS(1816), 1, - anon_sym_LBRACE, - STATE(1236), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2429), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [47432] = 5, - ACTIONS(3647), 1, + [47607] = 5, + ACTIONS(773), 1, anon_sym_RPAREN, - ACTIONS(3649), 1, + ACTIONS(3620), 1, anon_sym_COMMA, - STATE(1755), 1, + STATE(1637), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 2, + ACTIONS(2944), 2, anon_sym_COLON, anon_sym_PIPE, - [47450] = 6, - ACTIONS(3607), 1, - sym_identifier, - ACTIONS(3651), 1, - anon_sym_RBRACE, - STATE(1483), 1, - aux_sym_asm_block_repeat1, - STATE(1797), 1, - aux_sym_asm_content_repeat1, - STATE(1837), 1, - sym_asm_content, + [47625] = 4, + ACTIONS(3624), 1, + anon_sym_as, + ACTIONS(3626), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47470] = 4, - ACTIONS(260), 1, + ACTIONS(3622), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [47641] = 4, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(668), 1, + STATE(713), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2429), 3, + ACTIONS(2426), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - [47486] = 3, + [47657] = 4, + ACTIONS(3512), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2387), 3, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3628), 2, anon_sym_RPAREN, anon_sym_COMMA, + [47673] = 4, + ACTIONS(2342), 1, anon_sym_PLUS, - [47500] = 4, - ACTIONS(3653), 1, - anon_sym_PLUS, - STATE(1482), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3550), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_GT, - [47516] = 4, - ACTIONS(3655), 1, - anon_sym_PLUS, - STATE(1482), 1, - aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3550), 3, + ACTIONS(3083), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3577), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_GT, - [47532] = 6, - ACTIONS(3313), 1, - anon_sym_LBRACE, - ACTIONS(3602), 1, - anon_sym_SLASH, - ACTIONS(3657), 1, - anon_sym_SEMI, - STATE(1054), 1, - sym_declaration_list, - STATE(1476), 1, - aux_sym_dep_item_repeat1, + [47689] = 4, + ACTIONS(3573), 1, + anon_sym_as, + ACTIONS(3630), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47552] = 6, - ACTIONS(3289), 1, - anon_sym_LBRACE, - ACTIONS(3602), 1, - anon_sym_SLASH, - ACTIONS(3659), 1, + ACTIONS(3571), 3, anon_sym_SEMI, - STATE(268), 1, - sym_declaration_list, - STATE(1439), 1, - aux_sym_dep_item_repeat1, + anon_sym_RBRACE, + anon_sym_COMMA, + [47705] = 6, + ACTIONS(3590), 1, + sym_identifier, + ACTIONS(3632), 1, + anon_sym_RBRACE, + STATE(1460), 1, + aux_sym_asm_block_repeat1, + STATE(1615), 1, + aux_sym_asm_content_repeat1, + STATE(1962), 1, + sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47572] = 4, - ACTIONS(3482), 1, + [47725] = 4, + ACTIONS(3538), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3480), 2, + ACTIONS(3628), 2, anon_sym_RPAREN, anon_sym_COMMA, - [47588] = 6, - ACTIONS(3607), 1, + [47741] = 6, + ACTIONS(3590), 1, sym_identifier, - ACTIONS(3661), 1, + ACTIONS(3634), 1, anon_sym_RBRACE, - STATE(1483), 1, + STATE(1467), 1, aux_sym_asm_block_repeat1, - STATE(1797), 1, + STATE(1615), 1, aux_sym_asm_content_repeat1, - STATE(1837), 1, + STATE(1962), 1, sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47608] = 5, - ACTIONS(3039), 1, - anon_sym_EQ, - ACTIONS(3530), 1, - anon_sym_COLON, - STATE(1621), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3663), 2, + [47761] = 5, + ACTIONS(3636), 1, + anon_sym_RPAREN, + ACTIONS(3638), 1, anon_sym_COMMA, - anon_sym_GT, - [47626] = 6, - ACTIONS(3313), 1, - anon_sym_LBRACE, - ACTIONS(3602), 1, - anon_sym_SLASH, - ACTIONS(3665), 1, - anon_sym_SEMI, - STATE(1093), 1, - sym_declaration_list, - STATE(1490), 1, - aux_sym_dep_item_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47646] = 6, - ACTIONS(3313), 1, - anon_sym_LBRACE, - ACTIONS(3602), 1, - anon_sym_SLASH, - ACTIONS(3667), 1, - anon_sym_SEMI, - STATE(1044), 1, - sym_declaration_list, - STATE(1469), 1, - aux_sym_dep_item_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47666] = 6, - ACTIONS(3607), 1, - sym_identifier, - ACTIONS(3669), 1, - anon_sym_RBRACE, - STATE(1459), 1, - aux_sym_asm_block_repeat1, - STATE(1797), 1, - aux_sym_asm_content_repeat1, - STATE(1837), 1, - sym_asm_content, + STATE(1719), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47686] = 6, - ACTIONS(3607), 1, + ACTIONS(2944), 2, + anon_sym_COLON, + anon_sym_PIPE, + [47779] = 6, + ACTIONS(3590), 1, sym_identifier, - ACTIONS(3671), 1, + ACTIONS(3640), 1, anon_sym_RBRACE, STATE(1467), 1, aux_sym_asm_block_repeat1, - STATE(1797), 1, + STATE(1615), 1, aux_sym_asm_content_repeat1, - STATE(1837), 1, + STATE(1962), 1, sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47706] = 6, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(3673), 1, - anon_sym_SEMI, - ACTIONS(3675), 1, - anon_sym_COLON, - ACTIONS(3677), 1, - anon_sym_EQ, - ACTIONS(3679), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47726] = 6, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3225), 1, - sym_identifier, - STATE(1939), 1, - sym_storage_content, - STATE(2124), 1, - sym_field_declaration, - STATE(2126), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47746] = 4, - ACTIONS(3643), 1, - anon_sym_as, - ACTIONS(3681), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3641), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [47762] = 6, - ACTIONS(3313), 1, - anon_sym_LBRACE, - ACTIONS(3602), 1, - anon_sym_SLASH, - ACTIONS(3683), 1, - anon_sym_SEMI, - STATE(1017), 1, - sym_declaration_list, - STATE(1490), 1, - aux_sym_dep_item_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47782] = 6, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(2972), 1, - anon_sym_COLON_COLON, - ACTIONS(3685), 1, - anon_sym_COLON, - STATE(983), 1, - sym_type_arguments, - STATE(1718), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47802] = 4, - ACTIONS(3643), 1, - anon_sym_as, - ACTIONS(3687), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3641), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [47818] = 4, - ACTIONS(3689), 1, + [47799] = 4, + ACTIONS(3642), 1, anon_sym_PLUS, - STATE(1479), 1, + STATE(1463), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3388), 3, + ACTIONS(3360), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_GT, - [47834] = 4, - ACTIONS(3694), 1, - anon_sym_as, - ACTIONS(3696), 1, - anon_sym_COLON_COLON, + [47815] = 5, + ACTIONS(3645), 1, + anon_sym_RPAREN, + ACTIONS(3648), 1, + anon_sym_COMMA, + STATE(1575), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3692), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [47850] = 6, - ACTIONS(3071), 1, + ACTIONS(2944), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3698), 1, + [47833] = 6, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(3651), 1, anon_sym_SEMI, - ACTIONS(3700), 1, + ACTIONS(3653), 1, anon_sym_COLON, - ACTIONS(3702), 1, + ACTIONS(3655), 1, anon_sym_EQ, - ACTIONS(3704), 1, + ACTIONS(3657), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47870] = 4, - ACTIONS(3655), 1, - anon_sym_PLUS, - STATE(1479), 1, - aux_sym_trait_bounds_repeat1, + [47853] = 6, + ACTIONS(3590), 1, + sym_identifier, + ACTIONS(3659), 1, + anon_sym_RBRACE, + STATE(1467), 1, + aux_sym_asm_block_repeat1, + STATE(1615), 1, + aux_sym_asm_content_repeat1, + STATE(1962), 1, + sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3438), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_GT, - [47886] = 6, - ACTIONS(3706), 1, + [47873] = 6, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3709), 1, + ACTIONS(3664), 1, anon_sym_RBRACE, - STATE(1483), 1, + STATE(1467), 1, aux_sym_asm_block_repeat1, - STATE(1797), 1, + STATE(1615), 1, aux_sym_asm_content_repeat1, - STATE(1837), 1, + STATE(1962), 1, sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47906] = 5, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3637), 1, - anon_sym_RPAREN, - ACTIONS(3639), 1, - anon_sym_COMMA, - STATE(1570), 1, - aux_sym_parameters_repeat1, + [47893] = 4, + ACTIONS(3512), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47923] = 5, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3711), 1, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3536), 2, anon_sym_RPAREN, - ACTIONS(3713), 1, anon_sym_COMMA, - STATE(1693), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [47909] = 6, + ACTIONS(3590), 1, + sym_identifier, + ACTIONS(3666), 1, + anon_sym_RBRACE, + STATE(1466), 1, + aux_sym_asm_block_repeat1, + STATE(1615), 1, + aux_sym_asm_content_repeat1, + STATE(1962), 1, + sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47940] = 5, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3715), 1, - anon_sym_RPAREN, - ACTIONS(3717), 1, - anon_sym_COMMA, - STATE(1802), 1, - aux_sym_tuple_type_repeat1, + [47929] = 4, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47957] = 5, - ACTIONS(3287), 1, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3536), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [47945] = 6, + ACTIONS(3135), 1, + anon_sym_PIPE, + ACTIONS(3668), 1, + anon_sym_SEMI, + ACTIONS(3670), 1, anon_sym_COLON, - ACTIONS(3289), 1, - anon_sym_LBRACE, - STATE(250), 1, - sym_declaration_list, - STATE(1960), 1, - sym_trait_bounds, + ACTIONS(3672), 1, + anon_sym_EQ, + ACTIONS(3674), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47974] = 5, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3522), 1, - anon_sym_LBRACE, - STATE(1096), 1, - sym_enum_variant_list, - STATE(1887), 1, - sym_where_clause, + [47965] = 4, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47991] = 5, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3313), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_declaration_list, - STATE(1891), 1, - sym_where_clause, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3628), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [47981] = 6, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(3676), 1, + anon_sym_COLON, + ACTIONS(3678), 1, + anon_sym_RPAREN, + ACTIONS(3680), 1, + anon_sym_COMMA, + STATE(1578), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48008] = 4, - ACTIONS(3721), 1, - anon_sym_SLASH, - STATE(1490), 1, - aux_sym_dep_item_repeat1, + [48001] = 4, + ACTIONS(3682), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3719), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [48023] = 3, - ACTIONS(3724), 1, + ACTIONS(1827), 2, + anon_sym_pub, + sym_identifier, + STATE(1474), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [48017] = 3, + ACTIONS(3685), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 3, + ACTIONS(1996), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PLUS, - [48036] = 5, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3289), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_declaration_list, - STATE(1874), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48053] = 5, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3522), 1, - anon_sym_LBRACE, - STATE(1012), 1, - sym_enum_variant_list, - STATE(1829), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48070] = 5, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3313), 1, - anon_sym_LBRACE, - STATE(1039), 1, - sym_declaration_list, - STATE(1824), 1, - sym_where_clause, + [48030] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48087] = 4, - ACTIONS(3726), 1, + ACTIONS(3687), 3, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1563), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2567), 2, - anon_sym_SEMI, + [48043] = 4, + ACTIONS(265), 1, anon_sym_LBRACE, - [48102] = 5, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT, - STATE(1421), 1, - sym_parameters, - STATE(1907), 1, - sym_type_parameters, + ACTIONS(3689), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48119] = 3, - ACTIONS(3416), 1, + STATE(749), 2, + sym_if_expression, + sym_block, + [48058] = 5, + ACTIONS(3691), 1, + anon_sym_COMMA, + ACTIONS(3693), 1, anon_sym_PLUS, + ACTIONS(3695), 1, + anon_sym_GT, + STATE(1702), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3728), 3, - anon_sym_RBRACE, + [48075] = 5, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3636), 1, + anon_sym_RPAREN, + ACTIONS(3638), 1, anon_sym_COMMA, - anon_sym_EQ, - [48132] = 5, - ACTIONS(3313), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3732), 1, - anon_sym_SEMI, - STATE(1014), 1, - sym_declaration_list, + STATE(1719), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48149] = 4, - ACTIONS(3734), 1, - anon_sym_DQUOTE, - STATE(1547), 1, - aux_sym_string_literal_repeat1, + [48092] = 5, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3697), 1, + anon_sym_SEMI, + ACTIONS(3699), 1, + anon_sym_EQ, + ACTIONS(3701), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3736), 2, - sym__string_content, - sym_escape_sequence, - [48164] = 4, - ACTIONS(3740), 1, + [48109] = 5, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(3703), 1, + anon_sym_RBRACK, + ACTIONS(3705), 1, anon_sym_COMMA, - STATE(1495), 1, - aux_sym_where_clause_repeat1, + STATE(1573), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3738), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [48179] = 4, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(3742), 1, + [48126] = 4, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3744), 2, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48141] = 3, + ACTIONS(3709), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1996), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS, + [48154] = 5, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(3711), 1, anon_sym_RPAREN, + ACTIONS(3713), 1, anon_sym_COMMA, - [48194] = 3, - ACTIONS(3746), 1, + STATE(1571), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48171] = 3, + ACTIONS(3715), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 3, + ACTIONS(3135), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [48207] = 5, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT, - STATE(1392), 1, - sym_parameters, - STATE(1982), 1, - sym_type_parameters, + [48184] = 5, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym_declaration_list, + STATE(1822), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48224] = 5, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3287), 1, - anon_sym_COLON, - STATE(975), 1, - sym_type_arguments, - STATE(1720), 1, - sym_trait_bounds, + [48201] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48241] = 5, - ACTIONS(3748), 1, + ACTIONS(2944), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3717), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3750), 1, - anon_sym_PLUS, - ACTIONS(3752), 1, - anon_sym_GT, - STATE(1707), 1, - aux_sym_type_arguments_repeat1, + [48214] = 5, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1091), 1, + sym_declaration_list, + STATE(1874), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48258] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, + [48231] = 3, + ACTIONS(3719), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3754), 3, + ACTIONS(1996), 3, + anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - [48271] = 5, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(3416), 1, anon_sym_PLUS, - ACTIONS(3579), 1, - anon_sym_COMMA, - STATE(1690), 1, - aux_sym_parameters_repeat1, + [48244] = 4, + ACTIONS(3721), 1, + anon_sym_DQUOTE, + STATE(1501), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48288] = 5, - ACTIONS(3416), 1, + ACTIONS(3723), 2, + sym__string_content, + sym_escape_sequence, + [48259] = 4, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3756), 1, - anon_sym_RPAREN, - ACTIONS(3758), 1, - anon_sym_COMMA, - STATE(1631), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3727), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48305] = 5, - ACTIONS(3249), 1, + ACTIONS(3725), 2, + anon_sym_RBRACE, + sym_identifier, + [48274] = 5, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3289), 1, + ACTIONS(3428), 1, anon_sym_LBRACE, - STATE(371), 1, - sym_declaration_list, - STATE(1962), 1, + STATE(320), 1, + sym_enum_variant_list, + STATE(1930), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48322] = 5, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3647), 1, - anon_sym_RPAREN, - ACTIONS(3649), 1, - anon_sym_COMMA, - STATE(1755), 1, - aux_sym_parameters_repeat1, + [48291] = 4, + ACTIONS(2968), 1, + anon_sym_COLON_COLON, + ACTIONS(3727), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48339] = 5, - ACTIONS(3760), 1, + ACTIONS(3725), 2, + anon_sym_RBRACE, + sym_identifier, + [48306] = 5, + ACTIONS(3729), 1, anon_sym_COMMA, - ACTIONS(3762), 1, + ACTIONS(3731), 1, anon_sym_EQ, - ACTIONS(3764), 1, + ACTIONS(3733), 1, anon_sym_GT, - STATE(1806), 1, + STATE(1776), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48356] = 5, - ACTIONS(3416), 1, + [48323] = 5, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3766), 1, + ACTIONS(3735), 1, anon_sym_RPAREN, - ACTIONS(3768), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - STATE(1607), 1, + STATE(1800), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48373] = 5, - ACTIONS(3750), 1, - anon_sym_PLUS, - ACTIONS(3770), 1, - anon_sym_COMMA, - ACTIONS(3772), 1, - anon_sym_GT, - STATE(1742), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48390] = 4, - ACTIONS(3774), 1, - anon_sym_DQUOTE, - STATE(1499), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3776), 2, - sym__string_content, - sym_escape_sequence, - [48405] = 5, - ACTIONS(3313), 1, - anon_sym_LBRACE, - ACTIONS(3778), 1, - sym_identifier, - ACTIONS(3780), 1, - anon_sym_SEMI, - STATE(1082), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48422] = 4, - ACTIONS(3784), 1, + [48340] = 4, + ACTIONS(3741), 1, anon_sym_fn, - STATE(1544), 1, + STATE(1528), 1, aux_sym_function_modifiers_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3782), 2, + ACTIONS(3739), 2, anon_sym_const, anon_sym_default, - [48437] = 5, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3786), 1, - anon_sym_SEMI, - ACTIONS(3788), 1, - anon_sym_EQ, - ACTIONS(3790), 1, - anon_sym_else, + [48355] = 5, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3498), 1, + anon_sym_LBRACE, + STATE(1120), 1, + sym_enum_variant_list, + STATE(1886), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48454] = 3, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, + [48372] = 5, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3498), 1, + anon_sym_LBRACE, + STATE(1090), 1, + sym_enum_variant_list, + STATE(1807), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 3, - anon_sym_RPAREN, + [48389] = 5, + ACTIONS(3743), 1, + anon_sym_COLON, + ACTIONS(3745), 1, anon_sym_COMMA, - anon_sym_PLUS, - [48467] = 5, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(3794), 1, - sym_identifier, - ACTIONS(3796), 1, - anon_sym_STAR, - STATE(1683), 1, - sym_use_list, + ACTIONS(3747), 1, + anon_sym_PIPE, + STATE(1629), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48484] = 4, - ACTIONS(2978), 1, - anon_sym_COLON_COLON, - ACTIONS(3800), 1, - anon_sym_SEMI, + [48406] = 5, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(346), 1, + sym_declaration_list, + STATE(1981), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 2, - anon_sym_RBRACE, - sym_identifier, - [48499] = 4, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3800), 1, - anon_sym_SEMI, + [48423] = 4, + ACTIONS(3749), 1, + anon_sym_DQUOTE, + STATE(1540), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 2, - anon_sym_RBRACE, - sym_identifier, - [48514] = 5, - ACTIONS(3416), 1, + ACTIONS(3751), 2, + sym__string_content, + sym_escape_sequence, + [48438] = 5, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3802), 1, - anon_sym_SEMI, - ACTIONS(3804), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_else, + ACTIONS(3753), 1, + anon_sym_RPAREN, + ACTIONS(3755), 1, + anon_sym_COMMA, + STATE(1797), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48531] = 4, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3808), 1, - anon_sym_COLON, + [48455] = 5, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1148), 1, + sym_declaration_list, + STATE(1890), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48546] = 5, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(3812), 1, - anon_sym_COMMA, - ACTIONS(3814), 1, - anon_sym_PIPE, - STATE(1668), 1, - aux_sym_closure_parameters_repeat1, + [48472] = 5, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(3245), 1, + anon_sym_LT, + STATE(1393), 1, + sym_parameters, + STATE(1871), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48563] = 5, - ACTIONS(3289), 1, + [48489] = 4, + ACTIONS(667), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, - sym_identifier, - ACTIONS(3818), 1, - anon_sym_SEMI, - STATE(294), 1, - sym_declaration_list, + ACTIONS(3757), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48580] = 5, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_STAR, - STATE(1697), 1, - sym_use_list, + STATE(213), 2, + sym_if_expression, + sym_block, + [48504] = 4, + ACTIONS(3759), 1, + anon_sym_DQUOTE, + STATE(1540), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48597] = 4, - ACTIONS(3822), 1, - anon_sym_SEMI, - ACTIONS(3824), 1, + ACTIONS(3751), 2, + sym__string_content, + sym_escape_sequence, + [48519] = 5, + ACTIONS(3293), 1, anon_sym_COLON, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(253), 1, + sym_declaration_list, + STATE(1867), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3820), 2, - anon_sym_RBRACE, - sym_identifier, - [48612] = 5, - ACTIONS(2058), 1, + [48536] = 5, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3245), 1, anon_sym_LT, - STATE(1387), 1, + STATE(1409), 1, sym_parameters, - STATE(1950), 1, + STATE(1810), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48629] = 3, + [48553] = 5, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3761), 1, + anon_sym_RPAREN, + ACTIONS(3763), 1, + anon_sym_COMMA, + STATE(1556), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3826), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [48642] = 5, - ACTIONS(776), 1, + [48570] = 5, + ACTIONS(773), 1, anon_sym_RPAREN, - ACTIONS(3416), 1, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3625), 1, + ACTIONS(3620), 1, anon_sym_COMMA, - STATE(1620), 1, + STATE(1637), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48659] = 3, - ACTIONS(2165), 1, - anon_sym_COLON_COLON, + [48587] = 5, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3765), 1, + anon_sym_RPAREN, + ACTIONS(3767), 1, + anon_sym_COMMA, + STATE(1648), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2429), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [48672] = 3, - ACTIONS(3828), 1, + [48604] = 3, + ACTIONS(3769), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 3, + ACTIONS(3450), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - [48685] = 5, - ACTIONS(3289), 1, + [48617] = 5, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3428), 1, anon_sym_LBRACE, - ACTIONS(3830), 1, - sym_identifier, - ACTIONS(3832), 1, + STATE(264), 1, + sym_enum_variant_list, + STATE(1924), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48634] = 4, + ACTIONS(3771), 1, + anon_sym_DQUOTE, + STATE(1506), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3773), 2, + sym__string_content, + sym_escape_sequence, + [48649] = 5, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3775), 1, anon_sym_SEMI, - STATE(411), 1, - sym_declaration_list, + ACTIONS(3777), 1, + anon_sym_EQ, + ACTIONS(3779), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48702] = 5, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT, - STATE(1366), 1, - sym_parameters, - STATE(1956), 1, - sym_type_parameters, + [48666] = 4, + ACTIONS(3781), 1, + anon_sym_DQUOTE, + STATE(1540), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48719] = 3, - ACTIONS(2982), 1, - anon_sym_COLON_COLON, + ACTIONS(3751), 2, + sym__string_content, + sym_escape_sequence, + [48681] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2429), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [48732] = 4, - ACTIONS(3175), 1, - anon_sym_POUND, - ACTIONS(3834), 1, + ACTIONS(2944), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3783), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [48694] = 3, + ACTIONS(3785), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1440), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [48747] = 5, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3313), 1, - anon_sym_LBRACE, - STATE(1190), 1, - sym_declaration_list, - STATE(1921), 1, - sym_where_clause, + ACTIONS(3450), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [48707] = 4, + ACTIONS(3787), 1, + anon_sym_DQUOTE, + STATE(1516), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48764] = 4, - ACTIONS(260), 1, - anon_sym_LBRACE, - ACTIONS(3836), 1, - anon_sym_if, + ACTIONS(3789), 2, + sym__string_content, + sym_escape_sequence, + [48722] = 5, + ACTIONS(3434), 1, + anon_sym_COMMA, + ACTIONS(3436), 1, + anon_sym_GT, + ACTIONS(3731), 1, + anon_sym_EQ, + STATE(1669), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(713), 2, - sym_if_expression, - sym_block, - [48779] = 5, - ACTIONS(3416), 1, + [48739] = 5, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(3838), 1, + ACTIONS(3791), 1, anon_sym_SEMI, - ACTIONS(3840), 1, + ACTIONS(3793), 1, anon_sym_EQ, - ACTIONS(3842), 1, + ACTIONS(3795), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48796] = 5, - ACTIONS(2058), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT, - STATE(1415), 1, - sym_parameters, - STATE(1813), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48813] = 5, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3844), 1, - anon_sym_RPAREN, - ACTIONS(3846), 1, + [48756] = 4, + ACTIONS(3799), 1, anon_sym_COMMA, - STATE(1788), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1522), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48830] = 5, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3289), 1, + ACTIONS(3797), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(305), 1, - sym_declaration_list, - STATE(1924), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48847] = 5, - ACTIONS(2058), 1, + [48771] = 5, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3245), 1, anon_sym_LT, - STATE(1356), 1, + STATE(1362), 1, sym_parameters, - STATE(1975), 1, + STATE(1894), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48864] = 4, - ACTIONS(3851), 1, - anon_sym_fn, - STATE(1544), 1, - aux_sym_function_modifiers_repeat1, + [48788] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3848), 2, - anon_sym_const, - anon_sym_default, - [48879] = 5, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(3593), 1, - anon_sym_RPAREN, - ACTIONS(3595), 1, + ACTIONS(3802), 3, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1739), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_EQ, + [48801] = 3, + ACTIONS(2966), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48896] = 3, - ACTIONS(3853), 1, + ACTIONS(2426), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [48814] = 3, + ACTIONS(3804), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 3, + ACTIONS(3450), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - [48909] = 4, - ACTIONS(3855), 1, - anon_sym_DQUOTE, - STATE(1547), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3857), 2, - sym__string_content, - sym_escape_sequence, - [48924] = 4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - STATE(1552), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3862), 2, - sym__string_content, - sym_escape_sequence, - [48939] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3864), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [48952] = 5, - ACTIONS(3249), 1, + [48827] = 5, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3289), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(274), 1, sym_declaration_list, - STATE(1900), 1, + STATE(1955), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48969] = 3, - ACTIONS(3866), 1, - sym_identifier, + [48844] = 4, + ACTIONS(3809), 1, + anon_sym_fn, + STATE(1528), 1, + aux_sym_function_modifiers_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 3, + ACTIONS(3806), 2, anon_sym_const, anon_sym_default, - anon_sym_fn, - [48982] = 4, - ACTIONS(3868), 1, - anon_sym_DQUOTE, - STATE(1547), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 2, - sym__string_content, - sym_escape_sequence, - [48997] = 5, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(3870), 1, - anon_sym_RPAREN, - ACTIONS(3872), 1, - anon_sym_COMMA, - STATE(1783), 1, - aux_sym_tuple_pattern_repeat1, + [48859] = 5, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1150), 1, + sym_declaration_list, + STATE(1921), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49014] = 4, - ACTIONS(3874), 1, - anon_sym_DQUOTE, - STATE(1565), 1, - aux_sym_string_literal_repeat1, + [48876] = 5, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(3811), 1, + sym_identifier, + ACTIONS(3813), 1, + anon_sym_STAR, + STATE(1572), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3876), 2, - sym__string_content, - sym_escape_sequence, - [49029] = 3, - ACTIONS(3878), 1, - sym_identifier, + [48893] = 3, + ACTIONS(2128), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 3, + ACTIONS(2426), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - [49042] = 5, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3313), 1, + [48906] = 5, + ACTIONS(2578), 1, anon_sym_LBRACE, - STATE(1086), 1, - sym_declaration_list, - STATE(1876), 1, - sym_where_clause, + ACTIONS(3408), 1, + sym_identifier, + ACTIONS(3410), 1, + anon_sym_STAR, + STATE(1760), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49059] = 5, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(231), 1, - sym_enum_variant_list, - STATE(1893), 1, - sym_where_clause, + [48923] = 5, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(3245), 1, + anon_sym_LT, + STATE(1396), 1, + sym_parameters, + STATE(1923), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49076] = 4, + [48940] = 4, ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(3880), 1, + ACTIONS(3815), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(80), 2, + STATE(77), 2, sym_if_expression, sym_block, - [49091] = 3, + [48955] = 4, + ACTIONS(3819), 1, + anon_sym_SEMI, + ACTIONS(3821), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 2, - anon_sym_COLON, + ACTIONS(3817), 2, + anon_sym_RBRACE, + sym_identifier, + [48970] = 4, + ACTIONS(3616), 1, anon_sym_PIPE, - ACTIONS(3882), 2, + ACTIONS(3823), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3825), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [48985] = 5, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(313), 1, + sym_declaration_list, + STATE(1918), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [49002] = 5, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3827), 1, anon_sym_RPAREN, + ACTIONS(3829), 1, anon_sym_COMMA, - [49104] = 5, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(3884), 1, - anon_sym_SEMI, - ACTIONS(3886), 1, - anon_sym_EQ, - ACTIONS(3888), 1, - anon_sym_else, + STATE(1718), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49121] = 4, - ACTIONS(3482), 1, + [49019] = 4, + ACTIONS(3538), 1, anon_sym_COLON_COLON, - ACTIONS(3890), 1, + ACTIONS(3831), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, + ACTIONS(2954), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49136] = 4, - ACTIONS(662), 1, - anon_sym_LBRACE, - ACTIONS(3892), 1, - anon_sym_if, + [49034] = 4, + ACTIONS(3833), 1, + anon_sym_DQUOTE, + STATE(1540), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(223), 2, - sym_if_expression, - sym_block, - [49151] = 4, - ACTIONS(3896), 1, + ACTIONS(3835), 2, + sym__string_content, + sym_escape_sequence, + [49049] = 5, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(3245), 1, + anon_sym_LT, + STATE(1428), 1, + sym_parameters, + STATE(1926), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [49066] = 4, + ACTIONS(3195), 1, + anon_sym_POUND, + ACTIONS(3838), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1474), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [49081] = 5, + ACTIONS(3693), 1, + anon_sym_PLUS, + ACTIONS(3840), 1, anon_sym_COMMA, - STATE(1563), 1, - aux_sym_where_clause_repeat1, + ACTIONS(3842), 1, + anon_sym_GT, + STATE(1583), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3894), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [49166] = 5, - ACTIONS(3249), 1, + [49098] = 5, + ACTIONS(3243), 1, anon_sym_where, - ACTIONS(3569), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(261), 1, - sym_enum_variant_list, - STATE(1949), 1, + STATE(319), 1, + sym_declaration_list, + STATE(1849), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49183] = 4, - ACTIONS(3899), 1, - anon_sym_DQUOTE, - STATE(1547), 1, - aux_sym_string_literal_repeat1, + [49115] = 5, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(3245), 1, + anon_sym_LT, + STATE(1373), 1, + sym_parameters, + STATE(1965), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3736), 2, - sym__string_content, - sym_escape_sequence, - [49198] = 5, - ACTIONS(3565), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_GT, - ACTIONS(3762), 1, + [49132] = 5, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3844), 1, + anon_sym_SEMI, + ACTIONS(3846), 1, anon_sym_EQ, - STATE(1641), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3848), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49215] = 3, - ACTIONS(3901), 1, - anon_sym_COLON_COLON, + [49149] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(3850), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + [49162] = 5, + ACTIONS(3404), 1, anon_sym_PLUS, - [49228] = 5, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(3903), 1, - anon_sym_RBRACK, - ACTIONS(3905), 1, + ACTIONS(3594), 1, + anon_sym_RPAREN, + ACTIONS(3596), 1, anon_sym_COMMA, - STATE(1656), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1575), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49245] = 4, - ACTIONS(3907), 1, + [49179] = 4, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(1569), 1, + STATE(1554), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3852), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [49194] = 4, + ACTIONS(3856), 1, + anon_sym_COMMA, + STATE(1550), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3754), 2, + ACTIONS(3687), 2, anon_sym_RBRACK, anon_sym_RPAREN, - [49260] = 4, - ACTIONS(776), 1, + [49209] = 5, + ACTIONS(781), 1, anon_sym_RPAREN, - ACTIONS(3625), 1, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3584), 1, anon_sym_COMMA, - STATE(1592), 1, + STATE(1695), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49274] = 4, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(3910), 1, - anon_sym_SEMI, - STATE(359), 1, - sym_block, + [49226] = 3, + ACTIONS(3859), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49288] = 4, - ACTIONS(3912), 1, - anon_sym_RBRACE, - ACTIONS(3914), 1, - anon_sym_COMMA, - STATE(1613), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3450), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [49239] = 5, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3293), 1, + anon_sym_COLON, + STATE(989), 1, + sym_type_arguments, + STATE(1570), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49302] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, + [49256] = 4, + ACTIONS(3861), 1, + anon_sym_COMMA, + STATE(1522), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3916), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49314] = 4, - ACTIONS(3637), 1, + ACTIONS(2502), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [49271] = 5, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(3678), 1, anon_sym_RPAREN, - ACTIONS(3639), 1, + ACTIONS(3680), 1, anon_sym_COMMA, - STATE(1570), 1, - aux_sym_parameters_repeat1, + STATE(1578), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49328] = 4, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3918), 1, - anon_sym_SEMI, - STATE(2088), 1, - sym_where_clause, + [49288] = 4, + ACTIONS(3863), 1, + anon_sym_RPAREN, + ACTIONS(3865), 1, + anon_sym_COMMA, + STATE(1730), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49342] = 4, - ACTIONS(3289), 1, + [49302] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, + ACTIONS(3867), 1, anon_sym_SEMI, - STATE(292), 1, + STATE(388), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49356] = 3, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, + [49316] = 4, + ACTIONS(3869), 1, + anon_sym_RBRACE, + ACTIONS(3871), 1, + anon_sym_COMMA, + STATE(1581), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49368] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3922), 1, - sym_identifier, - STATE(985), 1, - sym_type_arguments, + [49330] = 3, + ACTIONS(3873), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49382] = 4, - ACTIONS(3924), 1, - anon_sym_LBRACE, - ACTIONS(3926), 1, - anon_sym_DOT, - STATE(383), 1, - sym_storage_content_list, + ACTIONS(3875), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [49342] = 4, + ACTIONS(3877), 1, + anon_sym_RBRACE, + ACTIONS(3879), 1, + anon_sym_COMMA, + STATE(1560), 1, + aux_sym_storage_content_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49396] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3922), 1, - sym_identifier, - STATE(996), 1, - sym_type_arguments, + [49356] = 4, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(3882), 1, + anon_sym_SEMI, + STATE(1028), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49410] = 2, + [49370] = 4, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(3884), 1, + anon_sym_SEMI, + STATE(1063), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3928), 3, - anon_sym_SEMI, + [49384] = 4, + ACTIONS(3299), 1, anon_sym_RBRACE, + ACTIONS(3886), 1, anon_sym_COMMA, - [49420] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3930), 1, - sym_identifier, - STATE(985), 1, - sym_type_arguments, + STATE(1680), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49434] = 4, - ACTIONS(3748), 1, - anon_sym_COMMA, - ACTIONS(3752), 1, - anon_sym_GT, - STATE(1707), 1, - aux_sym_type_arguments_repeat1, + [49398] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49448] = 3, - ACTIONS(3442), 1, - anon_sym_COLON_COLON, + ACTIONS(2643), 3, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + [49408] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49460] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3930), 1, - sym_identifier, - STATE(996), 1, - sym_type_arguments, + ACTIONS(2739), 3, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + [49418] = 4, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(3888), 1, + anon_sym_SEMI, + STATE(405), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49474] = 3, - ACTIONS(3750), 1, - anon_sym_PLUS, + [49432] = 3, + ACTIONS(3890), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3932), 2, + ACTIONS(3892), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [49486] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3934), 2, + [49444] = 4, + ACTIONS(3299), 1, anon_sym_RBRACE, + ACTIONS(3886), 1, anon_sym_COMMA, - [49498] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, + STATE(1681), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3826), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49510] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3518), 1, - sym_identifier, - STATE(985), 1, - sym_type_arguments, + [49458] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49524] = 4, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(3936), 1, + ACTIONS(3894), 3, anon_sym_SEMI, - STATE(357), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [49538] = 4, - ACTIONS(3938), 1, - anon_sym_RBRACE, - ACTIONS(3940), 1, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1655), 1, - aux_sym_struct_pattern_repeat1, + [49468] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49552] = 4, - ACTIONS(3826), 1, + ACTIONS(3896), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [49478] = 4, + ACTIONS(1765), 1, anon_sym_RPAREN, - ACTIONS(3942), 1, + ACTIONS(3898), 1, anon_sym_COMMA, - STATE(1592), 1, - aux_sym_parameters_repeat1, + STATE(1550), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49566] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, + [49492] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3882), 2, - anon_sym_RPAREN, + ACTIONS(3900), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [49578] = 4, - ACTIONS(3945), 1, + [49502] = 4, + ACTIONS(1763), 1, anon_sym_RBRACK, - ACTIONS(3947), 1, + ACTIONS(3902), 1, anon_sym_COMMA, - STATE(1647), 1, - aux_sym_attribute_item_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [49592] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, + STATE(1550), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3949), 2, - anon_sym_RBRACE, + [49516] = 4, + ACTIONS(781), 1, + anon_sym_RPAREN, + ACTIONS(3584), 1, anon_sym_COMMA, - [49604] = 2, + STATE(1695), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2725), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_EQ_GT, - [49614] = 4, - ACTIONS(3947), 1, + [49530] = 4, + ACTIONS(781), 1, + anon_sym_RPAREN, + ACTIONS(3584), 1, anon_sym_COMMA, - ACTIONS(3951), 1, - anon_sym_RBRACK, - STATE(1594), 1, - aux_sym_attribute_item_repeat1, + STATE(1693), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49628] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3953), 1, - sym_identifier, - STATE(985), 1, - sym_type_arguments, + [49544] = 4, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(3904), 1, + anon_sym_SEMI, + STATE(1075), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49642] = 4, - ACTIONS(3955), 1, + [49558] = 4, + ACTIONS(3594), 1, + anon_sym_RPAREN, + ACTIONS(3596), 1, anon_sym_COMMA, - ACTIONS(3958), 1, - anon_sym_GT, - STATE(1599), 1, - aux_sym_type_arguments_repeat1, + STATE(1575), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49656] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3518), 1, - sym_identifier, - STATE(996), 1, - sym_type_arguments, + [49572] = 4, + ACTIONS(1767), 1, + anon_sym_RPAREN, + ACTIONS(3906), 1, + anon_sym_COMMA, + STATE(1550), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49670] = 4, - ACTIONS(2065), 1, + [49586] = 4, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(3953), 1, + ACTIONS(3908), 1, sym_identifier, - STATE(996), 1, + STATE(1135), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49684] = 3, - ACTIONS(3960), 1, + [49600] = 3, + ACTIONS(3910), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3962), 2, + ACTIONS(3912), 2, anon_sym_RBRACE, anon_sym_COMMA, - [49696] = 4, - ACTIONS(3947), 1, + [49612] = 4, + ACTIONS(3309), 1, + anon_sym_RBRACE, + ACTIONS(3914), 1, anon_sym_COMMA, - ACTIONS(3964), 1, - anon_sym_RBRACK, - STATE(1647), 1, - aux_sym_attribute_item_repeat1, + STATE(1704), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49710] = 4, - ACTIONS(2787), 1, - anon_sym_RBRACE, - ACTIONS(3966), 1, - anon_sym_COMMA, - STATE(1696), 1, - aux_sym_use_list_repeat1, + [49626] = 4, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(3916), 1, + anon_sym_SEMI, + STATE(1170), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49724] = 4, - ACTIONS(3947), 1, + [49640] = 4, + ACTIONS(1807), 1, + anon_sym_GT, + ACTIONS(3918), 1, anon_sym_COMMA, - ACTIONS(3968), 1, - anon_sym_RBRACK, - STATE(1603), 1, - aux_sym_attribute_item_repeat1, + STATE(1709), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49738] = 4, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(3970), 1, - anon_sym_SEMI, - STATE(391), 1, - sym_block, + [49654] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49752] = 4, - ACTIONS(1983), 1, + ACTIONS(3920), 2, anon_sym_RPAREN, - ACTIONS(3972), 1, anon_sym_COMMA, - STATE(1727), 1, - aux_sym_tuple_type_repeat1, + [49666] = 4, + ACTIONS(3315), 1, + anon_sym_RBRACE, + ACTIONS(3922), 1, + anon_sym_COMMA, + STATE(1704), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49766] = 4, - ACTIONS(2065), 1, + [49680] = 4, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(3974), 1, + ACTIONS(3924), 1, sym_identifier, - STATE(985), 1, + STATE(1082), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49780] = 3, - ACTIONS(3416), 1, + [49694] = 3, + ACTIONS(3404), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2569), 2, + ACTIONS(3926), 2, anon_sym_RPAREN, anon_sym_COMMA, - [49792] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(3974), 1, - sym_identifier, - STATE(996), 1, - sym_type_arguments, + [49706] = 4, + ACTIONS(2962), 1, + anon_sym_COLON_COLON, + ACTIONS(3580), 1, + anon_sym_COLON, + STATE(1570), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49806] = 4, - ACTIONS(2723), 1, - anon_sym_RPAREN, - ACTIONS(3976), 1, - anon_sym_COMMA, - STATE(1611), 1, - aux_sym_arguments_repeat1, + [49720] = 4, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(3928), 1, + anon_sym_SEMI, + STATE(1161), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49820] = 4, - ACTIONS(3221), 1, - anon_sym_RBRACE, - ACTIONS(3979), 1, - anon_sym_COMMA, - STATE(1810), 1, - aux_sym_field_initializer_list_repeat1, + [49734] = 4, + ACTIONS(2966), 1, + anon_sym_COLON_COLON, + ACTIONS(3580), 1, + anon_sym_COLON, + STATE(1570), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49834] = 4, - ACTIONS(3336), 1, - anon_sym_RBRACE, - ACTIONS(3981), 1, - anon_sym_COMMA, - STATE(1758), 1, - aux_sym_struct_pattern_repeat1, + [49748] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3924), 1, + sym_identifier, + STATE(1135), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49848] = 4, - ACTIONS(3983), 1, - anon_sym_RBRACE, - ACTIONS(3985), 1, + [49762] = 4, + ACTIONS(3926), 1, + anon_sym_RPAREN, + ACTIONS(3930), 1, anon_sym_COMMA, - STATE(1774), 1, - aux_sym_storage_content_list_repeat1, + STATE(1592), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49862] = 4, - ACTIONS(2065), 1, + [49776] = 4, + ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(3213), 1, - anon_sym_LBRACE, - STATE(975), 1, + ACTIONS(3933), 1, + sym_identifier, + STATE(665), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49876] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3987), 3, - anon_sym_SEMI, + [49790] = 4, + ACTIONS(3935), 1, anon_sym_RBRACE, + ACTIONS(3937), 1, anon_sym_COMMA, - [49886] = 4, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(3989), 1, - anon_sym_SEMI, - STATE(2118), 1, - sym_where_clause, + STATE(1563), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49900] = 4, - ACTIONS(1997), 1, - anon_sym_LT2, - ACTIONS(3991), 1, - sym_identifier, - STATE(632), 1, - sym_type_arguments, + [49804] = 3, + ACTIONS(3939), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49914] = 4, - ACTIONS(1997), 1, + ACTIONS(3941), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [49816] = 4, + ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(3991), 1, + ACTIONS(3933), 1, sym_identifier, - STATE(628), 1, + STATE(642), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49928] = 4, - ACTIONS(774), 1, - anon_sym_RPAREN, - ACTIONS(3993), 1, - anon_sym_COMMA, - STATE(1592), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [49942] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3995), 3, - anon_sym_COMMA, + [49830] = 4, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3943), 1, + anon_sym_SEMI, + ACTIONS(3945), 1, anon_sym_EQ, - anon_sym_GT, - [49952] = 4, - ACTIONS(3380), 1, - anon_sym_GT, - ACTIONS(3997), 1, - anon_sym_COMMA, - STATE(1678), 1, - aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49966] = 4, - ACTIONS(3289), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_SEMI, - STATE(302), 1, - sym_declaration_list, + [49844] = 4, + ACTIONS(3317), 1, + anon_sym_RBRACE, + ACTIONS(3947), 1, + anon_sym_COMMA, + STATE(1732), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49980] = 4, - ACTIONS(452), 1, - anon_sym_RPAREN, - ACTIONS(4001), 1, - anon_sym_COMMA, - STATE(1611), 1, - aux_sym_arguments_repeat1, + [49858] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3908), 1, + sym_identifier, + STATE(1082), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49994] = 3, - ACTIONS(4003), 1, - anon_sym_COLON, + [49872] = 3, + ACTIONS(3731), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4005), 2, + ACTIONS(3949), 2, + anon_sym_COMMA, + anon_sym_GT, + [49884] = 4, + ACTIONS(3277), 1, anon_sym_RBRACE, + ACTIONS(3951), 1, anon_sym_COMMA, - [50006] = 3, - ACTIONS(4007), 1, - anon_sym_COLON, + STATE(1560), 1, + aux_sym_storage_content_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4009), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [50018] = 4, - ACTIONS(3947), 1, - anon_sym_COMMA, - ACTIONS(4011), 1, - anon_sym_RBRACK, - STATE(1647), 1, - aux_sym_attribute_item_repeat1, + [49898] = 3, + ACTIONS(3693), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50032] = 4, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(4013), 1, - sym_identifier, - STATE(730), 1, - sym_arguments, + ACTIONS(3953), 2, + anon_sym_COMMA, + anon_sym_GT, + [49910] = 4, + ACTIONS(3949), 1, + anon_sym_GT, + ACTIONS(3955), 1, + anon_sym_COMMA, + STATE(1603), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50046] = 3, - ACTIONS(3750), 1, + [49924] = 3, + ACTIONS(3693), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, @@ -96498,4302 +98938,4601 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3958), 2, anon_sym_COMMA, anon_sym_GT, - [50058] = 4, - ACTIONS(4015), 1, - anon_sym_RPAREN, - ACTIONS(4017), 1, - anon_sym_COMMA, - STATE(1630), 1, - aux_sym_asm_parameters_repeat1, + [49936] = 4, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3960), 1, + anon_sym_SEMI, + STATE(250), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50072] = 4, - ACTIONS(4020), 1, - anon_sym_RPAREN, - ACTIONS(4022), 1, - anon_sym_COMMA, - STATE(1736), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [49950] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3962), 1, + anon_sym_SEMI, + STATE(1128), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50086] = 4, - ACTIONS(3947), 1, + [49964] = 4, + ACTIONS(541), 1, + anon_sym_RPAREN, + ACTIONS(2604), 1, anon_sym_COMMA, - ACTIONS(4024), 1, - anon_sym_RBRACK, - STATE(1627), 1, - aux_sym_attribute_item_repeat1, + STATE(1624), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50100] = 4, - ACTIONS(1997), 1, - anon_sym_LT2, - ACTIONS(3953), 1, - sym_identifier, - STATE(653), 1, - sym_type_arguments, + [49978] = 4, + ACTIONS(665), 1, + anon_sym_RBRACK, + ACTIONS(3964), 1, + anon_sym_COMMA, + STATE(1609), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50114] = 4, - ACTIONS(654), 1, + [49992] = 4, + ACTIONS(2741), 1, anon_sym_RBRACK, - ACTIONS(2541), 1, + ACTIONS(3966), 1, anon_sym_COMMA, - STATE(1790), 1, + STATE(1609), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50128] = 4, - ACTIONS(1997), 1, - anon_sym_LT2, - ACTIONS(3953), 1, - sym_identifier, - STATE(629), 1, - sym_type_arguments, + [50006] = 4, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, + anon_sym_PLUS, + STATE(718), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50142] = 4, - ACTIONS(3406), 1, + [50020] = 4, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(4026), 1, + ACTIONS(3969), 1, anon_sym_SEMI, - STATE(262), 1, - sym_block, + STATE(1124), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50156] = 2, + [50034] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(3971), 1, + sym_identifier, + STATE(665), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4028), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [50166] = 4, - ACTIONS(4030), 1, - anon_sym_RBRACE, - ACTIONS(4032), 1, - anon_sym_COMMA, - STATE(1770), 1, - aux_sym_field_declaration_list_repeat1, + [50048] = 4, + ACTIONS(3245), 1, + anon_sym_LT, + ACTIONS(3973), 1, + anon_sym_EQ, + STATE(2010), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50180] = 4, - ACTIONS(1816), 1, + [50062] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(4034), 1, + ACTIONS(3975), 1, anon_sym_SEMI, - STATE(1117), 1, - sym_block, + STATE(240), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50194] = 4, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(4036), 1, - anon_sym_SEMI, - STATE(1120), 1, - sym_block, + [50076] = 4, + ACTIONS(3590), 1, + sym_identifier, + ACTIONS(3977), 1, + anon_sym_RBRACE, + STATE(1660), 1, + aux_sym_asm_content_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50208] = 4, - ACTIONS(3390), 1, - anon_sym_GT, - ACTIONS(4038), 1, - anon_sym_COMMA, - STATE(1678), 1, - aux_sym_type_parameters_repeat1, + [50090] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3979), 1, + sym_identifier, + STATE(1135), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50222] = 4, - ACTIONS(1816), 1, + [50104] = 4, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(4040), 1, + ACTIONS(3981), 1, anon_sym_SEMI, - STATE(1126), 1, + STATE(1116), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50236] = 4, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(4042), 1, + [50118] = 4, + ACTIONS(3983), 1, anon_sym_SEMI, - STATE(2153), 1, - sym_where_clause, + ACTIONS(3985), 1, + anon_sym_COLON, + ACTIONS(3987), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50132] = 4, + ACTIONS(451), 1, + anon_sym_RPAREN, + ACTIONS(3989), 1, + anon_sym_COMMA, + STATE(1624), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50250] = 4, - ACTIONS(1997), 1, + [50146] = 4, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(4044), 1, + ACTIONS(3979), 1, sym_identifier, - STATE(632), 1, + STATE(1082), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50264] = 3, - ACTIONS(3750), 1, - anon_sym_PLUS, + [50160] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4046), 2, + ACTIONS(3991), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [50276] = 4, - ACTIONS(1816), 1, + [50170] = 4, + ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(4048), 1, - anon_sym_SEMI, - STATE(1132), 1, - sym_block, + ACTIONS(3993), 1, + sym_identifier, + STATE(1652), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50290] = 4, - ACTIONS(4050), 1, - anon_sym_RBRACK, - ACTIONS(4052), 1, - anon_sym_COMMA, - STATE(1647), 1, - aux_sym_attribute_item_repeat1, + [50184] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50304] = 4, - ACTIONS(3406), 1, + ACTIONS(2713), 3, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(4055), 1, - anon_sym_SEMI, - STATE(324), 1, - sym_block, + anon_sym_where, + [50194] = 4, + ACTIONS(2717), 1, + anon_sym_RPAREN, + ACTIONS(3995), 1, + anon_sym_COMMA, + STATE(1624), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50318] = 4, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_SEMI, - STATE(1136), 1, - sym_block, + [50208] = 4, + ACTIONS(3998), 1, + anon_sym_RBRACE, + ACTIONS(4000), 1, + anon_sym_COMMA, + STATE(1763), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50332] = 4, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(4059), 1, - anon_sym_SEMI, - STATE(1150), 1, - sym_block, + [50222] = 3, + ACTIONS(4002), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50346] = 2, + ACTIONS(4004), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [50234] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3894), 3, - anon_sym_SEMI, + ACTIONS(2685), 3, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_where, + [50244] = 4, + ACTIONS(3840), 1, anon_sym_COMMA, - [50356] = 4, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(4061), 1, - anon_sym_COLON_COLON, - STATE(694), 1, - sym_field_initializer_list, + ACTIONS(3842), 1, + anon_sym_GT, + STATE(1583), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50370] = 4, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(4063), 1, - anon_sym_SEMI, - STATE(375), 1, - sym_block, + [50258] = 4, + ACTIONS(3745), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + anon_sym_PIPE, + STATE(1727), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50384] = 4, - ACTIONS(3330), 1, - anon_sym_RBRACE, - ACTIONS(4065), 1, - anon_sym_COMMA, - STATE(1672), 1, - aux_sym_enum_variant_list_repeat2, + [50272] = 3, + ACTIONS(4008), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50398] = 4, - ACTIONS(3348), 1, - anon_sym_RBRACE, - ACTIONS(4067), 1, + ACTIONS(3135), 2, anon_sym_COMMA, - STATE(1758), 1, - aux_sym_struct_pattern_repeat1, + anon_sym_PIPE, + [50284] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(4010), 1, + sym_identifier, + STATE(1082), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50412] = 4, - ACTIONS(1778), 1, - anon_sym_RBRACK, - ACTIONS(4069), 1, + [50298] = 4, + ACTIONS(3434), 1, anon_sym_COMMA, - STATE(1569), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(3436), 1, + anon_sym_GT, + STATE(1669), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50312] = 4, + ACTIONS(3245), 1, + anon_sym_LT, + ACTIONS(4012), 1, + anon_sym_EQ, + STATE(2110), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50426] = 4, - ACTIONS(1816), 1, + [50326] = 4, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(4071), 1, + ACTIONS(4014), 1, anon_sym_SEMI, - STATE(1158), 1, + STATE(1067), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50440] = 3, - ACTIONS(3750), 1, - anon_sym_PLUS, + [50340] = 4, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4018), 1, + anon_sym_COMMA, + STATE(1585), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4073), 2, - anon_sym_COMMA, - anon_sym_GT, - [50452] = 4, - ACTIONS(1722), 1, + [50354] = 4, + ACTIONS(4020), 1, anon_sym_RPAREN, - ACTIONS(4075), 1, + ACTIONS(4022), 1, anon_sym_COMMA, - STATE(1630), 1, + STATE(1671), 1, aux_sym_asm_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50466] = 4, - ACTIONS(1997), 1, + [50368] = 4, + ACTIONS(779), 1, + anon_sym_RPAREN, + ACTIONS(4024), 1, + anon_sym_COMMA, + STATE(1693), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50382] = 4, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(4044), 1, + ACTIONS(4010), 1, sym_identifier, - STATE(628), 1, + STATE(1135), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50480] = 4, - ACTIONS(3289), 1, - anon_sym_LBRACE, - ACTIONS(4077), 1, - anon_sym_SEMI, - STATE(298), 1, - sym_declaration_list, + [50396] = 4, + ACTIONS(3324), 1, + anon_sym_RBRACE, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(1732), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50494] = 4, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(4079), 1, - anon_sym_SEMI, - STATE(311), 1, - sym_block, + [50410] = 4, + ACTIONS(4028), 1, + anon_sym_RBRACK, + ACTIONS(4030), 1, + anon_sym_COMMA, + STATE(1790), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50508] = 4, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(4081), 1, - anon_sym_SEMI, - STATE(405), 1, - sym_block, + [50424] = 4, + ACTIONS(3324), 1, + anon_sym_RBRACE, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(1734), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50522] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, + [50438] = 4, + ACTIONS(2024), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_COLON_COLON, + STATE(726), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4083), 2, + [50452] = 4, + ACTIONS(3350), 1, anon_sym_RBRACE, + ACTIONS(4034), 1, anon_sym_COMMA, - [50534] = 4, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_SEMI, - STATE(1167), 1, - sym_block, + STATE(1680), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50548] = 4, - ACTIONS(1997), 1, - anon_sym_LT2, - ACTIONS(4087), 1, - sym_identifier, - STATE(632), 1, - sym_type_arguments, + [50466] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2789), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_EQ_GT, + [50476] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50562] = 4, - ACTIONS(3812), 1, + ACTIONS(4036), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4089), 1, - anon_sym_PIPE, - STATE(1668), 1, - aux_sym_closure_parameters_repeat1, + [50486] = 3, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50576] = 4, - ACTIONS(3812), 1, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50498] = 4, + ACTIONS(4038), 1, + anon_sym_RBRACE, + ACTIONS(4040), 1, anon_sym_COMMA, - ACTIONS(4091), 1, - anon_sym_PIPE, - STATE(1754), 1, - aux_sym_closure_parameters_repeat1, + STATE(1647), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50590] = 4, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(4093), 1, - anon_sym_COLON_COLON, - STATE(694), 1, - sym_field_initializer_list, + [50512] = 4, + ACTIONS(1956), 1, + anon_sym_RPAREN, + ACTIONS(4043), 1, + anon_sym_COMMA, + STATE(1592), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50604] = 4, - ACTIONS(1997), 1, - anon_sym_LT2, - ACTIONS(4087), 1, - sym_identifier, - STATE(628), 1, - sym_type_arguments, + [50526] = 4, + ACTIONS(4045), 1, + anon_sym_RBRACK, + ACTIONS(4047), 1, + anon_sym_COMMA, + STATE(1649), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50618] = 4, - ACTIONS(3947), 1, + [50540] = 4, + ACTIONS(4030), 1, anon_sym_COMMA, - ACTIONS(4095), 1, + ACTIONS(4050), 1, anon_sym_RBRACK, - STATE(1647), 1, + STATE(1679), 1, aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50632] = 4, - ACTIONS(4097), 1, - anon_sym_RBRACE, - ACTIONS(4099), 1, + [50554] = 4, + ACTIONS(4052), 1, + anon_sym_RPAREN, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(1672), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1651), 1, + aux_sym_asm_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50646] = 4, - ACTIONS(3307), 1, + [50568] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4057), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4102), 1, anon_sym_COMMA, - STATE(1771), 1, - aux_sym_field_declaration_list_repeat1, + [50578] = 4, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(4059), 1, + anon_sym_SEMI, + STATE(2006), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50660] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, + [50592] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4104), 2, - anon_sym_RPAREN, + ACTIONS(4061), 3, anon_sym_COMMA, - [50672] = 4, - ACTIONS(4106), 1, + anon_sym_EQ, + anon_sym_GT, + [50602] = 4, + ACTIONS(4063), 1, anon_sym_RBRACE, - ACTIONS(4108), 1, + ACTIONS(4065), 1, anon_sym_COMMA, - STATE(1675), 1, - aux_sym_storage_content_list_repeat1, + STATE(1739), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50686] = 4, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(4111), 1, + [50616] = 4, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(4113), 1, - anon_sym_EQ, + STATE(2073), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50700] = 4, - ACTIONS(1997), 1, - anon_sym_LT2, - ACTIONS(4115), 1, - sym_identifier, - STATE(795), 1, - sym_type_arguments, + [50630] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50714] = 4, - ACTIONS(4117), 1, + ACTIONS(4069), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4120), 1, + [50640] = 4, + ACTIONS(3380), 1, anon_sym_GT, - STATE(1678), 1, + ACTIONS(4071), 1, + anon_sym_COMMA, + STATE(1603), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50728] = 4, - ACTIONS(3750), 1, - anon_sym_PLUS, - ACTIONS(4122), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_GT, + [50654] = 4, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_SEMI, + STATE(286), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50742] = 4, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(4126), 1, - anon_sym_SEMI, - STATE(2005), 1, - sym_where_clause, + [50668] = 4, + ACTIONS(4075), 1, + sym_identifier, + ACTIONS(4078), 1, + anon_sym_RBRACE, + STATE(1660), 1, + aux_sym_asm_content_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50756] = 4, - ACTIONS(776), 1, - anon_sym_RPAREN, - ACTIONS(3625), 1, + [50682] = 4, + ACTIONS(4030), 1, anon_sym_COMMA, - STATE(1620), 1, - aux_sym_parameters_repeat1, + ACTIONS(4080), 1, + anon_sym_RBRACK, + STATE(1649), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50770] = 4, - ACTIONS(3313), 1, - anon_sym_LBRACE, - ACTIONS(4128), 1, + [50696] = 4, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4082), 1, anon_sym_SEMI, - STATE(1173), 1, - sym_declaration_list, + ACTIONS(4084), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50784] = 2, + [50710] = 3, + ACTIONS(3693), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4130), 3, - anon_sym_SEMI, + ACTIONS(4086), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [50722] = 4, + ACTIONS(4088), 1, anon_sym_RBRACE, + ACTIONS(4090), 1, anon_sym_COMMA, - [50794] = 4, - ACTIONS(3313), 1, + STATE(1664), 1, + aux_sym_field_initializer_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50736] = 4, + ACTIONS(3402), 1, anon_sym_LBRACE, - ACTIONS(4132), 1, + ACTIONS(4093), 1, anon_sym_SEMI, - STATE(1178), 1, - sym_declaration_list, + STATE(291), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50808] = 2, + [50750] = 4, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4095), 1, + anon_sym_SEMI, + ACTIONS(4097), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 3, - anon_sym_COLON, + [50764] = 4, + ACTIONS(1797), 1, anon_sym_LBRACE, - anon_sym_where, - [50818] = 4, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4137), 1, - anon_sym_RBRACE, - STATE(1686), 1, - aux_sym_asm_content_repeat1, + ACTIONS(4099), 1, + anon_sym_SEMI, + STATE(1119), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50832] = 4, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(4139), 1, + [50778] = 4, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(4101), 1, anon_sym_SEMI, - STATE(1180), 1, - sym_block, + STATE(2018), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50846] = 2, + [50792] = 4, + ACTIONS(3368), 1, + anon_sym_GT, + ACTIONS(4103), 1, + anon_sym_COMMA, + STATE(1603), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 3, - anon_sym_COLON, - anon_sym_LBRACE, + [50806] = 4, + ACTIONS(3243), 1, anon_sym_where, - [50856] = 4, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(4141), 1, + ACTIONS(4105), 1, anon_sym_SEMI, - STATE(256), 1, - sym_block, + STATE(2139), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50870] = 4, - ACTIONS(770), 1, + [50820] = 4, + ACTIONS(1725), 1, anon_sym_RPAREN, - ACTIONS(4143), 1, + ACTIONS(4107), 1, anon_sym_COMMA, - STATE(1592), 1, - aux_sym_parameters_repeat1, + STATE(1651), 1, + aux_sym_asm_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50884] = 4, - ACTIONS(3301), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, + [50834] = 4, + ACTIONS(657), 1, + anon_sym_RBRACK, + ACTIONS(2556), 1, anon_sym_COMMA, - STATE(1672), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1609), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50898] = 3, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, + [50848] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3201), 1, + anon_sym_LBRACE, + STATE(989), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [50910] = 4, - ACTIONS(4147), 1, - anon_sym_RPAREN, - ACTIONS(4149), 1, - anon_sym_COMMA, - STATE(1736), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [50862] = 4, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(4109), 1, + sym_identifier, + STATE(678), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50924] = 4, - ACTIONS(4151), 1, - anon_sym_SEMI, - ACTIONS(4153), 1, - anon_sym_COLON, - ACTIONS(4155), 1, - anon_sym_EQ, + [50876] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(4111), 1, + sym_identifier, + STATE(1135), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50938] = 4, - ACTIONS(3305), 1, + [50890] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4113), 2, anon_sym_RBRACE, - ACTIONS(4157), 1, anon_sym_COMMA, - STATE(1672), 1, - aux_sym_enum_variant_list_repeat2, + [50902] = 3, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50952] = 4, - ACTIONS(4159), 1, - anon_sym_RBRACE, - ACTIONS(4161), 1, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50914] = 4, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(4115), 1, + anon_sym_SEMI, + STATE(247), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50928] = 4, + ACTIONS(4030), 1, anon_sym_COMMA, - STATE(1696), 1, - aux_sym_use_list_repeat1, + ACTIONS(4117), 1, + anon_sym_RBRACK, + STATE(1649), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50966] = 2, + [50942] = 4, + ACTIONS(4119), 1, + anon_sym_RBRACE, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(1680), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4164), 3, - anon_sym_SEMI, + [50956] = 4, + ACTIONS(3348), 1, anon_sym_RBRACE, + ACTIONS(4124), 1, anon_sym_COMMA, - [50976] = 4, - ACTIONS(3289), 1, - anon_sym_LBRACE, - ACTIONS(4166), 1, - anon_sym_SEMI, - STATE(347), 1, - sym_declaration_list, + STATE(1680), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50990] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, + [50970] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4168), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [51002] = 4, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(4170), 1, + ACTIONS(3797), 3, anon_sym_SEMI, - STATE(2035), 1, - sym_where_clause, + anon_sym_LBRACE, + anon_sym_COMMA, + [50980] = 4, + ACTIONS(3340), 1, + anon_sym_RBRACE, + ACTIONS(4126), 1, + anon_sym_COMMA, + STATE(1598), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51016] = 4, - ACTIONS(3416), 1, + [50994] = 3, + ACTIONS(3693), 1, anon_sym_PLUS, - ACTIONS(4172), 1, - anon_sym_SEMI, - ACTIONS(4174), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51030] = 4, - ACTIONS(1816), 1, + ACTIONS(3920), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [51006] = 4, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(4176), 1, + ACTIONS(4128), 1, anon_sym_SEMI, - STATE(1174), 1, + STATE(1159), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51044] = 4, - ACTIONS(4178), 1, + [51020] = 4, + ACTIONS(3340), 1, anon_sym_RBRACE, - ACTIONS(4180), 1, + ACTIONS(4126), 1, anon_sym_COMMA, - STATE(1604), 1, - aux_sym_use_list_repeat1, + STATE(1732), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51058] = 4, - ACTIONS(3406), 1, + [51034] = 4, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(4182), 1, + ACTIONS(4130), 1, anon_sym_SEMI, - STATE(279), 1, + STATE(1153), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51072] = 4, - ACTIONS(260), 1, - anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_PLUS, - STATE(714), 1, - sym_block, + [51048] = 4, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_if, + ACTIONS(4134), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51086] = 2, + [51062] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4010), 1, + sym_identifier, + STATE(633), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4184), 3, + [51076] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4136), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [51096] = 4, - ACTIONS(1840), 1, - anon_sym_GT, - ACTIONS(4186), 1, - anon_sym_COMMA, - STATE(1599), 1, - aux_sym_type_arguments_repeat1, + STATE(1103), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51110] = 3, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, + [51090] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4010), 1, + sym_identifier, + STATE(638), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [51122] = 3, - ACTIONS(3750), 1, + [51104] = 3, + ACTIONS(3404), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4188), 2, + ACTIONS(3783), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [51134] = 2, + [51116] = 4, + ACTIONS(3783), 1, + anon_sym_RPAREN, + ACTIONS(4138), 1, + anon_sym_COMMA, + STATE(1693), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4190), 3, + [51130] = 4, + ACTIONS(4141), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4143), 1, + anon_sym_COLON, + ACTIONS(4145), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, [51144] = 4, - ACTIONS(3303), 1, - anon_sym_RBRACE, - ACTIONS(4192), 1, + ACTIONS(769), 1, + anon_sym_RPAREN, + ACTIONS(4147), 1, anon_sym_COMMA, - STATE(1673), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1693), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51158] = 3, - ACTIONS(4194), 1, - anon_sym_COLON, + [51158] = 4, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(4149), 1, + anon_sym_SEMI, + STATE(387), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4196), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [51170] = 4, - ACTIONS(1997), 1, - anon_sym_LT2, - ACTIONS(4115), 1, - sym_identifier, - STATE(796), 1, - sym_type_arguments, + [51172] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51184] = 4, - ACTIONS(3303), 1, - anon_sym_RBRACE, - ACTIONS(4192), 1, + ACTIONS(2550), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1771), 1, - aux_sym_field_declaration_list_repeat1, + [51184] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_SEMI, + STATE(1078), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [51198] = 4, - ACTIONS(2974), 1, - anon_sym_COLON_COLON, - ACTIONS(3685), 1, - anon_sym_COLON, - STATE(1720), 1, - sym_trait_bounds, + ACTIONS(4030), 1, + anon_sym_COMMA, + ACTIONS(4153), 1, + anon_sym_RBRACK, + STATE(1731), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [51212] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, + ACTIONS(4155), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [51224] = 4, - ACTIONS(3301), 1, + ACTIONS(4157), 2, anon_sym_RBRACE, - ACTIONS(4145), 1, anon_sym_COMMA, - STATE(1654), 1, - aux_sym_enum_variant_list_repeat2, + [51224] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51238] = 2, + ACTIONS(4159), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [51236] = 4, + ACTIONS(1823), 1, + anon_sym_GT, + ACTIONS(4161), 1, + anon_sym_COMMA, + STATE(1709), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4200), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + [51250] = 4, + ACTIONS(4163), 1, + anon_sym_RBRACE, + ACTIONS(4165), 1, anon_sym_COMMA, - [51248] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(4202), 1, - sym_identifier, - STATE(996), 1, - sym_type_arguments, + STATE(1601), 1, + aux_sym_storage_content_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51262] = 2, + [51264] = 4, + ACTIONS(4167), 1, + anon_sym_RBRACE, + ACTIONS(4169), 1, + anon_sym_COMMA, + STATE(1704), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4204), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [51272] = 2, + [51278] = 3, + ACTIONS(3693), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4206), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4172), 2, anon_sym_COMMA, - [51282] = 4, - ACTIONS(3313), 1, + anon_sym_GT, + [51290] = 4, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(4208), 1, + ACTIONS(4174), 1, anon_sym_SEMI, - STATE(1141), 1, - sym_declaration_list, + STATE(1166), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51296] = 4, - ACTIONS(1997), 1, + [51304] = 4, + ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(4210), 1, + ACTIONS(4111), 1, sym_identifier, - STATE(818), 1, + STATE(1082), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51310] = 2, + [51318] = 3, + ACTIONS(3693), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4212), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4176), 2, anon_sym_COMMA, - [51320] = 4, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_SEMI, - STATE(284), 1, - sym_block, + anon_sym_GT, + [51330] = 4, + ACTIONS(4176), 1, + anon_sym_GT, + ACTIONS(4178), 1, + anon_sym_COMMA, + STATE(1709), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51334] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(4202), 1, - sym_identifier, - STATE(985), 1, - sym_type_arguments, + [51344] = 4, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4181), 1, + anon_sym_SEMI, + ACTIONS(4183), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51348] = 4, - ACTIONS(4168), 1, - anon_sym_RPAREN, - ACTIONS(4216), 1, - anon_sym_COMMA, - STATE(1727), 1, - aux_sym_tuple_type_repeat1, + [51358] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51362] = 4, - ACTIONS(1997), 1, - anon_sym_LT2, - ACTIONS(4210), 1, - sym_identifier, - STATE(811), 1, - sym_type_arguments, + ACTIONS(4086), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [51370] = 3, + ACTIONS(3693), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51376] = 2, + ACTIONS(4185), 2, + anon_sym_COMMA, + anon_sym_GT, + [51382] = 4, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(4187), 1, + anon_sym_SEMI, + STATE(374), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 3, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - [51386] = 2, + [51396] = 4, + ACTIONS(773), 1, + anon_sym_RPAREN, + ACTIONS(3620), 1, + anon_sym_COMMA, + STATE(1637), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 3, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - [51396] = 4, - ACTIONS(2065), 1, + [51410] = 4, + ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(4219), 1, + ACTIONS(3971), 1, sym_identifier, - STATE(996), 1, + STATE(642), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51410] = 4, - ACTIONS(3293), 1, - anon_sym_RBRACE, - ACTIONS(4221), 1, - anon_sym_COMMA, - STATE(1808), 1, - aux_sym_field_declaration_list_repeat1, + [51424] = 4, + ACTIONS(4189), 1, + anon_sym_SEMI, + ACTIONS(4191), 1, + anon_sym_COLON, + ACTIONS(4193), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51424] = 3, - ACTIONS(3750), 1, - anon_sym_PLUS, + [51438] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(4195), 1, + sym_identifier, + STATE(1082), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4223), 2, + [51452] = 4, + ACTIONS(4197), 1, + anon_sym_RPAREN, + ACTIONS(4199), 1, anon_sym_COMMA, - anon_sym_PIPE, - [51436] = 4, - ACTIONS(3289), 1, - anon_sym_LBRACE, - ACTIONS(4225), 1, - anon_sym_SEMI, - STATE(397), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51450] = 4, - ACTIONS(3313), 1, - anon_sym_LBRACE, - ACTIONS(4227), 1, - anon_sym_SEMI, - STATE(1121), 1, - sym_declaration_list, + STATE(1730), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51464] = 4, - ACTIONS(4229), 1, + [51466] = 4, + ACTIONS(773), 1, anon_sym_RPAREN, - ACTIONS(4231), 1, + ACTIONS(3620), 1, anon_sym_COMMA, - STATE(1736), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1693), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51478] = 4, - ACTIONS(2982), 1, - anon_sym_COLON_COLON, - ACTIONS(3685), 1, + [51480] = 3, + ACTIONS(3743), 1, anon_sym_COLON, - STATE(1720), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(4201), 2, + anon_sym_COMMA, + anon_sym_PIPE, [51492] = 4, - ACTIONS(4234), 1, + ACTIONS(4203), 1, anon_sym_RBRACE, - ACTIONS(4236), 1, + ACTIONS(4205), 1, anon_sym_COMMA, - STATE(1691), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1639), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [51506] = 4, - ACTIONS(1792), 1, - anon_sym_RPAREN, - ACTIONS(4238), 1, - anon_sym_COMMA, - STATE(1569), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51520] = 4, - ACTIONS(2065), 1, + ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(4240), 1, + ACTIONS(4207), 1, sym_identifier, - STATE(996), 1, + STATE(828), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51534] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, + [51520] = 4, + ACTIONS(3289), 1, + anon_sym_RBRACE, + ACTIONS(4209), 1, + anon_sym_COMMA, + STATE(1643), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4242), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [51546] = 4, - ACTIONS(1844), 1, - anon_sym_GT, - ACTIONS(4244), 1, + [51534] = 4, + ACTIONS(3289), 1, + anon_sym_RBRACE, + ACTIONS(4209), 1, anon_sym_COMMA, - STATE(1599), 1, - aux_sym_type_arguments_repeat1, + STATE(1680), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51560] = 2, + [51548] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4246), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4211), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [51570] = 4, - ACTIONS(2065), 1, + [51560] = 4, + ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(4240), 1, + ACTIONS(4207), 1, sym_identifier, - STATE(985), 1, + STATE(818), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51584] = 4, - ACTIONS(1816), 1, - anon_sym_LBRACE, - ACTIONS(4248), 1, - anon_sym_SEMI, - STATE(1003), 1, - sym_block, + [51574] = 4, + ACTIONS(4201), 1, + anon_sym_PIPE, + ACTIONS(4213), 1, + anon_sym_COMMA, + STATE(1727), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51598] = 4, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(4250), 1, + [51588] = 4, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(4216), 1, anon_sym_SEMI, - ACTIONS(4252), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51612] = 4, - ACTIONS(3947), 1, - anon_sym_COMMA, - ACTIONS(4254), 1, - anon_sym_RBRACK, - STATE(1671), 1, - aux_sym_attribute_item_repeat1, + STATE(2038), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51626] = 4, - ACTIONS(4256), 1, - anon_sym_SEMI, - ACTIONS(4258), 1, - anon_sym_COLON, - ACTIONS(4260), 1, - anon_sym_EQ, + [51602] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(4195), 1, + sym_identifier, + STATE(1135), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51640] = 4, - ACTIONS(3760), 1, + [51616] = 4, + ACTIONS(4218), 1, + anon_sym_RPAREN, + ACTIONS(4220), 1, anon_sym_COMMA, - ACTIONS(3764), 1, - anon_sym_GT, - STATE(1806), 1, - aux_sym_type_parameters_repeat1, + STATE(1730), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51654] = 3, - ACTIONS(4262), 1, - anon_sym_COLON, + [51630] = 4, + ACTIONS(4030), 1, + anon_sym_COMMA, + ACTIONS(4223), 1, + anon_sym_RBRACK, + STATE(1649), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4264), 2, + [51644] = 4, + ACTIONS(4225), 1, anon_sym_RBRACE, + ACTIONS(4227), 1, anon_sym_COMMA, - [51666] = 2, + STATE(1732), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4266), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [51676] = 4, - ACTIONS(2769), 1, + [51658] = 4, + ACTIONS(265), 1, anon_sym_LBRACE, - ACTIONS(4268), 1, - sym_identifier, - STATE(1710), 1, - sym_use_list, + ACTIONS(3404), 1, + anon_sym_PLUS, + STATE(691), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51690] = 4, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(3579), 1, + [51672] = 4, + ACTIONS(3287), 1, + anon_sym_RBRACE, + ACTIONS(4230), 1, anon_sym_COMMA, - STATE(1690), 1, - aux_sym_parameters_repeat1, + STATE(1732), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51704] = 4, - ACTIONS(4270), 1, - anon_sym_COMMA, - ACTIONS(4273), 1, - anon_sym_PIPE, - STATE(1754), 1, - aux_sym_closure_parameters_repeat1, + [51686] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51718] = 4, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(3579), 1, + ACTIONS(4232), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1592), 1, - aux_sym_parameters_repeat1, + [51696] = 4, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(4234), 1, + anon_sym_SEMI, + STATE(2111), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51732] = 4, - ACTIONS(3313), 1, - anon_sym_LBRACE, - ACTIONS(4275), 1, - anon_sym_SEMI, - STATE(1006), 1, - sym_declaration_list, + [51710] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(4236), 1, + sym_identifier, + STATE(1135), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51746] = 4, - ACTIONS(3406), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_SEMI, - STATE(389), 1, - sym_block, + [51724] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51760] = 4, - ACTIONS(4279), 1, + ACTIONS(4238), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4281), 1, anon_sym_COMMA, - STATE(1758), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51774] = 4, - ACTIONS(3297), 1, + [51734] = 4, + ACTIONS(2639), 1, anon_sym_RBRACE, - ACTIONS(4284), 1, + ACTIONS(4240), 1, anon_sym_COMMA, - STATE(1695), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1647), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51788] = 4, - ACTIONS(3289), 1, + [51748] = 4, + ACTIONS(2024), 1, anon_sym_LBRACE, - ACTIONS(4286), 1, - anon_sym_SEMI, - STATE(403), 1, - sym_declaration_list, + ACTIONS(4242), 1, + anon_sym_COLON_COLON, + STATE(726), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51802] = 4, - ACTIONS(3297), 1, - anon_sym_RBRACE, - ACTIONS(4284), 1, + [51762] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(4236), 1, + sym_identifier, + STATE(1082), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51776] = 4, + ACTIONS(4030), 1, anon_sym_COMMA, - STATE(1672), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4244), 1, + anon_sym_RBRACK, + STATE(1649), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51816] = 4, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(4288), 1, + [51790] = 4, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4246), 1, anon_sym_SEMI, - STATE(2065), 1, - sym_where_clause, + ACTIONS(4248), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51830] = 3, - ACTIONS(4290), 1, + [51804] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2703), 3, anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + [51814] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4250), 1, + sym_identifier, + STATE(796), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4292), 2, - anon_sym_RBRACE, + [51828] = 4, + ACTIONS(3729), 1, anon_sym_COMMA, - [51842] = 4, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(4294), 1, - anon_sym_if, - ACTIONS(4296), 1, - anon_sym_EQ_GT, + ACTIONS(3733), 1, + anon_sym_GT, + STATE(1776), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51856] = 4, - ACTIONS(4298), 1, - anon_sym_RPAREN, - ACTIONS(4300), 1, - anon_sym_COMMA, - STATE(1659), 1, - aux_sym_asm_parameters_repeat1, + [51842] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51870] = 3, - ACTIONS(3416), 1, - anon_sym_PLUS, + ACTIONS(2695), 3, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + [51852] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4250), 1, + sym_identifier, + STATE(803), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4302), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [51882] = 3, - ACTIONS(4304), 1, - anon_sym_SLASH, + [51866] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3719), 2, + ACTIONS(4252), 3, anon_sym_SEMI, - anon_sym_LBRACE, - [51894] = 4, - ACTIONS(3947), 1, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4306), 1, - anon_sym_RBRACK, - STATE(1784), 1, - aux_sym_attribute_item_repeat1, + [51876] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51908] = 4, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(4308), 1, + ACTIONS(4254), 3, anon_sym_SEMI, - ACTIONS(4310), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + [51886] = 4, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(4256), 1, + anon_sym_SEMI, + STATE(306), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51922] = 4, - ACTIONS(3293), 1, - anon_sym_RBRACE, - ACTIONS(4221), 1, - anon_sym_COMMA, - STATE(1771), 1, - aux_sym_field_declaration_list_repeat1, + [51900] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51936] = 4, - ACTIONS(4312), 1, + ACTIONS(4258), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4314), 1, anon_sym_COMMA, - STATE(1771), 1, - aux_sym_field_declaration_list_repeat1, + [51910] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4260), 1, + anon_sym_SEMI, + STATE(1146), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51950] = 4, - ACTIONS(4317), 1, - anon_sym_SEMI, - ACTIONS(4319), 1, - anon_sym_COLON, - ACTIONS(4321), 1, - anon_sym_EQ, + [51924] = 3, + ACTIONS(3512), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51964] = 4, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(4323), 1, - anon_sym_SEMI, - STATE(2047), 1, - sym_where_clause, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51936] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51978] = 4, - ACTIONS(3544), 1, + ACTIONS(4262), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4325), 1, anon_sym_COMMA, - STATE(1675), 1, - aux_sym_storage_content_list_repeat1, + [51946] = 4, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(4264), 1, + anon_sym_SEMI, + STATE(256), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51992] = 3, - ACTIONS(3416), 1, + [51960] = 3, + ACTIONS(3404), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4223), 2, - anon_sym_RPAREN, + ACTIONS(4266), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [52004] = 3, - ACTIONS(3810), 1, - anon_sym_COLON, + [51972] = 4, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(4268), 1, + anon_sym_SEMI, + STATE(303), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4273), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [52016] = 4, - ACTIONS(2065), 1, - anon_sym_LT2, - ACTIONS(4219), 1, - sym_identifier, - STATE(985), 1, - sym_type_arguments, + [51986] = 4, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(4270), 1, + anon_sym_SEMI, + STATE(2180), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52030] = 3, - ACTIONS(3750), 1, - anon_sym_PLUS, + [52000] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4242), 2, + ACTIONS(4272), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [52042] = 4, - ACTIONS(3565), 1, + [52010] = 4, + ACTIONS(3745), 1, anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_GT, - STATE(1641), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52056] = 3, - ACTIONS(3750), 1, - anon_sym_PLUS, + ACTIONS(4274), 1, + anon_sym_PIPE, + STATE(1629), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4327), 2, - anon_sym_COMMA, - anon_sym_GT, - [52068] = 4, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(4329), 1, + [52024] = 4, + ACTIONS(3243), 1, + anon_sym_where, + ACTIONS(4276), 1, anon_sym_SEMI, - ACTIONS(4331), 1, - anon_sym_RBRACK, + STATE(2119), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52082] = 4, - ACTIONS(3416), 1, - anon_sym_PLUS, - ACTIONS(4333), 1, - anon_sym_SEMI, - ACTIONS(4335), 1, - anon_sym_EQ, + [52038] = 4, + ACTIONS(3235), 1, + anon_sym_RBRACE, + ACTIONS(4278), 1, + anon_sym_COMMA, + STATE(1664), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52096] = 4, - ACTIONS(1774), 1, - anon_sym_RPAREN, - ACTIONS(4337), 1, - anon_sym_COMMA, - STATE(1569), 1, - aux_sym_tuple_pattern_repeat1, + [52052] = 4, + ACTIONS(4280), 1, + anon_sym_LBRACE, + ACTIONS(4282), 1, + anon_sym_DOT, + STATE(277), 1, + sym_storage_content_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52110] = 4, - ACTIONS(3947), 1, + [52066] = 4, + ACTIONS(4030), 1, anon_sym_COMMA, - ACTIONS(4339), 1, + ACTIONS(4284), 1, anon_sym_RBRACK, - STATE(1647), 1, + STATE(1742), 1, aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52124] = 4, - ACTIONS(4341), 1, - anon_sym_RBRACE, - ACTIONS(4343), 1, - anon_sym_COMMA, - STATE(1761), 1, - aux_sym_enum_variant_list_repeat2, + [52080] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52138] = 4, - ACTIONS(444), 1, + ACTIONS(3717), 2, anon_sym_RPAREN, - ACTIONS(2605), 1, anon_sym_COMMA, - STATE(1611), 1, - aux_sym_arguments_repeat1, + [52092] = 4, + ACTIONS(4286), 1, + anon_sym_RBRACE, + ACTIONS(4288), 1, + anon_sym_COMMA, + STATE(1686), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52152] = 3, - ACTIONS(4345), 1, - anon_sym_COLON, + [52106] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4290), 1, + sym_identifier, + STATE(642), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [52164] = 4, - ACTIONS(4347), 1, - anon_sym_RPAREN, - ACTIONS(4349), 1, - anon_sym_COMMA, - STATE(1736), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [52120] = 4, + ACTIONS(4292), 1, + anon_sym_SEMI, + ACTIONS(4294), 1, + anon_sym_COLON, + ACTIONS(4296), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52178] = 4, - ACTIONS(656), 1, - anon_sym_RBRACK, - ACTIONS(4351), 1, + [52134] = 4, + ACTIONS(3392), 1, + anon_sym_GT, + ACTIONS(4298), 1, anon_sym_COMMA, - STATE(1790), 1, - aux_sym_array_expression_repeat1, + STATE(1603), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52192] = 4, - ACTIONS(2683), 1, - anon_sym_RBRACK, - ACTIONS(4353), 1, - anon_sym_COMMA, - STATE(1790), 1, - aux_sym_array_expression_repeat1, + [52148] = 4, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(4300), 1, + anon_sym_SEMI, + STATE(232), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52206] = 4, - ACTIONS(260), 1, + [52162] = 4, + ACTIONS(3402), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_PLUS, - STATE(716), 1, + ACTIONS(4302), 1, + anon_sym_SEMI, + STATE(330), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52220] = 3, - ACTIONS(3762), 1, - anon_sym_EQ, + [52176] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4120), 2, + ACTIONS(4304), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [52232] = 4, - ACTIONS(3647), 1, - anon_sym_RPAREN, - ACTIONS(3649), 1, + [52188] = 3, + ACTIONS(3693), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4306), 2, anon_sym_COMMA, - STATE(1755), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [52200] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3408), 1, + sym_identifier, + STATE(1135), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52246] = 2, + [52214] = 4, + ACTIONS(3372), 1, + anon_sym_GT, + ACTIONS(4308), 1, + anon_sym_COMMA, + STATE(1603), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 3, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - [52256] = 4, - ACTIONS(3249), 1, - anon_sym_where, - ACTIONS(4356), 1, - anon_sym_SEMI, - STATE(2054), 1, - sym_where_clause, + [52228] = 3, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52270] = 4, - ACTIONS(1816), 1, + ACTIONS(2954), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [52240] = 4, + ACTIONS(3402), 1, anon_sym_LBRACE, - ACTIONS(4358), 1, + ACTIONS(4310), 1, anon_sym_SEMI, - STATE(1066), 1, + STATE(364), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52284] = 4, - ACTIONS(3607), 1, - sym_identifier, - ACTIONS(4360), 1, - anon_sym_RBRACE, - STATE(1686), 1, - aux_sym_asm_content_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52298] = 4, - ACTIONS(3770), 1, - anon_sym_COMMA, - ACTIONS(3772), 1, - anon_sym_GT, - STATE(1742), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52312] = 2, + [52254] = 4, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_SEMI, + STATE(394), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2814), 3, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - [52322] = 4, - ACTIONS(4362), 1, + [52268] = 4, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4314), 1, anon_sym_SEMI, - ACTIONS(4364), 1, - anon_sym_COLON, - ACTIONS(4366), 1, + ACTIONS(4316), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52336] = 2, + [52282] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4290), 1, + sym_identifier, + STATE(665), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4368), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [52346] = 4, - ACTIONS(1945), 1, - anon_sym_RPAREN, - ACTIONS(4370), 1, - anon_sym_COMMA, - STATE(1727), 1, - aux_sym_tuple_type_repeat1, + [52296] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52360] = 4, - ACTIONS(4372), 1, + ACTIONS(4318), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [52308] = 4, + ACTIONS(4320), 1, anon_sym_RBRACE, - ACTIONS(4374), 1, + ACTIONS(4322), 1, anon_sym_COMMA, - STATE(1714), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1724), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52374] = 4, - ACTIONS(3358), 1, - anon_sym_GT, - ACTIONS(4376), 1, - anon_sym_COMMA, - STATE(1678), 1, - aux_sym_type_parameters_repeat1, + [52322] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52388] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, + ACTIONS(4324), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [52334] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4326), 1, + anon_sym_SEMI, + STATE(1034), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4378), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [52400] = 4, - ACTIONS(3368), 1, - anon_sym_GT, - ACTIONS(4380), 1, - anon_sym_COMMA, - STATE(1678), 1, - aux_sym_type_parameters_repeat1, + [52348] = 3, + ACTIONS(4328), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52414] = 4, - ACTIONS(4382), 1, + ACTIONS(4330), 2, anon_sym_RBRACE, - ACTIONS(4384), 1, anon_sym_COMMA, - STATE(1612), 1, - aux_sym_field_initializer_list_repeat1, + [52360] = 4, + ACTIONS(3245), 1, + anon_sym_LT, + ACTIONS(4332), 1, + anon_sym_EQ, + STATE(2179), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52428] = 4, - ACTIONS(3346), 1, - anon_sym_RBRACE, - ACTIONS(4386), 1, - anon_sym_COMMA, - STATE(1771), 1, - aux_sym_field_declaration_list_repeat1, + [52374] = 4, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(4334), 1, + anon_sym_SEMI, + STATE(401), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52442] = 4, - ACTIONS(3313), 1, + [52388] = 4, + ACTIONS(3402), 1, anon_sym_LBRACE, - ACTIONS(4388), 1, + ACTIONS(4336), 1, anon_sym_SEMI, - STATE(1071), 1, - sym_declaration_list, + STATE(399), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52456] = 4, - ACTIONS(4390), 1, - anon_sym_RBRACE, - ACTIONS(4392), 1, + [52402] = 4, + ACTIONS(4030), 1, anon_sym_COMMA, - STATE(1810), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4338), 1, + anon_sym_RBRACK, + STATE(1649), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52470] = 3, - ACTIONS(4395), 1, - anon_sym_COLON, + [52416] = 4, + ACTIONS(3636), 1, + anon_sym_RPAREN, + ACTIONS(3638), 1, + anon_sym_COMMA, + STATE(1719), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4397), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [52482] = 3, - ACTIONS(2209), 1, - anon_sym_COLON, - ACTIONS(3416), 1, - anon_sym_PLUS, + [52430] = 4, + ACTIONS(2144), 1, + anon_sym_LT2, + ACTIONS(3408), 1, + sym_identifier, + STATE(1082), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52493] = 3, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(1434), 1, - sym_parameters, + [52444] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52504] = 3, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(4399), 1, - anon_sym_RPAREN, + ACTIONS(4340), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [52456] = 4, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(4342), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52515] = 3, - ACTIONS(3031), 1, - anon_sym_COLON_COLON, - ACTIONS(4401), 1, - anon_sym_RPAREN, + [52470] = 4, + ACTIONS(4030), 1, + anon_sym_COMMA, + ACTIONS(4344), 1, + anon_sym_RBRACK, + STATE(1661), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52526] = 3, - ACTIONS(3334), 1, - anon_sym_COLON_COLON, - ACTIONS(4403), 1, - anon_sym_RPAREN, + [52484] = 4, + ACTIONS(3691), 1, + anon_sym_COMMA, + ACTIONS(3695), 1, + anon_sym_GT, + STATE(1702), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52537] = 3, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(4403), 1, + [52498] = 4, + ACTIONS(4346), 1, anon_sym_RPAREN, + ACTIONS(4348), 1, + anon_sym_COMMA, + STATE(1730), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52548] = 3, - ACTIONS(3328), 1, - anon_sym_COLON_COLON, - ACTIONS(4403), 1, - anon_sym_RPAREN, + [52512] = 4, + ACTIONS(3693), 1, + anon_sym_PLUS, + ACTIONS(4350), 1, + anon_sym_as, + ACTIONS(4352), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52559] = 2, + [52526] = 4, + ACTIONS(3245), 1, + anon_sym_LT, + ACTIONS(4354), 1, + anon_sym_EQ, + STATE(2182), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4120), 2, - anon_sym_COMMA, - anon_sym_GT, - [52568] = 3, - ACTIONS(3334), 1, - anon_sym_COLON_COLON, - ACTIONS(4399), 1, + [52540] = 4, + ACTIONS(1954), 1, anon_sym_RPAREN, + ACTIONS(4356), 1, + anon_sym_COMMA, + STATE(1592), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52579] = 2, + [52554] = 3, + ACTIONS(21), 1, + anon_sym_LBRACE, + STATE(76), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4405), 2, - sym_identifier, - sym_metavariable, - [52588] = 2, + [52565] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4407), 2, - sym_identifier, - sym_metavariable, - [52597] = 3, - ACTIONS(3259), 1, - anon_sym_LBRACE, - STATE(1081), 1, - sym_field_declaration_list, + ACTIONS(4045), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [52574] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52608] = 3, - ACTIONS(3313), 1, - anon_sym_LBRACE, - STATE(1084), 1, - sym_declaration_list, + ACTIONS(4358), 2, + anon_sym_SEMI, + anon_sym_where, + [52583] = 3, + ACTIONS(3245), 1, + anon_sym_LT, + STATE(615), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52619] = 3, - ACTIONS(3313), 1, + [52594] = 3, + ACTIONS(4280), 1, anon_sym_LBRACE, - STATE(1085), 1, - sym_declaration_list, + STATE(395), 1, + sym_storage_content_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52630] = 2, + [52605] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4390), 2, + ACTIONS(4360), 2, anon_sym_RBRACE, - anon_sym_COMMA, - [52639] = 2, + sym_identifier, + [52614] = 3, + ACTIONS(3498), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4409), 2, - anon_sym_SEMI, - anon_sym_where, - [52648] = 3, - ACTIONS(4411), 1, + [52625] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(4362), 1, anon_sym_in, - ACTIONS(4413), 1, - sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52659] = 3, - ACTIONS(3522), 1, - anon_sym_LBRACE, - STATE(1062), 1, - sym_enum_variant_list, + [52636] = 3, + ACTIONS(4364), 1, + anon_sym_for, + ACTIONS(4366), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52670] = 2, + [52647] = 3, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1413), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1881), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [52679] = 3, - ACTIONS(3589), 1, + [52658] = 3, + ACTIONS(3616), 1, anon_sym_PIPE, - ACTIONS(4415), 1, - anon_sym_EQ, + ACTIONS(4368), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52690] = 3, - ACTIONS(3251), 1, - anon_sym_LT, - STATE(609), 1, - sym_type_parameters, + [52669] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(4370), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52701] = 2, + [52680] = 3, + ACTIONS(3035), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1859), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [52710] = 2, + [52691] = 3, + ACTIONS(3342), 1, + anon_sym_COLON_COLON, + ACTIONS(4374), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4273), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [52719] = 3, - ACTIONS(3522), 1, - anon_sym_LBRACE, - STATE(1095), 1, - sym_enum_variant_list, + [52702] = 3, + ACTIONS(3338), 1, + anon_sym_COLON_COLON, + ACTIONS(4374), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52730] = 3, - ACTIONS(3031), 1, + [52713] = 3, + ACTIONS(3336), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4374), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52741] = 2, + [52724] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4419), 2, - anon_sym_RBRACE, + ACTIONS(4376), 2, sym_identifier, - [52750] = 3, - ACTIONS(3259), 1, + sym_metavariable, + [52733] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1102), 1, - sym_field_declaration_list, + STATE(2152), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52761] = 2, + [52744] = 3, + ACTIONS(265), 1, + anon_sym_LBRACE, + STATE(2177), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4279), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [52770] = 3, - ACTIONS(3313), 1, - anon_sym_LBRACE, - STATE(1106), 1, - sym_declaration_list, + [52755] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52781] = 3, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(1209), 1, - sym_parameters, + ACTIONS(4378), 2, + anon_sym_SEMI, + anon_sym_where, + [52764] = 3, + ACTIONS(3241), 1, + anon_sym_LBRACE, + STATE(994), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52792] = 3, - ACTIONS(3313), 1, + [52775] = 3, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(1037), 1, + STATE(1073), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52803] = 3, - ACTIONS(260), 1, + [52786] = 3, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(684), 1, - sym_block, + STATE(1076), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52814] = 3, - ACTIONS(3259), 1, + [52797] = 3, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(1022), 1, - sym_field_declaration_list, + STATE(1107), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52825] = 2, + [52808] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4380), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4312), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [52834] = 2, + [52819] = 3, + ACTIONS(3241), 1, + anon_sym_LBRACE, + STATE(1023), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4097), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [52843] = 2, + [52830] = 3, + ACTIONS(3428), 1, + anon_sym_LBRACE, + STATE(266), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1855), 2, - anon_sym_COMMA, - anon_sym_GT, - [52852] = 3, - ACTIONS(3328), 1, - anon_sym_COLON_COLON, - ACTIONS(4399), 1, - anon_sym_RPAREN, + [52841] = 3, + ACTIONS(4382), 1, + anon_sym_for, + ACTIONS(4384), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52863] = 3, - ACTIONS(4421), 1, - anon_sym_in, - ACTIONS(4423), 1, - sym_self, + [52852] = 3, + ACTIONS(1976), 1, + anon_sym_LPAREN, + STATE(637), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52874] = 3, - ACTIONS(3386), 1, - anon_sym_COLON, - ACTIONS(3416), 1, - anon_sym_PLUS, + [52863] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52885] = 3, - ACTIONS(3289), 1, - anon_sym_LBRACE, - STATE(370), 1, - sym_declaration_list, + ACTIONS(4386), 2, + sym_identifier, + sym_metavariable, + [52872] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(4388), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52896] = 2, + [52883] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4425), 2, + ACTIONS(4390), 2, anon_sym_SEMI, anon_sym_where, - [52905] = 3, - ACTIONS(1991), 1, - anon_sym_LPAREN, - STATE(640), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52916] = 3, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(1336), 1, - sym_parameters, + [52892] = 3, + ACTIONS(3498), 1, + anon_sym_LBRACE, + STATE(1118), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52927] = 2, + [52903] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4427), 2, - sym_identifier, - sym_metavariable, - [52936] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(4429), 1, - anon_sym_EQ, + ACTIONS(4392), 2, + anon_sym_SEMI, + anon_sym_where, + [52912] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52947] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_in, + ACTIONS(4394), 2, + anon_sym_SEMI, + anon_sym_where, + [52921] = 3, + ACTIONS(3241), 1, + anon_sym_LBRACE, + STATE(1127), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52958] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(4433), 1, - anon_sym_in, + [52932] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52969] = 2, + ACTIONS(4396), 2, + anon_sym_SEMI, + anon_sym_where, + [52941] = 3, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1147), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4435), 2, - sym_identifier, - sym_metavariable, - [52978] = 3, - ACTIONS(260), 1, + [52952] = 3, + ACTIONS(3498), 1, anon_sym_LBRACE, - STATE(2068), 1, - sym_block, + STATE(1089), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52989] = 3, - ACTIONS(3589), 1, + [52963] = 3, + ACTIONS(3616), 1, anon_sym_PIPE, - ACTIONS(4437), 1, + ACTIONS(4398), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53000] = 2, + [52974] = 3, + ACTIONS(265), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4439), 2, - anon_sym_const, - sym_mutable_specifier, - [53009] = 2, + [52985] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4441), 2, + ACTIONS(4400), 2, anon_sym_SEMI, anon_sym_where, - [53018] = 3, - ACTIONS(3522), 1, - anon_sym_LBRACE, - STATE(1013), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53029] = 3, - ACTIONS(3251), 1, - anon_sym_LT, - STATE(598), 1, - sym_type_parameters, + [52994] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53040] = 3, - ACTIONS(3251), 1, - anon_sym_LT, - STATE(585), 1, - sym_type_parameters, + ACTIONS(4402), 2, + sym_identifier, + sym_metavariable, + [53003] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53051] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_in, + ACTIONS(4404), 2, + sym_identifier, + sym_metavariable, + [53012] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53062] = 3, - ACTIONS(4445), 1, - anon_sym_LBRACE, - STATE(737), 1, - sym_asm_block, + ACTIONS(4406), 2, + anon_sym_SEMI, + anon_sym_where, + [53021] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53073] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(738), 1, - sym_block, + ACTIONS(3717), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53030] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53084] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1708), 1, - sym_line_comment, - ACTIONS(4447), 1, + ACTIONS(4408), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [53039] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4410), 1, anon_sym_SEMI, - ACTIONS(4449), 1, - anon_sym_, - [53097] = 3, - ACTIONS(4451), 1, - anon_sym_for, - ACTIONS(4453), 1, - anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53108] = 3, - ACTIONS(3289), 1, + [53050] = 3, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(382), 1, + STATE(294), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53119] = 2, + [53061] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4455), 2, - anon_sym_RBRACK, + ACTIONS(1844), 2, anon_sym_COMMA, - [53128] = 3, - ACTIONS(3289), 1, + anon_sym_GT, + [53070] = 3, + ACTIONS(4412), 1, anon_sym_LBRACE, - STATE(332), 1, - sym_declaration_list, + STATE(669), 1, + sym_asm_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53139] = 2, + [53081] = 3, + ACTIONS(265), 1, + anon_sym_LBRACE, + STATE(700), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_const, - sym_mutable_specifier, - [53148] = 3, - ACTIONS(3313), 1, - anon_sym_LBRACE, - STATE(1155), 1, - sym_declaration_list, + [53092] = 3, + ACTIONS(3293), 1, + anon_sym_COLON, + STATE(1570), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53159] = 2, + [53103] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4459), 2, - anon_sym_SEMI, - anon_sym_where, - [53168] = 2, + [53114] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4461), 2, + ACTIONS(4416), 2, anon_sym_const, sym_mutable_specifier, - [53177] = 3, - ACTIONS(1991), 1, + [53123] = 3, + ACTIONS(1976), 1, anon_sym_LPAREN, - STATE(639), 1, + STATE(644), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53188] = 3, - ACTIONS(2058), 1, + [53134] = 3, + ACTIONS(4418), 1, anon_sym_LPAREN, - STATE(1342), 1, - sym_parameters, + STATE(1946), 1, + sym_asm_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53199] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(4463), 1, - anon_sym_in, + [53145] = 3, + ACTIONS(4420), 1, + anon_sym_LBRACK, + ACTIONS(4422), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53210] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(641), 1, - sym_block, + [53156] = 3, + ACTIONS(4418), 1, + anon_sym_LPAREN, + STATE(1961), 1, + sym_asm_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53221] = 2, + [53167] = 3, + ACTIONS(265), 1, + anon_sym_LBRACE, + STATE(647), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4465), 2, - anon_sym_SEMI, - anon_sym_where, - [53230] = 3, - ACTIONS(4467), 1, + [53178] = 3, + ACTIONS(4424), 1, anon_sym_AMP_AMP, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53241] = 3, - ACTIONS(2727), 1, + [53189] = 3, + ACTIONS(2795), 1, anon_sym_EQ_GT, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53252] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4471), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [53261] = 3, - ACTIONS(3522), 1, + [53200] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1182), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53272] = 3, - ACTIONS(2187), 1, - anon_sym_COLON, - ACTIONS(3416), 1, - anon_sym_PLUS, + STATE(2031), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53283] = 2, + [53211] = 3, + ACTIONS(83), 1, + anon_sym_PIPE, + STATE(101), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53292] = 3, - ACTIONS(3259), 1, + [53222] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1187), 1, - sym_field_declaration_list, + STATE(2055), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53303] = 3, - ACTIONS(3313), 1, + [53233] = 3, + ACTIONS(1797), 1, anon_sym_LBRACE, - STATE(1188), 1, - sym_declaration_list, + STATE(1243), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53314] = 3, - ACTIONS(3313), 1, + [53244] = 3, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1189), 1, + STATE(284), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53325] = 3, - ACTIONS(3569), 1, + [53255] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(325), 1, - sym_enum_variant_list, + STATE(2051), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53336] = 3, - ACTIONS(260), 1, + [53266] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(2083), 1, + STATE(2067), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53347] = 3, - ACTIONS(2213), 1, - anon_sym_COLON, - ACTIONS(3416), 1, - anon_sym_PLUS, + [53277] = 3, + ACTIONS(83), 1, + anon_sym_PIPE, + STATE(95), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53358] = 2, + [53288] = 3, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1401), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4473), 2, - anon_sym_SEMI, - anon_sym_where, - [53367] = 3, - ACTIONS(260), 1, + [53299] = 3, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(668), 1, - sym_block, + STATE(726), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53378] = 2, + [53310] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4475), 2, - anon_sym_SEMI, - anon_sym_where, - [53387] = 3, - ACTIONS(4477), 1, - anon_sym_for, - ACTIONS(4479), 1, - anon_sym_while, + ACTIONS(1858), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [53319] = 3, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1012), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53398] = 3, - ACTIONS(3289), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_declaration_list, + [53330] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4428), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53409] = 2, + [53341] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4481), 2, - anon_sym_RPAREN, + ACTIONS(4225), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [53418] = 3, - ACTIONS(1816), 1, + [53350] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(4430), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53361] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1236), 1, + STATE(2086), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53429] = 3, - ACTIONS(81), 1, - anon_sym_PIPE, - STATE(94), 1, - sym_closure_parameters, + [53372] = 3, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1201), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53383] = 3, + ACTIONS(265), 1, + anon_sym_LBRACE, + STATE(2087), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53440] = 3, - ACTIONS(2161), 1, + [53394] = 3, + ACTIONS(2094), 1, anon_sym_LPAREN, - STATE(730), 1, + STATE(678), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53451] = 3, - ACTIONS(260), 1, + [53405] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(2058), 1, + STATE(2025), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53462] = 3, - ACTIONS(21), 1, + [53416] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(69), 1, + STATE(713), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53473] = 3, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(1391), 1, - sym_parameters, + [53427] = 3, + ACTIONS(3249), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53484] = 3, - ACTIONS(4483), 1, + [53438] = 3, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(82), 1, - sym_asm_block, + STATE(273), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53449] = 3, + ACTIONS(3498), 1, + anon_sym_LBRACE, + STATE(1066), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53495] = 2, + [53460] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4485), 2, + ACTIONS(4432), 2, anon_sym_SEMI, anon_sym_where, - [53504] = 2, + [53469] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4487), 2, + ACTIONS(4434), 2, anon_sym_SEMI, anon_sym_where, - [53513] = 2, + [53478] = 3, + ACTIONS(3241), 1, + anon_sym_LBRACE, + STATE(1043), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4050), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [53522] = 2, + [53489] = 3, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1027), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4489), 2, + [53500] = 3, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1157), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53511] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4436), 2, anon_sym_SEMI, anon_sym_where, + [53520] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4438), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, [53531] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(2137), 1, - sym_block, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1426), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [53542] = 3, - ACTIONS(4491), 1, + ACTIONS(2094), 1, anon_sym_LPAREN, - STATE(1868), 1, - sym_asm_parameters, + STATE(721), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [53553] = 3, - ACTIONS(260), 1, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(2025), 1, + STATE(2130), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [53564] = 3, - ACTIONS(3247), 1, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(362), 1, - sym_field_declaration_list, + STATE(2158), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [53575] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(2152), 1, - sym_block, + ACTIONS(1982), 1, + anon_sym_LT2, + STATE(723), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [53586] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(3591), 1, - anon_sym_COLON, + ACTIONS(4440), 1, + anon_sym_for, + ACTIONS(4442), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [53597] = 3, - ACTIONS(3247), 1, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(318), 1, - sym_field_declaration_list, + STATE(2156), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53608] = 3, - ACTIONS(2037), 1, - anon_sym_LBRACE, - STATE(694), 1, - sym_field_initializer_list, + [53608] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53619] = 3, - ACTIONS(3313), 1, - anon_sym_LBRACE, - STATE(1163), 1, - sym_declaration_list, + ACTIONS(4176), 2, + anon_sym_COMMA, + anon_sym_GT, + [53617] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53630] = 3, - ACTIONS(3247), 1, - anon_sym_LBRACE, - STATE(242), 1, - sym_field_declaration_list, + ACTIONS(4167), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [53626] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53641] = 2, + ACTIONS(3783), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53635] = 3, + ACTIONS(2306), 1, + anon_sym_COLON, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4493), 2, - sym_identifier, - sym_metavariable, - [53650] = 3, - ACTIONS(3289), 1, - anon_sym_LBRACE, - STATE(380), 1, - sym_declaration_list, + [53646] = 3, + ACTIONS(3245), 1, + anon_sym_LT, + STATE(526), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53661] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(2139), 1, - sym_block, + [53657] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53672] = 3, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(1206), 1, - sym_parameters, + ACTIONS(4444), 2, + sym_float_literal, + sym_integer_literal, + [53666] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53683] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(2043), 1, - sym_block, + ACTIONS(4446), 2, + sym_identifier, + sym_metavariable, + [53675] = 3, + ACTIONS(4448), 1, + sym_identifier, + ACTIONS(4450), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53694] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(1989), 1, - sym_block, + [53686] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53705] = 3, - ACTIONS(3289), 1, - anon_sym_LBRACE, - STATE(306), 1, - sym_declaration_list, + ACTIONS(4119), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [53695] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53716] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(2042), 1, - sym_block, + ACTIONS(4452), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [53704] = 3, + ACTIONS(3245), 1, + anon_sym_LT, + STATE(580), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53727] = 3, - ACTIONS(260), 1, + [53715] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(2003), 1, + STATE(2186), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53738] = 3, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(4497), 1, - sym_integer_literal, + [53726] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4454), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53749] = 2, + [53737] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(4456), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4499), 2, - anon_sym_RBRACE, - sym_identifier, - [53758] = 3, - ACTIONS(4501), 1, - anon_sym_for, - ACTIONS(4503), 1, - anon_sym_while, + [53748] = 3, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1328), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53769] = 3, - ACTIONS(3289), 1, + [53759] = 3, + ACTIONS(2795), 1, anon_sym_LBRACE, - STATE(236), 1, - sym_declaration_list, + ACTIONS(4458), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53780] = 2, + [53770] = 3, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(308), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4015), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53789] = 3, - ACTIONS(1997), 1, - anon_sym_LT2, - STATE(692), 1, - sym_type_arguments, + [53781] = 3, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(307), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53800] = 3, - ACTIONS(2161), 1, - anon_sym_LPAREN, - STATE(690), 1, - sym_arguments, + [53792] = 3, + ACTIONS(4426), 1, + anon_sym_LBRACE, + ACTIONS(4458), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53811] = 2, - ACTIONS(3), 2, + [53803] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1689), 1, sym_line_comment, - ACTIONS(4106), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53820] = 3, - ACTIONS(662), 1, + ACTIONS(4460), 1, + anon_sym_SEMI, + ACTIONS(4462), 1, + anon_sym_, + [53816] = 3, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(219), 1, - sym_block, + STATE(1074), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53831] = 2, + [53827] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4464), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4505), 2, - sym_identifier, - sym_metavariable, - [53840] = 3, - ACTIONS(21), 1, - anon_sym_LBRACE, - STATE(45), 1, - sym_block, + [53838] = 3, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1365), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53851] = 3, - ACTIONS(662), 1, + [53849] = 3, + ACTIONS(3428), 1, anon_sym_LBRACE, - STATE(208), 1, - sym_block, + STATE(381), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53862] = 2, + [53860] = 3, + ACTIONS(3249), 1, + anon_sym_LBRACE, + STATE(305), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4507), 2, - anon_sym_const, - sym_mutable_specifier, [53871] = 3, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(385), 1, - sym_storage_content_list, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1404), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [53882] = 3, - ACTIONS(662), 1, - anon_sym_LBRACE, - STATE(212), 1, - sym_block, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1202), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53893] = 3, - ACTIONS(4509), 1, - anon_sym_LBRACE, - STATE(1110), 1, - sym_asm_block, + [53893] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53904] = 3, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym_enum_variant_list, + ACTIONS(4466), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53902] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53915] = 3, - ACTIONS(3569), 1, + ACTIONS(4468), 2, + anon_sym_const, + sym_mutable_specifier, + [53911] = 3, + ACTIONS(3428), 1, anon_sym_LBRACE, - STATE(364), 1, + STATE(300), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53926] = 3, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(1378), 1, - sym_parameters, + [53922] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53937] = 3, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - sym_mutable_specifier, + ACTIONS(4088), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [53931] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(3676), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53948] = 3, - ACTIONS(4469), 1, + [53942] = 3, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(4515), 1, - anon_sym_AMP_AMP, + STATE(42), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53959] = 2, + [53953] = 3, + ACTIONS(4470), 1, + anon_sym_in, + ACTIONS(4472), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4517), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53968] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(4519), 1, - anon_sym_SEMI, + [53964] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53979] = 3, - ACTIONS(2727), 1, - anon_sym_LBRACE, - ACTIONS(4515), 1, - anon_sym_AMP_AMP, + ACTIONS(4078), 2, + anon_sym_RBRACE, + sym_identifier, + [53973] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53990] = 3, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(1357), 1, - sym_parameters, + ACTIONS(4052), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53982] = 3, + ACTIONS(4474), 1, + sym_identifier, + ACTIONS(4476), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54001] = 2, + [53993] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4521), 2, - anon_sym_SEMI, - anon_sym_where, - [54010] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(1997), 1, - sym_block, + ACTIONS(4478), 2, + anon_sym_const, + sym_mutable_specifier, + [54002] = 3, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1327), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54021] = 3, - ACTIONS(662), 1, + [54013] = 3, + ACTIONS(3249), 1, anon_sym_LBRACE, - STATE(221), 1, - sym_block, + STATE(317), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54032] = 3, - ACTIONS(3289), 1, + [54024] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(308), 1, - sym_declaration_list, + STATE(2020), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54043] = 3, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(4523), 1, - anon_sym_in, + [54035] = 3, + ACTIONS(667), 1, + anon_sym_LBRACE, + STATE(216), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54054] = 3, - ACTIONS(3289), 1, + [54046] = 3, + ACTIONS(667), 1, anon_sym_LBRACE, - STATE(396), 1, - sym_declaration_list, + STATE(209), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54065] = 3, - ACTIONS(3287), 1, - anon_sym_COLON, - STATE(1720), 1, - sym_trait_bounds, + [54057] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54076] = 3, - ACTIONS(260), 1, + ACTIONS(4480), 2, + anon_sym_const, + sym_mutable_specifier, + [54066] = 3, + ACTIONS(667), 1, anon_sym_LBRACE, - STATE(2016), 1, + STATE(222), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54087] = 3, - ACTIONS(81), 1, - anon_sym_PIPE, - STATE(101), 1, - sym_closure_parameters, + [54077] = 3, + ACTIONS(4482), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_asm_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54098] = 3, - ACTIONS(4491), 1, - anon_sym_LPAREN, - STATE(1908), 1, - sym_asm_parameters, + [54088] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54109] = 3, - ACTIONS(3247), 1, - anon_sym_LBRACE, - STATE(368), 1, - sym_field_declaration_list, + ACTIONS(4484), 2, + sym_identifier, + sym_metavariable, + [54097] = 3, + ACTIONS(3035), 1, + anon_sym_COLON_COLON, + ACTIONS(4486), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54120] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_block, + [54108] = 3, + ACTIONS(3342), 1, + anon_sym_COLON_COLON, + ACTIONS(4488), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54131] = 3, - ACTIONS(4525), 1, - anon_sym_LBRACK, - ACTIONS(4527), 1, - anon_sym_BANG, + [54119] = 3, + ACTIONS(3338), 1, + anon_sym_COLON_COLON, + ACTIONS(4488), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54142] = 3, - ACTIONS(260), 1, - anon_sym_LBRACE, - STATE(2024), 1, - sym_block, + [54130] = 3, + ACTIONS(3336), 1, + anon_sym_COLON_COLON, + ACTIONS(4488), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54153] = 2, + [54141] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4137), 2, - anon_sym_RBRACE, - sym_identifier, - [54162] = 3, - ACTIONS(3569), 1, + ACTIONS(4490), 2, + anon_sym_SEMI, + anon_sym_where, + [54150] = 3, + ACTIONS(3249), 1, anon_sym_LBRACE, - STATE(234), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54173] = 2, + STATE(354), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4529), 2, - anon_sym_SEMI, - anon_sym_where, - [54182] = 3, - ACTIONS(21), 1, + [54161] = 3, + ACTIONS(667), 1, anon_sym_LBRACE, - STATE(64), 1, + STATE(225), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54193] = 3, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(1394), 1, - sym_parameters, + [54172] = 3, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(353), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54204] = 3, - ACTIONS(4491), 1, - anon_sym_LPAREN, - STATE(1947), 1, - sym_asm_parameters, + [54183] = 3, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(348), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54215] = 2, + [54194] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4492), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4531), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [54224] = 2, + [54205] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3882), 2, - anon_sym_RPAREN, + ACTIONS(4494), 2, + anon_sym_RBRACK, anon_sym_COMMA, - [54233] = 2, + [54214] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3826), 2, - anon_sym_RPAREN, + ACTIONS(4496), 2, + anon_sym_RBRACK, anon_sym_COMMA, - [54242] = 3, - ACTIONS(3750), 1, + [54223] = 3, + ACTIONS(3354), 1, + anon_sym_COLON, + ACTIONS(3404), 1, anon_sym_PLUS, - ACTIONS(4533), 1, - anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54253] = 3, - ACTIONS(260), 1, + [54234] = 3, + ACTIONS(4498), 1, anon_sym_LBRACE, - STATE(2148), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54264] = 3, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(1367), 1, - sym_parameters, + STATE(70), 1, + sym_asm_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54275] = 2, + [54245] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3958), 2, - anon_sym_COMMA, + ACTIONS(4500), 2, + anon_sym_RBRACE, + sym_identifier, + [54254] = 3, + ACTIONS(3693), 1, + anon_sym_PLUS, + ACTIONS(4502), 1, anon_sym_GT, - [54284] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4535), 2, - anon_sym_SEMI, - anon_sym_where, - [54293] = 2, + [54265] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4537), 2, - sym_float_literal, - sym_integer_literal, - [54302] = 2, + ACTIONS(4201), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [54274] = 3, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(1410), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4539), 2, - anon_sym_SEMI, - anon_sym_where, - [54311] = 3, - ACTIONS(4541), 1, - anon_sym_LBRACK, - ACTIONS(4543), 1, - anon_sym_BANG, + [54285] = 3, + ACTIONS(21), 1, + anon_sym_LBRACE, + STATE(54), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54322] = 2, - ACTIONS(3870), 1, - anon_sym_RPAREN, + [54296] = 3, + ACTIONS(3428), 1, + anon_sym_LBRACE, + STATE(322), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54330] = 2, - ACTIONS(4545), 1, - anon_sym_SEMI, + [54307] = 3, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(314), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54338] = 2, - ACTIONS(4547), 1, - anon_sym_RBRACK, + [54318] = 3, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(4504), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54346] = 2, - ACTIONS(4549), 1, - sym_identifier, + [54329] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54354] = 2, - ACTIONS(4551), 1, + ACTIONS(3877), 2, anon_sym_RBRACE, + anon_sym_COMMA, + [54338] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54362] = 2, - ACTIONS(3974), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54370] = 2, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54378] = 2, - ACTIONS(4555), 1, - anon_sym_EQ_GT, + ACTIONS(3949), 2, + anon_sym_COMMA, + anon_sym_GT, + [54347] = 3, + ACTIONS(265), 1, + anon_sym_LBRACE, + STATE(2097), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54386] = 2, - ACTIONS(4557), 1, - sym_identifier, + [54358] = 3, + ACTIONS(265), 1, + anon_sym_LBRACE, + STATE(2101), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54394] = 2, - ACTIONS(4559), 1, - anon_sym_SEMI, + [54369] = 3, + ACTIONS(2220), 1, + anon_sym_COLON, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54402] = 2, - ACTIONS(4561), 1, - anon_sym_COLON_COLON, + [54380] = 3, + ACTIONS(2252), 1, + anon_sym_COLON, + ACTIONS(3404), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54410] = 2, - ACTIONS(3953), 1, - sym_identifier, + [54391] = 3, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54418] = 2, - ACTIONS(2974), 1, - anon_sym_COLON_COLON, + [54402] = 3, + ACTIONS(4418), 1, + anon_sym_LPAREN, + STATE(1851), 1, + sym_asm_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54426] = 2, - ACTIONS(4563), 1, - sym_identifier, + [54413] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54434] = 2, - ACTIONS(4565), 1, - anon_sym_RBRACE, + ACTIONS(4510), 2, + anon_sym_SEMI, + anon_sym_where, + [54422] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54442] = 2, - ACTIONS(4567), 1, + ACTIONS(4512), 2, anon_sym_SEMI, + anon_sym_where, + [54431] = 3, + ACTIONS(4514), 1, + anon_sym_in, + ACTIONS(4516), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54450] = 2, - ACTIONS(4569), 1, - sym_identifier, + [54442] = 3, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(262), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54458] = 2, - ACTIONS(4571), 1, + [54453] = 3, + ACTIONS(3404), 1, + anon_sym_PLUS, + ACTIONS(4518), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54466] = 2, - ACTIONS(3930), 1, - sym_identifier, + [54464] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54474] = 2, - ACTIONS(4573), 1, - sym_identifier, + ACTIONS(4038), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [54473] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(1862), 2, + anon_sym_RBRACK, + anon_sym_COMMA, [54482] = 2, - ACTIONS(4575), 1, - sym_identifier, + ACTIONS(4520), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54490] = 2, - ACTIONS(4577), 1, - sym_identifier, + ACTIONS(4020), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54498] = 2, - ACTIONS(4579), 1, - anon_sym_RPAREN, + ACTIONS(4352), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54506] = 2, - ACTIONS(4581), 1, - sym_identifier, + ACTIONS(4522), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54514] = 2, - ACTIONS(4583), 1, + ACTIONS(4524), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54522] = 2, - ACTIONS(4585), 1, - sym_identifier, + ACTIONS(4526), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54530] = 2, - ACTIONS(3922), 1, + ACTIONS(4010), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54538] = 2, - ACTIONS(4587), 1, + ACTIONS(4528), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54546] = 2, - ACTIONS(4589), 1, - anon_sym_SEMI, + ACTIONS(4530), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54554] = 2, - ACTIONS(3991), 1, + ACTIONS(4111), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54562] = 2, - ACTIONS(4591), 1, + ACTIONS(4532), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54570] = 2, - ACTIONS(4593), 1, + ACTIONS(4534), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54578] = 2, - ACTIONS(4595), 1, + ACTIONS(3971), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54586] = 2, - ACTIONS(4597), 1, - sym_identifier, + ACTIONS(4536), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54594] = 2, - ACTIONS(4599), 1, - sym_identifier, + ACTIONS(4538), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54602] = 2, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, + ACTIONS(4540), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54610] = 2, - ACTIONS(4601), 1, - anon_sym_SEMI, + ACTIONS(4542), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54618] = 2, - ACTIONS(4603), 1, - anon_sym_SEMI, + ACTIONS(4544), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54626] = 2, - ACTIONS(4605), 1, - anon_sym_SEMI, + ACTIONS(4546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54634] = 2, - ACTIONS(4607), 1, - sym_identifier, + ACTIONS(4548), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54642] = 2, - ACTIONS(4609), 1, + ACTIONS(4550), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54650] = 2, - ACTIONS(4611), 1, - sym_identifier, + ACTIONS(4552), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54658] = 2, - ACTIONS(4613), 1, + ACTIONS(3908), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54666] = 2, - ACTIONS(4615), 1, - anon_sym_EQ_GT, + ACTIONS(4554), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54674] = 2, - ACTIONS(4617), 1, - sym_identifier, + ACTIONS(4556), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54682] = 2, - ACTIONS(4619), 1, - anon_sym_RBRACE, + ACTIONS(4558), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54690] = 2, - ACTIONS(4030), 1, + ACTIONS(4203), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54698] = 2, - ACTIONS(4621), 1, - anon_sym_SEMI, + ACTIONS(4560), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54706] = 2, - ACTIONS(3021), 1, - anon_sym_COLON_COLON, + ACTIONS(4562), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54714] = 2, - ACTIONS(4623), 1, - sym_identifier, + ACTIONS(4564), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54722] = 2, - ACTIONS(4087), 1, + ACTIONS(3979), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54730] = 2, - ACTIONS(4625), 1, - sym_integer_literal, + ACTIONS(4566), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54738] = 2, - ACTIONS(4627), 1, + ACTIONS(4568), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54746] = 2, - ACTIONS(4541), 1, - anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54754] = 2, - ACTIONS(4629), 1, - anon_sym_SEMI, + ACTIONS(4572), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54762] = 2, - ACTIONS(4631), 1, + ACTIONS(4574), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54770] = 2, - ACTIONS(2978), 1, - anon_sym_COLON_COLON, + ACTIONS(4576), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54778] = 2, - ACTIONS(2980), 1, - anon_sym_COLON_COLON, + ACTIONS(4578), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54786] = 2, - ACTIONS(4633), 1, - anon_sym_RPAREN, + ACTIONS(4580), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54794] = 2, - ACTIONS(4635), 1, - anon_sym_SEMI, + ACTIONS(4582), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54802] = 2, - ACTIONS(4637), 1, - sym_identifier, + ACTIONS(4584), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54810] = 2, - ACTIONS(4639), 1, - anon_sym_EQ_GT, + ACTIONS(4586), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54818] = 2, - ACTIONS(4641), 1, - sym_identifier, + ACTIONS(4588), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54826] = 2, - ACTIONS(4643), 1, - anon_sym_RPAREN, + ACTIONS(4590), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54834] = 2, - ACTIONS(4645), 1, - anon_sym_fn, + ACTIONS(4592), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54842] = 2, - ACTIONS(4647), 1, - anon_sym_fn, + ACTIONS(4594), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54850] = 2, - ACTIONS(4649), 1, + ACTIONS(4596), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54858] = 2, - ACTIONS(4651), 1, - sym_identifier, + ACTIONS(4598), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54866] = 2, - ACTIONS(4653), 1, - anon_sym_COLON_COLON, + ACTIONS(4600), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54874] = 2, - ACTIONS(4655), 1, - anon_sym_RBRACE, + ACTIONS(4602), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54882] = 2, - ACTIONS(4657), 1, - anon_sym_SEMI, + ACTIONS(4604), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54890] = 2, - ACTIONS(4659), 1, - anon_sym_COLON_COLON, + ACTIONS(4606), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54898] = 2, - ACTIONS(4661), 1, - anon_sym_RBRACK, + ACTIONS(3007), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54906] = 2, - ACTIONS(4663), 1, - sym_identifier, + ACTIONS(4608), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54914] = 2, - ACTIONS(4665), 1, + ACTIONS(4610), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54922] = 2, - ACTIONS(4667), 1, - sym_identifier, + ACTIONS(4612), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54930] = 2, - ACTIONS(4669), 1, + ACTIONS(4614), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54938] = 2, - ACTIONS(4671), 1, - anon_sym_SEMI, + ACTIONS(4506), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54946] = 2, - ACTIONS(4372), 1, - anon_sym_RBRACE, + ACTIONS(3811), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54954] = 2, - ACTIONS(4673), 1, - anon_sym_RBRACE, + ACTIONS(4290), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54962] = 2, - ACTIONS(4675), 1, - anon_sym_SEMI, + ACTIONS(2968), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54970] = 2, - ACTIONS(3647), 1, - anon_sym_RPAREN, + ACTIONS(2964), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54978] = 2, - ACTIONS(4341), 1, - anon_sym_RBRACE, + ACTIONS(4616), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54986] = 2, - ACTIONS(4677), 1, - anon_sym_SEMI, + ACTIONS(4618), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54994] = 2, - ACTIONS(4679), 1, - anon_sym_LBRACE, + ACTIONS(4620), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55002] = 2, - ACTIONS(2165), 1, - anon_sym_COLON_COLON, + ACTIONS(4622), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55010] = 2, - ACTIONS(4681), 1, - anon_sym_EQ_GT, + ACTIONS(4624), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55018] = 2, - ACTIONS(4683), 1, - sym_identifier, + ACTIONS(4626), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55026] = 2, - ACTIONS(4685), 1, - anon_sym_RPAREN, + ACTIONS(4628), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55034] = 2, - ACTIONS(2577), 1, - anon_sym_RPAREN, + ACTIONS(4630), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55042] = 2, - ACTIONS(4687), 1, - anon_sym_RBRACE, + ACTIONS(4632), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55050] = 2, - ACTIONS(4689), 1, + ACTIONS(4634), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55058] = 2, - ACTIONS(4691), 1, - sym_identifier, + ACTIONS(4636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55066] = 2, - ACTIONS(4240), 1, - sym_identifier, + ACTIONS(3869), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55074] = 2, - ACTIONS(4693), 1, + ACTIONS(4638), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55082] = 2, - ACTIONS(4695), 1, - anon_sym_SEMI, + ACTIONS(3678), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55090] = 2, - ACTIONS(4697), 1, - anon_sym_RBRACK, + ACTIONS(4640), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55098] = 2, - ACTIONS(4699), 1, - sym_identifier, + ACTIONS(4642), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55106] = 2, - ACTIONS(4202), 1, + ACTIONS(4644), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55114] = 2, - ACTIONS(4210), 1, + ACTIONS(4646), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55122] = 2, - ACTIONS(4701), 1, - anon_sym_SEMI, + ACTIONS(4648), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55130] = 2, - ACTIONS(4703), 1, - anon_sym_SEMI, + ACTIONS(4650), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55138] = 2, - ACTIONS(4705), 1, + ACTIONS(4652), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55146] = 2, - ACTIONS(4707), 1, - anon_sym_COLON_COLON, + ACTIONS(4654), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55154] = 2, - ACTIONS(426), 1, - anon_sym_RBRACK, + ACTIONS(3408), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55162] = 2, - ACTIONS(4709), 1, - anon_sym_LBRACK, + ACTIONS(3594), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55170] = 2, - ACTIONS(3926), 1, - anon_sym_DOT, + ACTIONS(4656), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55178] = 2, - ACTIONS(4711), 1, + ACTIONS(4658), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55186] = 2, - ACTIONS(4713), 1, - sym_identifier, + ACTIONS(4660), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55194] = 2, - ACTIONS(4715), 1, - sym_identifier, + ACTIONS(4016), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55202] = 2, - ACTIONS(4717), 1, - sym_integer_literal, + ACTIONS(2128), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55210] = 2, - ACTIONS(4719), 1, + ACTIONS(4662), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55218] = 2, - ACTIONS(4115), 1, - sym_identifier, + ACTIONS(3935), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55226] = 2, - ACTIONS(4721), 1, - anon_sym_LBRACK, + ACTIONS(4664), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55234] = 2, - ACTIONS(4723), 1, - anon_sym_COLON, + ACTIONS(3933), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55242] = 2, - ACTIONS(4725), 1, - sym_identifier, + ACTIONS(4666), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55250] = 2, - ACTIONS(4124), 1, - anon_sym_GT, + ACTIONS(4668), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55258] = 2, - ACTIONS(4044), 1, + ACTIONS(4670), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55266] = 2, - ACTIONS(4727), 1, - sym_identifier, + ACTIONS(2962), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55274] = 2, - ACTIONS(4729), 1, - sym_identifier, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55282] = 2, - ACTIONS(4731), 1, - sym_identifier, + ACTIONS(4672), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55290] = 2, - ACTIONS(4733), 1, - anon_sym_fn, + ACTIONS(4674), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55298] = 2, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, + ACTIONS(4676), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55306] = 2, - ACTIONS(3518), 1, - sym_identifier, + ACTIONS(4678), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55314] = 2, - ACTIONS(4735), 1, - sym_identifier, + ACTIONS(4680), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55322] = 2, - ACTIONS(3205), 1, - anon_sym_fn, + ACTIONS(3998), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55330] = 2, - ACTIONS(4737), 1, - anon_sym_LBRACE, + ACTIONS(4682), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55338] = 2, - ACTIONS(4739), 1, - ts_builtin_sym_end, + ACTIONS(4684), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55346] = 2, - ACTIONS(4741), 1, - anon_sym_RBRACK, + ACTIONS(4686), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55354] = 2, - ACTIONS(654), 1, - anon_sym_RBRACK, + ACTIONS(4688), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55362] = 2, - ACTIONS(4743), 1, - anon_sym_SEMI, + ACTIONS(4690), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55370] = 2, - ACTIONS(4745), 1, + ACTIONS(3993), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55378] = 2, - ACTIONS(4747), 1, - sym_identifier, + ACTIONS(4692), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55386] = 2, - ACTIONS(3983), 1, - anon_sym_RBRACE, + ACTIONS(4694), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55394] = 2, - ACTIONS(4749), 1, + ACTIONS(4696), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55402] = 2, - ACTIONS(4751), 1, - anon_sym_COLON, + ACTIONS(4698), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55410] = 2, - ACTIONS(4753), 1, - anon_sym_EQ, + ACTIONS(4700), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55418] = 2, - ACTIONS(4755), 1, - anon_sym_COLON, + ACTIONS(4702), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55426] = 2, - ACTIONS(4757), 1, - sym_identifier, + ACTIONS(4704), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55434] = 2, - ACTIONS(4759), 1, + ACTIONS(4706), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55442] = 2, - ACTIONS(4761), 1, + ACTIONS(4708), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55450] = 2, - ACTIONS(4763), 1, - sym_identifier, + ACTIONS(443), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55458] = 2, - ACTIONS(3903), 1, - anon_sym_RBRACK, + ACTIONS(4710), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55466] = 2, - ACTIONS(4765), 1, - sym_integer_literal, + ACTIONS(4063), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55474] = 2, - ACTIONS(4767), 1, - anon_sym_LBRACK, + ACTIONS(4282), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55482] = 2, - ACTIONS(4769), 1, - anon_sym_RPAREN, + ACTIONS(4712), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55490] = 2, - ACTIONS(2139), 1, - anon_sym_COLON_COLON, + ACTIONS(4714), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55498] = 2, - ACTIONS(2079), 1, - anon_sym_COLON_COLON, + ACTIONS(4716), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55506] = 2, - ACTIONS(4771), 1, + ACTIONS(4718), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55514] = 2, - ACTIONS(4773), 1, - anon_sym_SEMI, + ACTIONS(4720), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55522] = 2, - ACTIONS(4775), 1, - anon_sym_COLON_COLON, + ACTIONS(4722), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55530] = 2, - ACTIONS(4777), 1, - anon_sym_SEMI, + ACTIONS(657), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55538] = 2, - ACTIONS(4779), 1, - anon_sym_LBRACE, + ACTIONS(2600), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55546] = 2, - ACTIONS(4781), 1, - anon_sym_EQ_GT, + ACTIONS(4724), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55554] = 2, - ACTIONS(4783), 1, - sym_identifier, + ACTIONS(4726), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55562] = 2, - ACTIONS(4785), 1, + ACTIONS(4728), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55570] = 2, - ACTIONS(4787), 1, - sym_identifier, + ACTIONS(4730), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55578] = 2, - ACTIONS(3912), 1, - anon_sym_RBRACE, + ACTIONS(4732), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55586] = 2, - ACTIONS(3593), 1, - anon_sym_RPAREN, + ACTIONS(3338), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55594] = 2, - ACTIONS(3938), 1, - anon_sym_RBRACE, + ACTIONS(4734), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55602] = 2, - ACTIONS(4789), 1, - anon_sym_SEMI, + ACTIONS(4736), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55610] = 2, - ACTIONS(4791), 1, - anon_sym_LBRACK, + ACTIONS(4250), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55618] = 2, - ACTIONS(3637), 1, - anon_sym_RPAREN, + ACTIONS(3179), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55626] = 2, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, + ACTIONS(4738), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55634] = 2, - ACTIONS(4793), 1, - anon_sym_SEMI, + ACTIONS(4740), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55642] = 2, - ACTIONS(4795), 1, + ACTIONS(4742), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55650] = 2, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, + ACTIONS(4744), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55658] = 2, - ACTIONS(3442), 1, - anon_sym_COLON_COLON, + ACTIONS(4746), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55666] = 2, - ACTIONS(4797), 1, - anon_sym_COLON_COLON, + ACTIONS(4748), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55674] = 2, - ACTIONS(4799), 1, - anon_sym_COLON_COLON, + ACTIONS(4750), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55682] = 2, - ACTIONS(4801), 1, - anon_sym_COLON_COLON, + ACTIONS(4163), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55690] = 2, - ACTIONS(4803), 1, - sym_identifier, + ACTIONS(4752), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55698] = 2, - ACTIONS(4219), 1, - sym_identifier, + ACTIONS(4754), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55706] = 2, - ACTIONS(4805), 1, - sym_identifier, + ACTIONS(4756), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55714] = 2, - ACTIONS(4807), 1, - anon_sym_fn, + ACTIONS(4758), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55722] = 2, - ACTIONS(4809), 1, - sym_identifier, + ACTIONS(2122), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55730] = 2, - ACTIONS(4234), 1, - anon_sym_RBRACE, + ACTIONS(2154), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55738] = 2, - ACTIONS(4811), 1, - anon_sym_LBRACK, + ACTIONS(2966), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55746] = 2, - ACTIONS(4813), 1, - anon_sym_COLON, + ACTIONS(4760), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55754] = 2, - ACTIONS(4815), 1, - anon_sym_SEMI, + ACTIONS(4762), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55762] = 2, - ACTIONS(2982), 1, - anon_sym_COLON_COLON, + ACTIONS(4764), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55770] = 2, - ACTIONS(4382), 1, - anon_sym_RBRACE, + ACTIONS(4766), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55778] = 2, - ACTIONS(4817), 1, - anon_sym_COLON_COLON, + ACTIONS(4768), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55786] = 2, - ACTIONS(4298), 1, - anon_sym_RPAREN, + ACTIONS(4770), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55794] = 2, - ACTIONS(4819), 1, - anon_sym_LBRACE, + ACTIONS(4772), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55802] = 2, - ACTIONS(3794), 1, + ACTIONS(4774), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55810] = 2, - ACTIONS(4268), 1, + ACTIONS(4207), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55818] = 2, - ACTIONS(4821), 1, - sym_identifier, + ACTIONS(4776), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55826] = 2, - ACTIONS(4823), 1, + ACTIONS(3924), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55834] = 2, - ACTIONS(4825), 1, + ACTIONS(4778), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55842] = 2, - ACTIONS(3187), 1, - anon_sym_fn, + ACTIONS(4780), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55850] = 2, - ACTIONS(4827), 1, - anon_sym_COLON, + ACTIONS(4782), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55858] = 2, - ACTIONS(4829), 1, - anon_sym_fn, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55866] = 2, - ACTIONS(4831), 1, - anon_sym_RPAREN, + ACTIONS(4784), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55874] = 2, - ACTIONS(4178), 1, - anon_sym_RBRACE, + ACTIONS(4786), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55882] = 2, - ACTIONS(4833), 1, - anon_sym_COLON, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [55890] = 2, - ACTIONS(4835), 1, + ACTIONS(3512), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55898] = 2, + ACTIONS(4788), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55906] = 2, + ACTIONS(4790), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55914] = 2, + ACTIONS(4792), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55922] = 2, + ACTIONS(4794), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55930] = 2, + ACTIONS(4195), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55938] = 2, + ACTIONS(4796), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55946] = 2, + ACTIONS(4798), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55954] = 2, + ACTIONS(4800), 1, + anon_sym_fn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55962] = 2, + ACTIONS(4802), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55970] = 2, + ACTIONS(4236), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55978] = 2, + ACTIONS(4804), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55986] = 2, + ACTIONS(4806), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55994] = 2, + ACTIONS(4808), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56002] = 2, + ACTIONS(4810), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56010] = 2, + ACTIONS(4812), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56018] = 2, + ACTIONS(4814), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56026] = 2, + ACTIONS(4816), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56034] = 2, + ACTIONS(4818), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56042] = 2, + ACTIONS(4820), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56050] = 2, + ACTIONS(4822), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56058] = 2, + ACTIONS(4824), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56066] = 2, + ACTIONS(4286), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56074] = 2, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56082] = 2, + ACTIONS(4828), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56090] = 2, + ACTIONS(4830), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56098] = 2, + ACTIONS(3703), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56106] = 2, + ACTIONS(3636), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56114] = 2, + ACTIONS(4832), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56122] = 2, + ACTIONS(3161), 1, + anon_sym_fn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56130] = 2, + ACTIONS(4834), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56138] = 2, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56146] = 2, + ACTIONS(4838), 1, + anon_sym_fn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56154] = 2, + ACTIONS(4320), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56162] = 2, + ACTIONS(3711), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56170] = 2, + ACTIONS(4840), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56178] = 2, + ACTIONS(4842), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -100801,1712 +103540,1714 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(479)] = 0, - [SMALL_STATE(480)] = 131, - [SMALL_STATE(481)] = 206, - [SMALL_STATE(482)] = 337, - [SMALL_STATE(483)] = 468, - [SMALL_STATE(484)] = 537, - [SMALL_STATE(485)] = 606, - [SMALL_STATE(486)] = 675, - [SMALL_STATE(487)] = 745, - [SMALL_STATE(488)] = 815, - [SMALL_STATE(489)] = 885, - [SMALL_STATE(490)] = 957, - [SMALL_STATE(491)] = 1027, - [SMALL_STATE(492)] = 1097, - [SMALL_STATE(493)] = 1167, - [SMALL_STATE(494)] = 1237, - [SMALL_STATE(495)] = 1307, - [SMALL_STATE(496)] = 1432, - [SMALL_STATE(497)] = 1554, - [SMALL_STATE(498)] = 1676, - [SMALL_STATE(499)] = 1798, - [SMALL_STATE(500)] = 1920, - [SMALL_STATE(501)] = 2042, - [SMALL_STATE(502)] = 2164, - [SMALL_STATE(503)] = 2227, - [SMALL_STATE(504)] = 2346, - [SMALL_STATE(505)] = 2409, - [SMALL_STATE(506)] = 2472, - [SMALL_STATE(507)] = 2591, - [SMALL_STATE(508)] = 2710, - [SMALL_STATE(509)] = 2773, - [SMALL_STATE(510)] = 2889, - [SMALL_STATE(511)] = 3005, - [SMALL_STATE(512)] = 3121, - [SMALL_STATE(513)] = 3237, - [SMALL_STATE(514)] = 3353, - [SMALL_STATE(515)] = 3469, - [SMALL_STATE(516)] = 3585, - [SMALL_STATE(517)] = 3697, - [SMALL_STATE(518)] = 3806, - [SMALL_STATE(519)] = 3915, - [SMALL_STATE(520)] = 4024, - [SMALL_STATE(521)] = 4133, - [SMALL_STATE(522)] = 4242, - [SMALL_STATE(523)] = 4351, - [SMALL_STATE(524)] = 4460, - [SMALL_STATE(525)] = 4569, - [SMALL_STATE(526)] = 4678, - [SMALL_STATE(527)] = 4787, - [SMALL_STATE(528)] = 4896, - [SMALL_STATE(529)] = 5005, - [SMALL_STATE(530)] = 5114, - [SMALL_STATE(531)] = 5220, - [SMALL_STATE(532)] = 5326, - [SMALL_STATE(533)] = 5386, - [SMALL_STATE(534)] = 5492, - [SMALL_STATE(535)] = 5598, - [SMALL_STATE(536)] = 5704, - [SMALL_STATE(537)] = 5810, - [SMALL_STATE(538)] = 5916, - [SMALL_STATE(539)] = 6022, - [SMALL_STATE(540)] = 6128, - [SMALL_STATE(541)] = 6234, - [SMALL_STATE(542)] = 6340, - [SMALL_STATE(543)] = 6446, - [SMALL_STATE(544)] = 6552, - [SMALL_STATE(545)] = 6658, - [SMALL_STATE(546)] = 6764, - [SMALL_STATE(547)] = 6870, - [SMALL_STATE(548)] = 6976, - [SMALL_STATE(549)] = 7082, - [SMALL_STATE(550)] = 7188, - [SMALL_STATE(551)] = 7294, - [SMALL_STATE(552)] = 7362, - [SMALL_STATE(553)] = 7468, - [SMALL_STATE(554)] = 7574, - [SMALL_STATE(555)] = 7680, - [SMALL_STATE(556)] = 7786, - [SMALL_STATE(557)] = 7892, - [SMALL_STATE(558)] = 7998, - [SMALL_STATE(559)] = 8104, - [SMALL_STATE(560)] = 8210, - [SMALL_STATE(561)] = 8316, - [SMALL_STATE(562)] = 8422, - [SMALL_STATE(563)] = 8528, - [SMALL_STATE(564)] = 8634, - [SMALL_STATE(565)] = 8740, - [SMALL_STATE(566)] = 8846, - [SMALL_STATE(567)] = 8952, - [SMALL_STATE(568)] = 9058, - [SMALL_STATE(569)] = 9164, - [SMALL_STATE(570)] = 9270, - [SMALL_STATE(571)] = 9376, - [SMALL_STATE(572)] = 9482, - [SMALL_STATE(573)] = 9550, - [SMALL_STATE(574)] = 9656, - [SMALL_STATE(575)] = 9762, - [SMALL_STATE(576)] = 9868, - [SMALL_STATE(577)] = 9974, - [SMALL_STATE(578)] = 10080, - [SMALL_STATE(579)] = 10186, - [SMALL_STATE(580)] = 10292, - [SMALL_STATE(581)] = 10398, - [SMALL_STATE(582)] = 10504, - [SMALL_STATE(583)] = 10610, - [SMALL_STATE(584)] = 10716, - [SMALL_STATE(585)] = 10774, - [SMALL_STATE(586)] = 10880, - [SMALL_STATE(587)] = 10986, - [SMALL_STATE(588)] = 11092, - [SMALL_STATE(589)] = 11198, - [SMALL_STATE(590)] = 11304, - [SMALL_STATE(591)] = 11410, - [SMALL_STATE(592)] = 11516, - [SMALL_STATE(593)] = 11622, - [SMALL_STATE(594)] = 11728, - [SMALL_STATE(595)] = 11834, - [SMALL_STATE(596)] = 11940, - [SMALL_STATE(597)] = 12046, - [SMALL_STATE(598)] = 12152, - [SMALL_STATE(599)] = 12258, - [SMALL_STATE(600)] = 12364, - [SMALL_STATE(601)] = 12470, - [SMALL_STATE(602)] = 12576, - [SMALL_STATE(603)] = 12682, - [SMALL_STATE(604)] = 12788, - [SMALL_STATE(605)] = 12894, - [SMALL_STATE(606)] = 13000, - [SMALL_STATE(607)] = 13106, - [SMALL_STATE(608)] = 13212, - [SMALL_STATE(609)] = 13318, - [SMALL_STATE(610)] = 13424, - [SMALL_STATE(611)] = 13482, - [SMALL_STATE(612)] = 13588, - [SMALL_STATE(613)] = 13694, - [SMALL_STATE(614)] = 13800, - [SMALL_STATE(615)] = 13906, - [SMALL_STATE(616)] = 14012, - [SMALL_STATE(617)] = 14118, - [SMALL_STATE(618)] = 14224, - [SMALL_STATE(619)] = 14289, - [SMALL_STATE(620)] = 14354, - [SMALL_STATE(621)] = 14412, - [SMALL_STATE(622)] = 14470, - [SMALL_STATE(623)] = 14530, - [SMALL_STATE(624)] = 14592, - [SMALL_STATE(625)] = 14654, - [SMALL_STATE(626)] = 14712, - [SMALL_STATE(627)] = 14770, - [SMALL_STATE(628)] = 14843, - [SMALL_STATE(629)] = 14900, - [SMALL_STATE(630)] = 14955, - [SMALL_STATE(631)] = 15010, - [SMALL_STATE(632)] = 15067, - [SMALL_STATE(633)] = 15124, - [SMALL_STATE(634)] = 15179, - [SMALL_STATE(635)] = 15234, - [SMALL_STATE(636)] = 15291, - [SMALL_STATE(637)] = 15348, - [SMALL_STATE(638)] = 15405, - [SMALL_STATE(639)] = 15462, - [SMALL_STATE(640)] = 15519, - [SMALL_STATE(641)] = 15576, - [SMALL_STATE(642)] = 15635, - [SMALL_STATE(643)] = 15690, - [SMALL_STATE(644)] = 15747, - [SMALL_STATE(645)] = 15802, - [SMALL_STATE(646)] = 15857, - [SMALL_STATE(647)] = 15912, - [SMALL_STATE(648)] = 15969, - [SMALL_STATE(649)] = 16026, - [SMALL_STATE(650)] = 16081, - [SMALL_STATE(651)] = 16138, - [SMALL_STATE(652)] = 16193, - [SMALL_STATE(653)] = 16248, - [SMALL_STATE(654)] = 16303, - [SMALL_STATE(655)] = 16358, - [SMALL_STATE(656)] = 16413, - [SMALL_STATE(657)] = 16472, - [SMALL_STATE(658)] = 16529, - [SMALL_STATE(659)] = 16584, - [SMALL_STATE(660)] = 16641, - [SMALL_STATE(661)] = 16696, - [SMALL_STATE(662)] = 16751, - [SMALL_STATE(663)] = 16805, - [SMALL_STATE(664)] = 16859, - [SMALL_STATE(665)] = 16913, - [SMALL_STATE(666)] = 16967, - [SMALL_STATE(667)] = 17021, - [SMALL_STATE(668)] = 17075, - [SMALL_STATE(669)] = 17129, - [SMALL_STATE(670)] = 17183, - [SMALL_STATE(671)] = 17237, - [SMALL_STATE(672)] = 17291, - [SMALL_STATE(673)] = 17345, - [SMALL_STATE(674)] = 17399, - [SMALL_STATE(675)] = 17453, - [SMALL_STATE(676)] = 17507, - [SMALL_STATE(677)] = 17561, - [SMALL_STATE(678)] = 17615, - [SMALL_STATE(679)] = 17669, - [SMALL_STATE(680)] = 17723, - [SMALL_STATE(681)] = 17777, - [SMALL_STATE(682)] = 17831, - [SMALL_STATE(683)] = 17885, - [SMALL_STATE(684)] = 17939, - [SMALL_STATE(685)] = 17993, - [SMALL_STATE(686)] = 18047, - [SMALL_STATE(687)] = 18101, - [SMALL_STATE(688)] = 18155, - [SMALL_STATE(689)] = 18227, - [SMALL_STATE(690)] = 18281, - [SMALL_STATE(691)] = 18335, - [SMALL_STATE(692)] = 18389, - [SMALL_STATE(693)] = 18443, - [SMALL_STATE(694)] = 18497, - [SMALL_STATE(695)] = 18551, - [SMALL_STATE(696)] = 18605, - [SMALL_STATE(697)] = 18659, - [SMALL_STATE(698)] = 18715, - [SMALL_STATE(699)] = 18771, - [SMALL_STATE(700)] = 18827, - [SMALL_STATE(701)] = 18881, - [SMALL_STATE(702)] = 18935, - [SMALL_STATE(703)] = 18989, - [SMALL_STATE(704)] = 19043, - [SMALL_STATE(705)] = 19097, - [SMALL_STATE(706)] = 19151, - [SMALL_STATE(707)] = 19205, - [SMALL_STATE(708)] = 19259, - [SMALL_STATE(709)] = 19313, - [SMALL_STATE(710)] = 19367, - [SMALL_STATE(711)] = 19421, - [SMALL_STATE(712)] = 19475, - [SMALL_STATE(713)] = 19529, - [SMALL_STATE(714)] = 19583, - [SMALL_STATE(715)] = 19637, - [SMALL_STATE(716)] = 19691, - [SMALL_STATE(717)] = 19745, - [SMALL_STATE(718)] = 19799, - [SMALL_STATE(719)] = 19853, - [SMALL_STATE(720)] = 19907, - [SMALL_STATE(721)] = 19961, - [SMALL_STATE(722)] = 20015, - [SMALL_STATE(723)] = 20087, - [SMALL_STATE(724)] = 20143, - [SMALL_STATE(725)] = 20197, - [SMALL_STATE(726)] = 20251, - [SMALL_STATE(727)] = 20305, - [SMALL_STATE(728)] = 20359, - [SMALL_STATE(729)] = 20413, - [SMALL_STATE(730)] = 20467, - [SMALL_STATE(731)] = 20521, - [SMALL_STATE(732)] = 20575, - [SMALL_STATE(733)] = 20629, - [SMALL_STATE(734)] = 20683, - [SMALL_STATE(735)] = 20737, - [SMALL_STATE(736)] = 20791, - [SMALL_STATE(737)] = 20845, - [SMALL_STATE(738)] = 20899, - [SMALL_STATE(739)] = 20953, - [SMALL_STATE(740)] = 21007, - [SMALL_STATE(741)] = 21061, - [SMALL_STATE(742)] = 21115, - [SMALL_STATE(743)] = 21169, - [SMALL_STATE(744)] = 21223, - [SMALL_STATE(745)] = 21277, - [SMALL_STATE(746)] = 21331, - [SMALL_STATE(747)] = 21385, - [SMALL_STATE(748)] = 21439, - [SMALL_STATE(749)] = 21522, - [SMALL_STATE(750)] = 21579, - [SMALL_STATE(751)] = 21666, - [SMALL_STATE(752)] = 21753, - [SMALL_STATE(753)] = 21836, - [SMALL_STATE(754)] = 21919, - [SMALL_STATE(755)] = 21986, - [SMALL_STATE(756)] = 22057, - [SMALL_STATE(757)] = 22140, - [SMALL_STATE(758)] = 22223, - [SMALL_STATE(759)] = 22296, - [SMALL_STATE(760)] = 22377, - [SMALL_STATE(761)] = 22460, - [SMALL_STATE(762)] = 22521, - [SMALL_STATE(763)] = 22582, - [SMALL_STATE(764)] = 22645, - [SMALL_STATE(765)] = 22710, - [SMALL_STATE(766)] = 22789, - [SMALL_STATE(767)] = 22864, - [SMALL_STATE(768)] = 22933, - [SMALL_STATE(769)] = 22994, - [SMALL_STATE(770)] = 23054, - [SMALL_STATE(771)] = 23114, - [SMALL_STATE(772)] = 23170, - [SMALL_STATE(773)] = 23226, - [SMALL_STATE(774)] = 23286, - [SMALL_STATE(775)] = 23346, - [SMALL_STATE(776)] = 23403, - [SMALL_STATE(777)] = 23462, - [SMALL_STATE(778)] = 23521, - [SMALL_STATE(779)] = 23580, - [SMALL_STATE(780)] = 23639, - [SMALL_STATE(781)] = 23692, - [SMALL_STATE(782)] = 23751, - [SMALL_STATE(783)] = 23810, - [SMALL_STATE(784)] = 23869, - [SMALL_STATE(785)] = 23928, - [SMALL_STATE(786)] = 23981, - [SMALL_STATE(787)] = 24037, - [SMALL_STATE(788)] = 24093, - [SMALL_STATE(789)] = 24149, - [SMALL_STATE(790)] = 24199, - [SMALL_STATE(791)] = 24249, - [SMALL_STATE(792)] = 24301, - [SMALL_STATE(793)] = 24355, - [SMALL_STATE(794)] = 24411, - [SMALL_STATE(795)] = 24463, - [SMALL_STATE(796)] = 24515, - [SMALL_STATE(797)] = 24567, - [SMALL_STATE(798)] = 24622, - [SMALL_STATE(799)] = 24675, - [SMALL_STATE(800)] = 24764, - [SMALL_STATE(801)] = 24851, - [SMALL_STATE(802)] = 24904, - [SMALL_STATE(803)] = 24955, - [SMALL_STATE(804)] = 25008, - [SMALL_STATE(805)] = 25059, - [SMALL_STATE(806)] = 25114, - [SMALL_STATE(807)] = 25201, - [SMALL_STATE(808)] = 25254, - [SMALL_STATE(809)] = 25343, - [SMALL_STATE(810)] = 25398, - [SMALL_STATE(811)] = 25453, - [SMALL_STATE(812)] = 25503, - [SMALL_STATE(813)] = 25589, - [SMALL_STATE(814)] = 25669, - [SMALL_STATE(815)] = 25749, - [SMALL_STATE(816)] = 25801, - [SMALL_STATE(817)] = 25851, - [SMALL_STATE(818)] = 25899, - [SMALL_STATE(819)] = 25949, - [SMALL_STATE(820)] = 25999, - [SMALL_STATE(821)] = 26049, - [SMALL_STATE(822)] = 26097, - [SMALL_STATE(823)] = 26147, - [SMALL_STATE(824)] = 26197, - [SMALL_STATE(825)] = 26249, - [SMALL_STATE(826)] = 26297, - [SMALL_STATE(827)] = 26345, - [SMALL_STATE(828)] = 26431, - [SMALL_STATE(829)] = 26514, - [SMALL_STATE(830)] = 26597, - [SMALL_STATE(831)] = 26680, - [SMALL_STATE(832)] = 26763, - [SMALL_STATE(833)] = 26846, - [SMALL_STATE(834)] = 26929, - [SMALL_STATE(835)] = 27012, - [SMALL_STATE(836)] = 27095, - [SMALL_STATE(837)] = 27176, - [SMALL_STATE(838)] = 27259, - [SMALL_STATE(839)] = 27342, - [SMALL_STATE(840)] = 27425, - [SMALL_STATE(841)] = 27508, - [SMALL_STATE(842)] = 27591, - [SMALL_STATE(843)] = 27674, - [SMALL_STATE(844)] = 27757, - [SMALL_STATE(845)] = 27840, - [SMALL_STATE(846)] = 27923, - [SMALL_STATE(847)] = 28006, - [SMALL_STATE(848)] = 28089, - [SMALL_STATE(849)] = 28172, - [SMALL_STATE(850)] = 28255, - [SMALL_STATE(851)] = 28338, - [SMALL_STATE(852)] = 28421, - [SMALL_STATE(853)] = 28470, - [SMALL_STATE(854)] = 28551, - [SMALL_STATE(855)] = 28632, - [SMALL_STATE(856)] = 28713, - [SMALL_STATE(857)] = 28796, - [SMALL_STATE(858)] = 28873, - [SMALL_STATE(859)] = 28956, - [SMALL_STATE(860)] = 29039, - [SMALL_STATE(861)] = 29122, - [SMALL_STATE(862)] = 29205, - [SMALL_STATE(863)] = 29286, - [SMALL_STATE(864)] = 29369, - [SMALL_STATE(865)] = 29450, - [SMALL_STATE(866)] = 29507, - [SMALL_STATE(867)] = 29562, - [SMALL_STATE(868)] = 29639, - [SMALL_STATE(869)] = 29722, - [SMALL_STATE(870)] = 29799, - [SMALL_STATE(871)] = 29854, - [SMALL_STATE(872)] = 29909, - [SMALL_STATE(873)] = 29968, - [SMALL_STATE(874)] = 30045, - [SMALL_STATE(875)] = 30128, - [SMALL_STATE(876)] = 30197, - [SMALL_STATE(877)] = 30260, - [SMALL_STATE(878)] = 30333, - [SMALL_STATE(879)] = 30408, - [SMALL_STATE(880)] = 30485, - [SMALL_STATE(881)] = 30568, - [SMALL_STATE(882)] = 30635, - [SMALL_STATE(883)] = 30700, - [SMALL_STATE(884)] = 30781, - [SMALL_STATE(885)] = 30862, - [SMALL_STATE(886)] = 30943, - [SMALL_STATE(887)] = 31004, - [SMALL_STATE(888)] = 31081, - [SMALL_STATE(889)] = 31162, - [SMALL_STATE(890)] = 31245, - [SMALL_STATE(891)] = 31294, - [SMALL_STATE(892)] = 31377, - [SMALL_STATE(893)] = 31460, - [SMALL_STATE(894)] = 31541, - [SMALL_STATE(895)] = 31619, - [SMALL_STATE(896)] = 31699, - [SMALL_STATE(897)] = 31779, - [SMALL_STATE(898)] = 31859, - [SMALL_STATE(899)] = 31937, - [SMALL_STATE(900)] = 32017, - [SMALL_STATE(901)] = 32097, - [SMALL_STATE(902)] = 32177, - [SMALL_STATE(903)] = 32257, - [SMALL_STATE(904)] = 32337, - [SMALL_STATE(905)] = 32415, - [SMALL_STATE(906)] = 32495, - [SMALL_STATE(907)] = 32575, - [SMALL_STATE(908)] = 32655, - [SMALL_STATE(909)] = 32735, - [SMALL_STATE(910)] = 32813, - [SMALL_STATE(911)] = 32893, - [SMALL_STATE(912)] = 32973, - [SMALL_STATE(913)] = 33053, - [SMALL_STATE(914)] = 33133, - [SMALL_STATE(915)] = 33213, - [SMALL_STATE(916)] = 33293, - [SMALL_STATE(917)] = 33373, - [SMALL_STATE(918)] = 33453, - [SMALL_STATE(919)] = 33528, - [SMALL_STATE(920)] = 33605, - [SMALL_STATE(921)] = 33677, - [SMALL_STATE(922)] = 33749, - [SMALL_STATE(923)] = 33797, - [SMALL_STATE(924)] = 33840, - [SMALL_STATE(925)] = 33883, - [SMALL_STATE(926)] = 33926, - [SMALL_STATE(927)] = 33969, - [SMALL_STATE(928)] = 34012, - [SMALL_STATE(929)] = 34081, - [SMALL_STATE(930)] = 34150, - [SMALL_STATE(931)] = 34193, - [SMALL_STATE(932)] = 34270, - [SMALL_STATE(933)] = 34339, - [SMALL_STATE(934)] = 34408, - [SMALL_STATE(935)] = 34485, - [SMALL_STATE(936)] = 34554, - [SMALL_STATE(937)] = 34631, - [SMALL_STATE(938)] = 34707, - [SMALL_STATE(939)] = 34783, - [SMALL_STATE(940)] = 34859, - [SMALL_STATE(941)] = 34935, - [SMALL_STATE(942)] = 35011, - [SMALL_STATE(943)] = 35053, - [SMALL_STATE(944)] = 35095, - [SMALL_STATE(945)] = 35137, - [SMALL_STATE(946)] = 35177, - [SMALL_STATE(947)] = 35217, - [SMALL_STATE(948)] = 35259, - [SMALL_STATE(949)] = 35299, - [SMALL_STATE(950)] = 35361, - [SMALL_STATE(951)] = 35423, - [SMALL_STATE(952)] = 35485, - [SMALL_STATE(953)] = 35547, - [SMALL_STATE(954)] = 35609, - [SMALL_STATE(955)] = 35668, - [SMALL_STATE(956)] = 35727, - [SMALL_STATE(957)] = 35786, - [SMALL_STATE(958)] = 35842, - [SMALL_STATE(959)] = 35898, - [SMALL_STATE(960)] = 35933, - [SMALL_STATE(961)] = 35968, - [SMALL_STATE(962)] = 36003, - [SMALL_STATE(963)] = 36046, - [SMALL_STATE(964)] = 36076, - [SMALL_STATE(965)] = 36106, - [SMALL_STATE(966)] = 36136, - [SMALL_STATE(967)] = 36166, - [SMALL_STATE(968)] = 36196, - [SMALL_STATE(969)] = 36225, - [SMALL_STATE(970)] = 36252, - [SMALL_STATE(971)] = 36281, - [SMALL_STATE(972)] = 36308, - [SMALL_STATE(973)] = 36337, - [SMALL_STATE(974)] = 36364, - [SMALL_STATE(975)] = 36393, - [SMALL_STATE(976)] = 36419, - [SMALL_STATE(977)] = 36455, - [SMALL_STATE(978)] = 36481, - [SMALL_STATE(979)] = 36507, - [SMALL_STATE(980)] = 36533, - [SMALL_STATE(981)] = 36559, - [SMALL_STATE(982)] = 36585, - [SMALL_STATE(983)] = 36611, - [SMALL_STATE(984)] = 36637, - [SMALL_STATE(985)] = 36673, - [SMALL_STATE(986)] = 36698, - [SMALL_STATE(987)] = 36725, - [SMALL_STATE(988)] = 36758, - [SMALL_STATE(989)] = 36783, - [SMALL_STATE(990)] = 36808, - [SMALL_STATE(991)] = 36839, - [SMALL_STATE(992)] = 36864, - [SMALL_STATE(993)] = 36891, - [SMALL_STATE(994)] = 36918, - [SMALL_STATE(995)] = 36943, - [SMALL_STATE(996)] = 36968, - [SMALL_STATE(997)] = 36993, - [SMALL_STATE(998)] = 37018, - [SMALL_STATE(999)] = 37045, - [SMALL_STATE(1000)] = 37072, - [SMALL_STATE(1001)] = 37097, - [SMALL_STATE(1002)] = 37122, - [SMALL_STATE(1003)] = 37155, - [SMALL_STATE(1004)] = 37177, - [SMALL_STATE(1005)] = 37199, - [SMALL_STATE(1006)] = 37221, - [SMALL_STATE(1007)] = 37243, - [SMALL_STATE(1008)] = 37265, - [SMALL_STATE(1009)] = 37287, - [SMALL_STATE(1010)] = 37309, - [SMALL_STATE(1011)] = 37331, - [SMALL_STATE(1012)] = 37353, - [SMALL_STATE(1013)] = 37375, - [SMALL_STATE(1014)] = 37397, - [SMALL_STATE(1015)] = 37419, - [SMALL_STATE(1016)] = 37441, - [SMALL_STATE(1017)] = 37463, - [SMALL_STATE(1018)] = 37485, - [SMALL_STATE(1019)] = 37509, - [SMALL_STATE(1020)] = 37531, - [SMALL_STATE(1021)] = 37553, - [SMALL_STATE(1022)] = 37575, - [SMALL_STATE(1023)] = 37597, - [SMALL_STATE(1024)] = 37619, - [SMALL_STATE(1025)] = 37643, - [SMALL_STATE(1026)] = 37667, - [SMALL_STATE(1027)] = 37689, - [SMALL_STATE(1028)] = 37713, - [SMALL_STATE(1029)] = 37735, - [SMALL_STATE(1030)] = 37757, - [SMALL_STATE(1031)] = 37781, - [SMALL_STATE(1032)] = 37803, - [SMALL_STATE(1033)] = 37827, - [SMALL_STATE(1034)] = 37849, - [SMALL_STATE(1035)] = 37871, - [SMALL_STATE(1036)] = 37893, - [SMALL_STATE(1037)] = 37921, - [SMALL_STATE(1038)] = 37943, - [SMALL_STATE(1039)] = 37965, - [SMALL_STATE(1040)] = 37987, - [SMALL_STATE(1041)] = 38009, - [SMALL_STATE(1042)] = 38031, - [SMALL_STATE(1043)] = 38055, - [SMALL_STATE(1044)] = 38077, - [SMALL_STATE(1045)] = 38099, - [SMALL_STATE(1046)] = 38123, - [SMALL_STATE(1047)] = 38145, - [SMALL_STATE(1048)] = 38167, - [SMALL_STATE(1049)] = 38189, - [SMALL_STATE(1050)] = 38211, - [SMALL_STATE(1051)] = 38233, - [SMALL_STATE(1052)] = 38257, - [SMALL_STATE(1053)] = 38281, - [SMALL_STATE(1054)] = 38303, - [SMALL_STATE(1055)] = 38325, - [SMALL_STATE(1056)] = 38347, - [SMALL_STATE(1057)] = 38369, - [SMALL_STATE(1058)] = 38391, - [SMALL_STATE(1059)] = 38415, - [SMALL_STATE(1060)] = 38437, - [SMALL_STATE(1061)] = 38459, - [SMALL_STATE(1062)] = 38481, - [SMALL_STATE(1063)] = 38503, - [SMALL_STATE(1064)] = 38525, - [SMALL_STATE(1065)] = 38547, - [SMALL_STATE(1066)] = 38569, - [SMALL_STATE(1067)] = 38591, - [SMALL_STATE(1068)] = 38615, - [SMALL_STATE(1069)] = 38637, - [SMALL_STATE(1070)] = 38659, - [SMALL_STATE(1071)] = 38681, - [SMALL_STATE(1072)] = 38703, - [SMALL_STATE(1073)] = 38725, - [SMALL_STATE(1074)] = 38747, - [SMALL_STATE(1075)] = 38771, - [SMALL_STATE(1076)] = 38793, - [SMALL_STATE(1077)] = 38815, - [SMALL_STATE(1078)] = 38837, - [SMALL_STATE(1079)] = 38859, - [SMALL_STATE(1080)] = 38881, - [SMALL_STATE(1081)] = 38903, - [SMALL_STATE(1082)] = 38925, - [SMALL_STATE(1083)] = 38947, - [SMALL_STATE(1084)] = 38969, - [SMALL_STATE(1085)] = 38991, - [SMALL_STATE(1086)] = 39013, - [SMALL_STATE(1087)] = 39035, - [SMALL_STATE(1088)] = 39059, - [SMALL_STATE(1089)] = 39081, - [SMALL_STATE(1090)] = 39103, - [SMALL_STATE(1091)] = 39127, - [SMALL_STATE(1092)] = 39149, - [SMALL_STATE(1093)] = 39171, - [SMALL_STATE(1094)] = 39193, - [SMALL_STATE(1095)] = 39217, - [SMALL_STATE(1096)] = 39239, - [SMALL_STATE(1097)] = 39261, - [SMALL_STATE(1098)] = 39283, - [SMALL_STATE(1099)] = 39305, - [SMALL_STATE(1100)] = 39329, - [SMALL_STATE(1101)] = 39353, - [SMALL_STATE(1102)] = 39375, - [SMALL_STATE(1103)] = 39397, - [SMALL_STATE(1104)] = 39419, - [SMALL_STATE(1105)] = 39441, - [SMALL_STATE(1106)] = 39463, - [SMALL_STATE(1107)] = 39485, - [SMALL_STATE(1108)] = 39507, - [SMALL_STATE(1109)] = 39529, - [SMALL_STATE(1110)] = 39551, - [SMALL_STATE(1111)] = 39573, - [SMALL_STATE(1112)] = 39595, - [SMALL_STATE(1113)] = 39617, - [SMALL_STATE(1114)] = 39639, - [SMALL_STATE(1115)] = 39663, - [SMALL_STATE(1116)] = 39685, - [SMALL_STATE(1117)] = 39709, - [SMALL_STATE(1118)] = 39731, - [SMALL_STATE(1119)] = 39753, - [SMALL_STATE(1120)] = 39775, - [SMALL_STATE(1121)] = 39797, - [SMALL_STATE(1122)] = 39819, - [SMALL_STATE(1123)] = 39841, - [SMALL_STATE(1124)] = 39863, - [SMALL_STATE(1125)] = 39885, - [SMALL_STATE(1126)] = 39907, - [SMALL_STATE(1127)] = 39929, - [SMALL_STATE(1128)] = 39951, - [SMALL_STATE(1129)] = 39973, - [SMALL_STATE(1130)] = 39995, - [SMALL_STATE(1131)] = 40017, - [SMALL_STATE(1132)] = 40039, - [SMALL_STATE(1133)] = 40061, - [SMALL_STATE(1134)] = 40083, - [SMALL_STATE(1135)] = 40105, - [SMALL_STATE(1136)] = 40127, - [SMALL_STATE(1137)] = 40149, - [SMALL_STATE(1138)] = 40171, - [SMALL_STATE(1139)] = 40193, - [SMALL_STATE(1140)] = 40215, - [SMALL_STATE(1141)] = 40237, - [SMALL_STATE(1142)] = 40259, - [SMALL_STATE(1143)] = 40281, - [SMALL_STATE(1144)] = 40303, - [SMALL_STATE(1145)] = 40325, - [SMALL_STATE(1146)] = 40347, - [SMALL_STATE(1147)] = 40369, - [SMALL_STATE(1148)] = 40391, - [SMALL_STATE(1149)] = 40413, - [SMALL_STATE(1150)] = 40435, - [SMALL_STATE(1151)] = 40457, - [SMALL_STATE(1152)] = 40479, - [SMALL_STATE(1153)] = 40501, - [SMALL_STATE(1154)] = 40523, - [SMALL_STATE(1155)] = 40545, - [SMALL_STATE(1156)] = 40567, - [SMALL_STATE(1157)] = 40589, - [SMALL_STATE(1158)] = 40611, - [SMALL_STATE(1159)] = 40633, - [SMALL_STATE(1160)] = 40655, - [SMALL_STATE(1161)] = 40677, - [SMALL_STATE(1162)] = 40699, - [SMALL_STATE(1163)] = 40721, - [SMALL_STATE(1164)] = 40743, - [SMALL_STATE(1165)] = 40765, - [SMALL_STATE(1166)] = 40787, - [SMALL_STATE(1167)] = 40809, - [SMALL_STATE(1168)] = 40831, - [SMALL_STATE(1169)] = 40853, - [SMALL_STATE(1170)] = 40875, - [SMALL_STATE(1171)] = 40897, - [SMALL_STATE(1172)] = 40919, - [SMALL_STATE(1173)] = 40941, - [SMALL_STATE(1174)] = 40963, - [SMALL_STATE(1175)] = 40985, - [SMALL_STATE(1176)] = 41007, - [SMALL_STATE(1177)] = 41029, - [SMALL_STATE(1178)] = 41051, - [SMALL_STATE(1179)] = 41073, - [SMALL_STATE(1180)] = 41095, - [SMALL_STATE(1181)] = 41117, - [SMALL_STATE(1182)] = 41139, - [SMALL_STATE(1183)] = 41161, - [SMALL_STATE(1184)] = 41183, - [SMALL_STATE(1185)] = 41205, - [SMALL_STATE(1186)] = 41227, - [SMALL_STATE(1187)] = 41249, - [SMALL_STATE(1188)] = 41271, - [SMALL_STATE(1189)] = 41293, - [SMALL_STATE(1190)] = 41315, - [SMALL_STATE(1191)] = 41337, - [SMALL_STATE(1192)] = 41359, - [SMALL_STATE(1193)] = 41381, - [SMALL_STATE(1194)] = 41403, - [SMALL_STATE(1195)] = 41425, - [SMALL_STATE(1196)] = 41466, - [SMALL_STATE(1197)] = 41489, - [SMALL_STATE(1198)] = 41514, - [SMALL_STATE(1199)] = 41557, - [SMALL_STATE(1200)] = 41598, - [SMALL_STATE(1201)] = 41621, - [SMALL_STATE(1202)] = 41645, - [SMALL_STATE(1203)] = 41669, - [SMALL_STATE(1204)] = 41693, - [SMALL_STATE(1205)] = 41717, - [SMALL_STATE(1206)] = 41741, - [SMALL_STATE(1207)] = 41765, - [SMALL_STATE(1208)] = 41807, - [SMALL_STATE(1209)] = 41831, - [SMALL_STATE(1210)] = 41855, - [SMALL_STATE(1211)] = 41879, - [SMALL_STATE(1212)] = 41903, - [SMALL_STATE(1213)] = 41927, - [SMALL_STATE(1214)] = 41949, - [SMALL_STATE(1215)] = 41973, - [SMALL_STATE(1216)] = 41994, - [SMALL_STATE(1217)] = 42015, - [SMALL_STATE(1218)] = 42036, - [SMALL_STATE(1219)] = 42057, - [SMALL_STATE(1220)] = 42078, - [SMALL_STATE(1221)] = 42099, - [SMALL_STATE(1222)] = 42120, - [SMALL_STATE(1223)] = 42141, - [SMALL_STATE(1224)] = 42162, - [SMALL_STATE(1225)] = 42183, - [SMALL_STATE(1226)] = 42204, - [SMALL_STATE(1227)] = 42225, - [SMALL_STATE(1228)] = 42246, - [SMALL_STATE(1229)] = 42267, - [SMALL_STATE(1230)] = 42288, - [SMALL_STATE(1231)] = 42309, - [SMALL_STATE(1232)] = 42330, - [SMALL_STATE(1233)] = 42351, - [SMALL_STATE(1234)] = 42372, - [SMALL_STATE(1235)] = 42393, - [SMALL_STATE(1236)] = 42414, - [SMALL_STATE(1237)] = 42435, - [SMALL_STATE(1238)] = 42456, - [SMALL_STATE(1239)] = 42477, - [SMALL_STATE(1240)] = 42498, - [SMALL_STATE(1241)] = 42519, - [SMALL_STATE(1242)] = 42540, - [SMALL_STATE(1243)] = 42561, - [SMALL_STATE(1244)] = 42582, - [SMALL_STATE(1245)] = 42603, - [SMALL_STATE(1246)] = 42624, - [SMALL_STATE(1247)] = 42645, - [SMALL_STATE(1248)] = 42669, - [SMALL_STATE(1249)] = 42693, - [SMALL_STATE(1250)] = 42717, - [SMALL_STATE(1251)] = 42739, - [SMALL_STATE(1252)] = 42763, - [SMALL_STATE(1253)] = 42785, - [SMALL_STATE(1254)] = 42807, - [SMALL_STATE(1255)] = 42829, - [SMALL_STATE(1256)] = 42853, - [SMALL_STATE(1257)] = 42881, - [SMALL_STATE(1258)] = 42905, - [SMALL_STATE(1259)] = 42929, - [SMALL_STATE(1260)] = 42957, - [SMALL_STATE(1261)] = 42981, - [SMALL_STATE(1262)] = 43010, - [SMALL_STATE(1263)] = 43029, - [SMALL_STATE(1264)] = 43058, - [SMALL_STATE(1265)] = 43093, - [SMALL_STATE(1266)] = 43118, - [SMALL_STATE(1267)] = 43147, - [SMALL_STATE(1268)] = 43172, - [SMALL_STATE(1269)] = 43201, - [SMALL_STATE(1270)] = 43236, - [SMALL_STATE(1271)] = 43263, - [SMALL_STATE(1272)] = 43288, - [SMALL_STATE(1273)] = 43317, - [SMALL_STATE(1274)] = 43343, - [SMALL_STATE(1275)] = 43369, - [SMALL_STATE(1276)] = 43395, - [SMALL_STATE(1277)] = 43425, - [SMALL_STATE(1278)] = 43451, - [SMALL_STATE(1279)] = 43479, - [SMALL_STATE(1280)] = 43511, - [SMALL_STATE(1281)] = 43541, - [SMALL_STATE(1282)] = 43573, - [SMALL_STATE(1283)] = 43589, - [SMALL_STATE(1284)] = 43611, - [SMALL_STATE(1285)] = 43641, - [SMALL_STATE(1286)] = 43667, - [SMALL_STATE(1287)] = 43699, - [SMALL_STATE(1288)] = 43729, - [SMALL_STATE(1289)] = 43757, - [SMALL_STATE(1290)] = 43785, - [SMALL_STATE(1291)] = 43817, - [SMALL_STATE(1292)] = 43843, - [SMALL_STATE(1293)] = 43859, - [SMALL_STATE(1294)] = 43875, - [SMALL_STATE(1295)] = 43904, - [SMALL_STATE(1296)] = 43931, - [SMALL_STATE(1297)] = 43958, - [SMALL_STATE(1298)] = 43985, - [SMALL_STATE(1299)] = 44008, - [SMALL_STATE(1300)] = 44031, - [SMALL_STATE(1301)] = 44058, - [SMALL_STATE(1302)] = 44085, - [SMALL_STATE(1303)] = 44112, - [SMALL_STATE(1304)] = 44139, - [SMALL_STATE(1305)] = 44162, - [SMALL_STATE(1306)] = 44189, - [SMALL_STATE(1307)] = 44216, - [SMALL_STATE(1308)] = 44245, - [SMALL_STATE(1309)] = 44268, - [SMALL_STATE(1310)] = 44295, - [SMALL_STATE(1311)] = 44322, - [SMALL_STATE(1312)] = 44349, - [SMALL_STATE(1313)] = 44376, - [SMALL_STATE(1314)] = 44401, - [SMALL_STATE(1315)] = 44428, - [SMALL_STATE(1316)] = 44453, - [SMALL_STATE(1317)] = 44478, - [SMALL_STATE(1318)] = 44501, - [SMALL_STATE(1319)] = 44528, - [SMALL_STATE(1320)] = 44553, - [SMALL_STATE(1321)] = 44582, - [SMALL_STATE(1322)] = 44609, - [SMALL_STATE(1323)] = 44638, - [SMALL_STATE(1324)] = 44663, - [SMALL_STATE(1325)] = 44687, - [SMALL_STATE(1326)] = 44711, - [SMALL_STATE(1327)] = 44735, - [SMALL_STATE(1328)] = 44761, - [SMALL_STATE(1329)] = 44785, - [SMALL_STATE(1330)] = 44809, - [SMALL_STATE(1331)] = 44835, - [SMALL_STATE(1332)] = 44859, - [SMALL_STATE(1333)] = 44885, - [SMALL_STATE(1334)] = 44905, - [SMALL_STATE(1335)] = 44929, - [SMALL_STATE(1336)] = 44945, - [SMALL_STATE(1337)] = 44961, - [SMALL_STATE(1338)] = 44985, - [SMALL_STATE(1339)] = 45009, - [SMALL_STATE(1340)] = 45033, - [SMALL_STATE(1341)] = 45049, - [SMALL_STATE(1342)] = 45071, - [SMALL_STATE(1343)] = 45087, - [SMALL_STATE(1344)] = 45101, - [SMALL_STATE(1345)] = 45115, - [SMALL_STATE(1346)] = 45139, - [SMALL_STATE(1347)] = 45153, - [SMALL_STATE(1348)] = 45167, - [SMALL_STATE(1349)] = 45181, - [SMALL_STATE(1350)] = 45205, - [SMALL_STATE(1351)] = 45229, - [SMALL_STATE(1352)] = 45253, - [SMALL_STATE(1353)] = 45279, - [SMALL_STATE(1354)] = 45303, - [SMALL_STATE(1355)] = 45329, - [SMALL_STATE(1356)] = 45353, - [SMALL_STATE(1357)] = 45376, - [SMALL_STATE(1358)] = 45399, - [SMALL_STATE(1359)] = 45414, - [SMALL_STATE(1360)] = 45437, - [SMALL_STATE(1361)] = 45460, - [SMALL_STATE(1362)] = 45483, - [SMALL_STATE(1363)] = 45506, - [SMALL_STATE(1364)] = 45527, - [SMALL_STATE(1365)] = 45546, - [SMALL_STATE(1366)] = 45561, - [SMALL_STATE(1367)] = 45584, - [SMALL_STATE(1368)] = 45607, - [SMALL_STATE(1369)] = 45624, - [SMALL_STATE(1370)] = 45641, - [SMALL_STATE(1371)] = 45664, - [SMALL_STATE(1372)] = 45687, - [SMALL_STATE(1373)] = 45710, - [SMALL_STATE(1374)] = 45733, - [SMALL_STATE(1375)] = 45750, - [SMALL_STATE(1376)] = 45773, - [SMALL_STATE(1377)] = 45796, - [SMALL_STATE(1378)] = 45815, - [SMALL_STATE(1379)] = 45838, - [SMALL_STATE(1380)] = 45861, - [SMALL_STATE(1381)] = 45880, - [SMALL_STATE(1382)] = 45897, - [SMALL_STATE(1383)] = 45920, - [SMALL_STATE(1384)] = 45939, - [SMALL_STATE(1385)] = 45962, - [SMALL_STATE(1386)] = 45979, - [SMALL_STATE(1387)] = 45998, - [SMALL_STATE(1388)] = 46021, - [SMALL_STATE(1389)] = 46042, - [SMALL_STATE(1390)] = 46065, - [SMALL_STATE(1391)] = 46086, - [SMALL_STATE(1392)] = 46109, - [SMALL_STATE(1393)] = 46132, - [SMALL_STATE(1394)] = 46155, - [SMALL_STATE(1395)] = 46178, - [SMALL_STATE(1396)] = 46201, - [SMALL_STATE(1397)] = 46218, - [SMALL_STATE(1398)] = 46241, - [SMALL_STATE(1399)] = 46260, - [SMALL_STATE(1400)] = 46283, - [SMALL_STATE(1401)] = 46306, - [SMALL_STATE(1402)] = 46329, - [SMALL_STATE(1403)] = 46352, - [SMALL_STATE(1404)] = 46369, - [SMALL_STATE(1405)] = 46392, - [SMALL_STATE(1406)] = 46415, - [SMALL_STATE(1407)] = 46438, - [SMALL_STATE(1408)] = 46455, - [SMALL_STATE(1409)] = 46478, - [SMALL_STATE(1410)] = 46501, - [SMALL_STATE(1411)] = 46518, - [SMALL_STATE(1412)] = 46541, - [SMALL_STATE(1413)] = 46560, - [SMALL_STATE(1414)] = 46577, - [SMALL_STATE(1415)] = 46600, - [SMALL_STATE(1416)] = 46623, - [SMALL_STATE(1417)] = 46646, - [SMALL_STATE(1418)] = 46663, - [SMALL_STATE(1419)] = 46686, - [SMALL_STATE(1420)] = 46709, - [SMALL_STATE(1421)] = 46732, - [SMALL_STATE(1422)] = 46755, - [SMALL_STATE(1423)] = 46772, - [SMALL_STATE(1424)] = 46795, - [SMALL_STATE(1425)] = 46816, - [SMALL_STATE(1426)] = 46833, - [SMALL_STATE(1427)] = 46856, - [SMALL_STATE(1428)] = 46877, - [SMALL_STATE(1429)] = 46900, - [SMALL_STATE(1430)] = 46923, - [SMALL_STATE(1431)] = 46946, - [SMALL_STATE(1432)] = 46969, - [SMALL_STATE(1433)] = 46986, - [SMALL_STATE(1434)] = 47003, - [SMALL_STATE(1435)] = 47026, - [SMALL_STATE(1436)] = 47044, - [SMALL_STATE(1437)] = 47064, - [SMALL_STATE(1438)] = 47084, - [SMALL_STATE(1439)] = 47100, - [SMALL_STATE(1440)] = 47120, - [SMALL_STATE(1441)] = 47136, - [SMALL_STATE(1442)] = 47156, - [SMALL_STATE(1443)] = 47176, - [SMALL_STATE(1444)] = 47192, - [SMALL_STATE(1445)] = 47212, - [SMALL_STATE(1446)] = 47226, - [SMALL_STATE(1447)] = 47242, - [SMALL_STATE(1448)] = 47258, - [SMALL_STATE(1449)] = 47276, - [SMALL_STATE(1450)] = 47294, - [SMALL_STATE(1451)] = 47310, - [SMALL_STATE(1452)] = 47330, - [SMALL_STATE(1453)] = 47346, - [SMALL_STATE(1454)] = 47362, - [SMALL_STATE(1455)] = 47382, - [SMALL_STATE(1456)] = 47400, - [SMALL_STATE(1457)] = 47416, - [SMALL_STATE(1458)] = 47432, - [SMALL_STATE(1459)] = 47450, - [SMALL_STATE(1460)] = 47470, - [SMALL_STATE(1461)] = 47486, - [SMALL_STATE(1462)] = 47500, - [SMALL_STATE(1463)] = 47516, - [SMALL_STATE(1464)] = 47532, - [SMALL_STATE(1465)] = 47552, - [SMALL_STATE(1466)] = 47572, - [SMALL_STATE(1467)] = 47588, - [SMALL_STATE(1468)] = 47608, - [SMALL_STATE(1469)] = 47626, - [SMALL_STATE(1470)] = 47646, - [SMALL_STATE(1471)] = 47666, - [SMALL_STATE(1472)] = 47686, - [SMALL_STATE(1473)] = 47706, - [SMALL_STATE(1474)] = 47726, - [SMALL_STATE(1475)] = 47746, - [SMALL_STATE(1476)] = 47762, - [SMALL_STATE(1477)] = 47782, - [SMALL_STATE(1478)] = 47802, - [SMALL_STATE(1479)] = 47818, - [SMALL_STATE(1480)] = 47834, - [SMALL_STATE(1481)] = 47850, - [SMALL_STATE(1482)] = 47870, - [SMALL_STATE(1483)] = 47886, - [SMALL_STATE(1484)] = 47906, - [SMALL_STATE(1485)] = 47923, - [SMALL_STATE(1486)] = 47940, - [SMALL_STATE(1487)] = 47957, - [SMALL_STATE(1488)] = 47974, - [SMALL_STATE(1489)] = 47991, - [SMALL_STATE(1490)] = 48008, - [SMALL_STATE(1491)] = 48023, - [SMALL_STATE(1492)] = 48036, - [SMALL_STATE(1493)] = 48053, - [SMALL_STATE(1494)] = 48070, - [SMALL_STATE(1495)] = 48087, - [SMALL_STATE(1496)] = 48102, - [SMALL_STATE(1497)] = 48119, - [SMALL_STATE(1498)] = 48132, - [SMALL_STATE(1499)] = 48149, - [SMALL_STATE(1500)] = 48164, - [SMALL_STATE(1501)] = 48179, - [SMALL_STATE(1502)] = 48194, - [SMALL_STATE(1503)] = 48207, - [SMALL_STATE(1504)] = 48224, - [SMALL_STATE(1505)] = 48241, - [SMALL_STATE(1506)] = 48258, - [SMALL_STATE(1507)] = 48271, - [SMALL_STATE(1508)] = 48288, - [SMALL_STATE(1509)] = 48305, - [SMALL_STATE(1510)] = 48322, - [SMALL_STATE(1511)] = 48339, - [SMALL_STATE(1512)] = 48356, - [SMALL_STATE(1513)] = 48373, - [SMALL_STATE(1514)] = 48390, - [SMALL_STATE(1515)] = 48405, - [SMALL_STATE(1516)] = 48422, - [SMALL_STATE(1517)] = 48437, - [SMALL_STATE(1518)] = 48454, - [SMALL_STATE(1519)] = 48467, - [SMALL_STATE(1520)] = 48484, - [SMALL_STATE(1521)] = 48499, - [SMALL_STATE(1522)] = 48514, - [SMALL_STATE(1523)] = 48531, - [SMALL_STATE(1524)] = 48546, - [SMALL_STATE(1525)] = 48563, - [SMALL_STATE(1526)] = 48580, - [SMALL_STATE(1527)] = 48597, - [SMALL_STATE(1528)] = 48612, - [SMALL_STATE(1529)] = 48629, - [SMALL_STATE(1530)] = 48642, - [SMALL_STATE(1531)] = 48659, - [SMALL_STATE(1532)] = 48672, - [SMALL_STATE(1533)] = 48685, - [SMALL_STATE(1534)] = 48702, - [SMALL_STATE(1535)] = 48719, - [SMALL_STATE(1536)] = 48732, - [SMALL_STATE(1537)] = 48747, - [SMALL_STATE(1538)] = 48764, - [SMALL_STATE(1539)] = 48779, - [SMALL_STATE(1540)] = 48796, - [SMALL_STATE(1541)] = 48813, - [SMALL_STATE(1542)] = 48830, - [SMALL_STATE(1543)] = 48847, - [SMALL_STATE(1544)] = 48864, - [SMALL_STATE(1545)] = 48879, - [SMALL_STATE(1546)] = 48896, - [SMALL_STATE(1547)] = 48909, - [SMALL_STATE(1548)] = 48924, - [SMALL_STATE(1549)] = 48939, - [SMALL_STATE(1550)] = 48952, - [SMALL_STATE(1551)] = 48969, - [SMALL_STATE(1552)] = 48982, - [SMALL_STATE(1553)] = 48997, - [SMALL_STATE(1554)] = 49014, - [SMALL_STATE(1555)] = 49029, - [SMALL_STATE(1556)] = 49042, - [SMALL_STATE(1557)] = 49059, - [SMALL_STATE(1558)] = 49076, - [SMALL_STATE(1559)] = 49091, - [SMALL_STATE(1560)] = 49104, - [SMALL_STATE(1561)] = 49121, - [SMALL_STATE(1562)] = 49136, - [SMALL_STATE(1563)] = 49151, - [SMALL_STATE(1564)] = 49166, - [SMALL_STATE(1565)] = 49183, - [SMALL_STATE(1566)] = 49198, - [SMALL_STATE(1567)] = 49215, - [SMALL_STATE(1568)] = 49228, - [SMALL_STATE(1569)] = 49245, - [SMALL_STATE(1570)] = 49260, - [SMALL_STATE(1571)] = 49274, - [SMALL_STATE(1572)] = 49288, - [SMALL_STATE(1573)] = 49302, - [SMALL_STATE(1574)] = 49314, - [SMALL_STATE(1575)] = 49328, - [SMALL_STATE(1576)] = 49342, - [SMALL_STATE(1577)] = 49356, - [SMALL_STATE(1578)] = 49368, - [SMALL_STATE(1579)] = 49382, - [SMALL_STATE(1580)] = 49396, - [SMALL_STATE(1581)] = 49410, - [SMALL_STATE(1582)] = 49420, - [SMALL_STATE(1583)] = 49434, - [SMALL_STATE(1584)] = 49448, - [SMALL_STATE(1585)] = 49460, - [SMALL_STATE(1586)] = 49474, - [SMALL_STATE(1587)] = 49486, - [SMALL_STATE(1588)] = 49498, - [SMALL_STATE(1589)] = 49510, - [SMALL_STATE(1590)] = 49524, - [SMALL_STATE(1591)] = 49538, - [SMALL_STATE(1592)] = 49552, - [SMALL_STATE(1593)] = 49566, - [SMALL_STATE(1594)] = 49578, - [SMALL_STATE(1595)] = 49592, - [SMALL_STATE(1596)] = 49604, - [SMALL_STATE(1597)] = 49614, - [SMALL_STATE(1598)] = 49628, - [SMALL_STATE(1599)] = 49642, - [SMALL_STATE(1600)] = 49656, - [SMALL_STATE(1601)] = 49670, - [SMALL_STATE(1602)] = 49684, - [SMALL_STATE(1603)] = 49696, - [SMALL_STATE(1604)] = 49710, - [SMALL_STATE(1605)] = 49724, - [SMALL_STATE(1606)] = 49738, - [SMALL_STATE(1607)] = 49752, - [SMALL_STATE(1608)] = 49766, - [SMALL_STATE(1609)] = 49780, - [SMALL_STATE(1610)] = 49792, - [SMALL_STATE(1611)] = 49806, - [SMALL_STATE(1612)] = 49820, - [SMALL_STATE(1613)] = 49834, - [SMALL_STATE(1614)] = 49848, - [SMALL_STATE(1615)] = 49862, - [SMALL_STATE(1616)] = 49876, - [SMALL_STATE(1617)] = 49886, - [SMALL_STATE(1618)] = 49900, - [SMALL_STATE(1619)] = 49914, - [SMALL_STATE(1620)] = 49928, - [SMALL_STATE(1621)] = 49942, - [SMALL_STATE(1622)] = 49952, - [SMALL_STATE(1623)] = 49966, - [SMALL_STATE(1624)] = 49980, - [SMALL_STATE(1625)] = 49994, - [SMALL_STATE(1626)] = 50006, - [SMALL_STATE(1627)] = 50018, - [SMALL_STATE(1628)] = 50032, - [SMALL_STATE(1629)] = 50046, - [SMALL_STATE(1630)] = 50058, - [SMALL_STATE(1631)] = 50072, - [SMALL_STATE(1632)] = 50086, - [SMALL_STATE(1633)] = 50100, - [SMALL_STATE(1634)] = 50114, - [SMALL_STATE(1635)] = 50128, - [SMALL_STATE(1636)] = 50142, - [SMALL_STATE(1637)] = 50156, - [SMALL_STATE(1638)] = 50166, - [SMALL_STATE(1639)] = 50180, - [SMALL_STATE(1640)] = 50194, - [SMALL_STATE(1641)] = 50208, - [SMALL_STATE(1642)] = 50222, - [SMALL_STATE(1643)] = 50236, - [SMALL_STATE(1644)] = 50250, - [SMALL_STATE(1645)] = 50264, - [SMALL_STATE(1646)] = 50276, - [SMALL_STATE(1647)] = 50290, - [SMALL_STATE(1648)] = 50304, - [SMALL_STATE(1649)] = 50318, - [SMALL_STATE(1650)] = 50332, - [SMALL_STATE(1651)] = 50346, - [SMALL_STATE(1652)] = 50356, - [SMALL_STATE(1653)] = 50370, - [SMALL_STATE(1654)] = 50384, - [SMALL_STATE(1655)] = 50398, - [SMALL_STATE(1656)] = 50412, - [SMALL_STATE(1657)] = 50426, - [SMALL_STATE(1658)] = 50440, - [SMALL_STATE(1659)] = 50452, - [SMALL_STATE(1660)] = 50466, - [SMALL_STATE(1661)] = 50480, - [SMALL_STATE(1662)] = 50494, - [SMALL_STATE(1663)] = 50508, - [SMALL_STATE(1664)] = 50522, - [SMALL_STATE(1665)] = 50534, - [SMALL_STATE(1666)] = 50548, - [SMALL_STATE(1667)] = 50562, - [SMALL_STATE(1668)] = 50576, - [SMALL_STATE(1669)] = 50590, - [SMALL_STATE(1670)] = 50604, - [SMALL_STATE(1671)] = 50618, - [SMALL_STATE(1672)] = 50632, - [SMALL_STATE(1673)] = 50646, - [SMALL_STATE(1674)] = 50660, - [SMALL_STATE(1675)] = 50672, - [SMALL_STATE(1676)] = 50686, - [SMALL_STATE(1677)] = 50700, - [SMALL_STATE(1678)] = 50714, - [SMALL_STATE(1679)] = 50728, - [SMALL_STATE(1680)] = 50742, - [SMALL_STATE(1681)] = 50756, - [SMALL_STATE(1682)] = 50770, - [SMALL_STATE(1683)] = 50784, - [SMALL_STATE(1684)] = 50794, - [SMALL_STATE(1685)] = 50808, - [SMALL_STATE(1686)] = 50818, - [SMALL_STATE(1687)] = 50832, - [SMALL_STATE(1688)] = 50846, - [SMALL_STATE(1689)] = 50856, - [SMALL_STATE(1690)] = 50870, - [SMALL_STATE(1691)] = 50884, - [SMALL_STATE(1692)] = 50898, - [SMALL_STATE(1693)] = 50910, - [SMALL_STATE(1694)] = 50924, - [SMALL_STATE(1695)] = 50938, - [SMALL_STATE(1696)] = 50952, - [SMALL_STATE(1697)] = 50966, - [SMALL_STATE(1698)] = 50976, - [SMALL_STATE(1699)] = 50990, - [SMALL_STATE(1700)] = 51002, - [SMALL_STATE(1701)] = 51016, - [SMALL_STATE(1702)] = 51030, - [SMALL_STATE(1703)] = 51044, - [SMALL_STATE(1704)] = 51058, - [SMALL_STATE(1705)] = 51072, - [SMALL_STATE(1706)] = 51086, - [SMALL_STATE(1707)] = 51096, - [SMALL_STATE(1708)] = 51110, - [SMALL_STATE(1709)] = 51122, - [SMALL_STATE(1710)] = 51134, - [SMALL_STATE(1711)] = 51144, - [SMALL_STATE(1712)] = 51158, - [SMALL_STATE(1713)] = 51170, - [SMALL_STATE(1714)] = 51184, - [SMALL_STATE(1715)] = 51198, - [SMALL_STATE(1716)] = 51212, - [SMALL_STATE(1717)] = 51224, - [SMALL_STATE(1718)] = 51238, - [SMALL_STATE(1719)] = 51248, - [SMALL_STATE(1720)] = 51262, - [SMALL_STATE(1721)] = 51272, - [SMALL_STATE(1722)] = 51282, - [SMALL_STATE(1723)] = 51296, - [SMALL_STATE(1724)] = 51310, - [SMALL_STATE(1725)] = 51320, - [SMALL_STATE(1726)] = 51334, - [SMALL_STATE(1727)] = 51348, - [SMALL_STATE(1728)] = 51362, - [SMALL_STATE(1729)] = 51376, - [SMALL_STATE(1730)] = 51386, - [SMALL_STATE(1731)] = 51396, - [SMALL_STATE(1732)] = 51410, - [SMALL_STATE(1733)] = 51424, - [SMALL_STATE(1734)] = 51436, - [SMALL_STATE(1735)] = 51450, - [SMALL_STATE(1736)] = 51464, - [SMALL_STATE(1737)] = 51478, - [SMALL_STATE(1738)] = 51492, - [SMALL_STATE(1739)] = 51506, - [SMALL_STATE(1740)] = 51520, - [SMALL_STATE(1741)] = 51534, - [SMALL_STATE(1742)] = 51546, - [SMALL_STATE(1743)] = 51560, - [SMALL_STATE(1744)] = 51570, - [SMALL_STATE(1745)] = 51584, - [SMALL_STATE(1746)] = 51598, - [SMALL_STATE(1747)] = 51612, - [SMALL_STATE(1748)] = 51626, - [SMALL_STATE(1749)] = 51640, - [SMALL_STATE(1750)] = 51654, - [SMALL_STATE(1751)] = 51666, - [SMALL_STATE(1752)] = 51676, - [SMALL_STATE(1753)] = 51690, - [SMALL_STATE(1754)] = 51704, - [SMALL_STATE(1755)] = 51718, - [SMALL_STATE(1756)] = 51732, - [SMALL_STATE(1757)] = 51746, - [SMALL_STATE(1758)] = 51760, - [SMALL_STATE(1759)] = 51774, - [SMALL_STATE(1760)] = 51788, - [SMALL_STATE(1761)] = 51802, - [SMALL_STATE(1762)] = 51816, - [SMALL_STATE(1763)] = 51830, - [SMALL_STATE(1764)] = 51842, - [SMALL_STATE(1765)] = 51856, - [SMALL_STATE(1766)] = 51870, - [SMALL_STATE(1767)] = 51882, - [SMALL_STATE(1768)] = 51894, - [SMALL_STATE(1769)] = 51908, - [SMALL_STATE(1770)] = 51922, - [SMALL_STATE(1771)] = 51936, - [SMALL_STATE(1772)] = 51950, - [SMALL_STATE(1773)] = 51964, - [SMALL_STATE(1774)] = 51978, - [SMALL_STATE(1775)] = 51992, - [SMALL_STATE(1776)] = 52004, - [SMALL_STATE(1777)] = 52016, - [SMALL_STATE(1778)] = 52030, - [SMALL_STATE(1779)] = 52042, - [SMALL_STATE(1780)] = 52056, - [SMALL_STATE(1781)] = 52068, - [SMALL_STATE(1782)] = 52082, - [SMALL_STATE(1783)] = 52096, - [SMALL_STATE(1784)] = 52110, - [SMALL_STATE(1785)] = 52124, - [SMALL_STATE(1786)] = 52138, - [SMALL_STATE(1787)] = 52152, - [SMALL_STATE(1788)] = 52164, - [SMALL_STATE(1789)] = 52178, - [SMALL_STATE(1790)] = 52192, - [SMALL_STATE(1791)] = 52206, - [SMALL_STATE(1792)] = 52220, - [SMALL_STATE(1793)] = 52232, - [SMALL_STATE(1794)] = 52246, - [SMALL_STATE(1795)] = 52256, - [SMALL_STATE(1796)] = 52270, - [SMALL_STATE(1797)] = 52284, - [SMALL_STATE(1798)] = 52298, - [SMALL_STATE(1799)] = 52312, - [SMALL_STATE(1800)] = 52322, - [SMALL_STATE(1801)] = 52336, - [SMALL_STATE(1802)] = 52346, - [SMALL_STATE(1803)] = 52360, - [SMALL_STATE(1804)] = 52374, - [SMALL_STATE(1805)] = 52388, - [SMALL_STATE(1806)] = 52400, - [SMALL_STATE(1807)] = 52414, - [SMALL_STATE(1808)] = 52428, - [SMALL_STATE(1809)] = 52442, - [SMALL_STATE(1810)] = 52456, - [SMALL_STATE(1811)] = 52470, - [SMALL_STATE(1812)] = 52482, - [SMALL_STATE(1813)] = 52493, - [SMALL_STATE(1814)] = 52504, - [SMALL_STATE(1815)] = 52515, - [SMALL_STATE(1816)] = 52526, - [SMALL_STATE(1817)] = 52537, - [SMALL_STATE(1818)] = 52548, - [SMALL_STATE(1819)] = 52559, - [SMALL_STATE(1820)] = 52568, - [SMALL_STATE(1821)] = 52579, - [SMALL_STATE(1822)] = 52588, - [SMALL_STATE(1823)] = 52597, - [SMALL_STATE(1824)] = 52608, - [SMALL_STATE(1825)] = 52619, - [SMALL_STATE(1826)] = 52630, - [SMALL_STATE(1827)] = 52639, - [SMALL_STATE(1828)] = 52648, - [SMALL_STATE(1829)] = 52659, - [SMALL_STATE(1830)] = 52670, - [SMALL_STATE(1831)] = 52679, - [SMALL_STATE(1832)] = 52690, - [SMALL_STATE(1833)] = 52701, - [SMALL_STATE(1834)] = 52710, - [SMALL_STATE(1835)] = 52719, - [SMALL_STATE(1836)] = 52730, - [SMALL_STATE(1837)] = 52741, - [SMALL_STATE(1838)] = 52750, - [SMALL_STATE(1839)] = 52761, - [SMALL_STATE(1840)] = 52770, - [SMALL_STATE(1841)] = 52781, - [SMALL_STATE(1842)] = 52792, - [SMALL_STATE(1843)] = 52803, - [SMALL_STATE(1844)] = 52814, - [SMALL_STATE(1845)] = 52825, - [SMALL_STATE(1846)] = 52834, - [SMALL_STATE(1847)] = 52843, - [SMALL_STATE(1848)] = 52852, - [SMALL_STATE(1849)] = 52863, - [SMALL_STATE(1850)] = 52874, - [SMALL_STATE(1851)] = 52885, - [SMALL_STATE(1852)] = 52896, - [SMALL_STATE(1853)] = 52905, - [SMALL_STATE(1854)] = 52916, - [SMALL_STATE(1855)] = 52927, - [SMALL_STATE(1856)] = 52936, - [SMALL_STATE(1857)] = 52947, - [SMALL_STATE(1858)] = 52958, - [SMALL_STATE(1859)] = 52969, - [SMALL_STATE(1860)] = 52978, - [SMALL_STATE(1861)] = 52989, - [SMALL_STATE(1862)] = 53000, - [SMALL_STATE(1863)] = 53009, - [SMALL_STATE(1864)] = 53018, - [SMALL_STATE(1865)] = 53029, - [SMALL_STATE(1866)] = 53040, - [SMALL_STATE(1867)] = 53051, - [SMALL_STATE(1868)] = 53062, - [SMALL_STATE(1869)] = 53073, - [SMALL_STATE(1870)] = 53084, - [SMALL_STATE(1871)] = 53097, - [SMALL_STATE(1872)] = 53108, - [SMALL_STATE(1873)] = 53119, - [SMALL_STATE(1874)] = 53128, - [SMALL_STATE(1875)] = 53139, - [SMALL_STATE(1876)] = 53148, - [SMALL_STATE(1877)] = 53159, - [SMALL_STATE(1878)] = 53168, - [SMALL_STATE(1879)] = 53177, - [SMALL_STATE(1880)] = 53188, - [SMALL_STATE(1881)] = 53199, - [SMALL_STATE(1882)] = 53210, - [SMALL_STATE(1883)] = 53221, - [SMALL_STATE(1884)] = 53230, - [SMALL_STATE(1885)] = 53241, - [SMALL_STATE(1886)] = 53252, - [SMALL_STATE(1887)] = 53261, - [SMALL_STATE(1888)] = 53272, - [SMALL_STATE(1889)] = 53283, - [SMALL_STATE(1890)] = 53292, - [SMALL_STATE(1891)] = 53303, - [SMALL_STATE(1892)] = 53314, - [SMALL_STATE(1893)] = 53325, - [SMALL_STATE(1894)] = 53336, - [SMALL_STATE(1895)] = 53347, - [SMALL_STATE(1896)] = 53358, - [SMALL_STATE(1897)] = 53367, - [SMALL_STATE(1898)] = 53378, - [SMALL_STATE(1899)] = 53387, - [SMALL_STATE(1900)] = 53398, - [SMALL_STATE(1901)] = 53409, - [SMALL_STATE(1902)] = 53418, - [SMALL_STATE(1903)] = 53429, - [SMALL_STATE(1904)] = 53440, - [SMALL_STATE(1905)] = 53451, - [SMALL_STATE(1906)] = 53462, - [SMALL_STATE(1907)] = 53473, - [SMALL_STATE(1908)] = 53484, - [SMALL_STATE(1909)] = 53495, - [SMALL_STATE(1910)] = 53504, - [SMALL_STATE(1911)] = 53513, - [SMALL_STATE(1912)] = 53522, - [SMALL_STATE(1913)] = 53531, - [SMALL_STATE(1914)] = 53542, - [SMALL_STATE(1915)] = 53553, - [SMALL_STATE(1916)] = 53564, - [SMALL_STATE(1917)] = 53575, - [SMALL_STATE(1918)] = 53586, - [SMALL_STATE(1919)] = 53597, - [SMALL_STATE(1920)] = 53608, - [SMALL_STATE(1921)] = 53619, - [SMALL_STATE(1922)] = 53630, - [SMALL_STATE(1923)] = 53641, - [SMALL_STATE(1924)] = 53650, - [SMALL_STATE(1925)] = 53661, - [SMALL_STATE(1926)] = 53672, - [SMALL_STATE(1927)] = 53683, - [SMALL_STATE(1928)] = 53694, - [SMALL_STATE(1929)] = 53705, - [SMALL_STATE(1930)] = 53716, - [SMALL_STATE(1931)] = 53727, - [SMALL_STATE(1932)] = 53738, - [SMALL_STATE(1933)] = 53749, - [SMALL_STATE(1934)] = 53758, - [SMALL_STATE(1935)] = 53769, - [SMALL_STATE(1936)] = 53780, - [SMALL_STATE(1937)] = 53789, - [SMALL_STATE(1938)] = 53800, - [SMALL_STATE(1939)] = 53811, - [SMALL_STATE(1940)] = 53820, - [SMALL_STATE(1941)] = 53831, - [SMALL_STATE(1942)] = 53840, - [SMALL_STATE(1943)] = 53851, - [SMALL_STATE(1944)] = 53862, - [SMALL_STATE(1945)] = 53871, - [SMALL_STATE(1946)] = 53882, - [SMALL_STATE(1947)] = 53893, - [SMALL_STATE(1948)] = 53904, - [SMALL_STATE(1949)] = 53915, - [SMALL_STATE(1950)] = 53926, - [SMALL_STATE(1951)] = 53937, - [SMALL_STATE(1952)] = 53948, - [SMALL_STATE(1953)] = 53959, - [SMALL_STATE(1954)] = 53968, - [SMALL_STATE(1955)] = 53979, - [SMALL_STATE(1956)] = 53990, - [SMALL_STATE(1957)] = 54001, - [SMALL_STATE(1958)] = 54010, - [SMALL_STATE(1959)] = 54021, - [SMALL_STATE(1960)] = 54032, - [SMALL_STATE(1961)] = 54043, - [SMALL_STATE(1962)] = 54054, - [SMALL_STATE(1963)] = 54065, - [SMALL_STATE(1964)] = 54076, - [SMALL_STATE(1965)] = 54087, - [SMALL_STATE(1966)] = 54098, - [SMALL_STATE(1967)] = 54109, - [SMALL_STATE(1968)] = 54120, - [SMALL_STATE(1969)] = 54131, - [SMALL_STATE(1970)] = 54142, - [SMALL_STATE(1971)] = 54153, - [SMALL_STATE(1972)] = 54162, - [SMALL_STATE(1973)] = 54173, - [SMALL_STATE(1974)] = 54182, - [SMALL_STATE(1975)] = 54193, - [SMALL_STATE(1976)] = 54204, - [SMALL_STATE(1977)] = 54215, - [SMALL_STATE(1978)] = 54224, - [SMALL_STATE(1979)] = 54233, - [SMALL_STATE(1980)] = 54242, - [SMALL_STATE(1981)] = 54253, - [SMALL_STATE(1982)] = 54264, - [SMALL_STATE(1983)] = 54275, - [SMALL_STATE(1984)] = 54284, - [SMALL_STATE(1985)] = 54293, - [SMALL_STATE(1986)] = 54302, - [SMALL_STATE(1987)] = 54311, - [SMALL_STATE(1988)] = 54322, - [SMALL_STATE(1989)] = 54330, - [SMALL_STATE(1990)] = 54338, - [SMALL_STATE(1991)] = 54346, - [SMALL_STATE(1992)] = 54354, - [SMALL_STATE(1993)] = 54362, - [SMALL_STATE(1994)] = 54370, - [SMALL_STATE(1995)] = 54378, - [SMALL_STATE(1996)] = 54386, - [SMALL_STATE(1997)] = 54394, - [SMALL_STATE(1998)] = 54402, - [SMALL_STATE(1999)] = 54410, - [SMALL_STATE(2000)] = 54418, - [SMALL_STATE(2001)] = 54426, - [SMALL_STATE(2002)] = 54434, - [SMALL_STATE(2003)] = 54442, - [SMALL_STATE(2004)] = 54450, - [SMALL_STATE(2005)] = 54458, - [SMALL_STATE(2006)] = 54466, - [SMALL_STATE(2007)] = 54474, - [SMALL_STATE(2008)] = 54482, - [SMALL_STATE(2009)] = 54490, - [SMALL_STATE(2010)] = 54498, - [SMALL_STATE(2011)] = 54506, - [SMALL_STATE(2012)] = 54514, - [SMALL_STATE(2013)] = 54522, - [SMALL_STATE(2014)] = 54530, - [SMALL_STATE(2015)] = 54538, - [SMALL_STATE(2016)] = 54546, - [SMALL_STATE(2017)] = 54554, - [SMALL_STATE(2018)] = 54562, - [SMALL_STATE(2019)] = 54570, - [SMALL_STATE(2020)] = 54578, - [SMALL_STATE(2021)] = 54586, - [SMALL_STATE(2022)] = 54594, - [SMALL_STATE(2023)] = 54602, - [SMALL_STATE(2024)] = 54610, - [SMALL_STATE(2025)] = 54618, - [SMALL_STATE(2026)] = 54626, - [SMALL_STATE(2027)] = 54634, - [SMALL_STATE(2028)] = 54642, - [SMALL_STATE(2029)] = 54650, - [SMALL_STATE(2030)] = 54658, - [SMALL_STATE(2031)] = 54666, - [SMALL_STATE(2032)] = 54674, - [SMALL_STATE(2033)] = 54682, - [SMALL_STATE(2034)] = 54690, - [SMALL_STATE(2035)] = 54698, - [SMALL_STATE(2036)] = 54706, - [SMALL_STATE(2037)] = 54714, - [SMALL_STATE(2038)] = 54722, - [SMALL_STATE(2039)] = 54730, - [SMALL_STATE(2040)] = 54738, - [SMALL_STATE(2041)] = 54746, - [SMALL_STATE(2042)] = 54754, - [SMALL_STATE(2043)] = 54762, - [SMALL_STATE(2044)] = 54770, - [SMALL_STATE(2045)] = 54778, - [SMALL_STATE(2046)] = 54786, - [SMALL_STATE(2047)] = 54794, - [SMALL_STATE(2048)] = 54802, - [SMALL_STATE(2049)] = 54810, - [SMALL_STATE(2050)] = 54818, - [SMALL_STATE(2051)] = 54826, - [SMALL_STATE(2052)] = 54834, - [SMALL_STATE(2053)] = 54842, - [SMALL_STATE(2054)] = 54850, - [SMALL_STATE(2055)] = 54858, - [SMALL_STATE(2056)] = 54866, - [SMALL_STATE(2057)] = 54874, - [SMALL_STATE(2058)] = 54882, - [SMALL_STATE(2059)] = 54890, - [SMALL_STATE(2060)] = 54898, - [SMALL_STATE(2061)] = 54906, - [SMALL_STATE(2062)] = 54914, - [SMALL_STATE(2063)] = 54922, - [SMALL_STATE(2064)] = 54930, - [SMALL_STATE(2065)] = 54938, - [SMALL_STATE(2066)] = 54946, - [SMALL_STATE(2067)] = 54954, - [SMALL_STATE(2068)] = 54962, - [SMALL_STATE(2069)] = 54970, - [SMALL_STATE(2070)] = 54978, - [SMALL_STATE(2071)] = 54986, - [SMALL_STATE(2072)] = 54994, - [SMALL_STATE(2073)] = 55002, - [SMALL_STATE(2074)] = 55010, - [SMALL_STATE(2075)] = 55018, - [SMALL_STATE(2076)] = 55026, - [SMALL_STATE(2077)] = 55034, - [SMALL_STATE(2078)] = 55042, - [SMALL_STATE(2079)] = 55050, - [SMALL_STATE(2080)] = 55058, - [SMALL_STATE(2081)] = 55066, - [SMALL_STATE(2082)] = 55074, - [SMALL_STATE(2083)] = 55082, - [SMALL_STATE(2084)] = 55090, - [SMALL_STATE(2085)] = 55098, - [SMALL_STATE(2086)] = 55106, - [SMALL_STATE(2087)] = 55114, - [SMALL_STATE(2088)] = 55122, - [SMALL_STATE(2089)] = 55130, - [SMALL_STATE(2090)] = 55138, - [SMALL_STATE(2091)] = 55146, - [SMALL_STATE(2092)] = 55154, - [SMALL_STATE(2093)] = 55162, - [SMALL_STATE(2094)] = 55170, - [SMALL_STATE(2095)] = 55178, - [SMALL_STATE(2096)] = 55186, - [SMALL_STATE(2097)] = 55194, - [SMALL_STATE(2098)] = 55202, - [SMALL_STATE(2099)] = 55210, - [SMALL_STATE(2100)] = 55218, - [SMALL_STATE(2101)] = 55226, - [SMALL_STATE(2102)] = 55234, - [SMALL_STATE(2103)] = 55242, - [SMALL_STATE(2104)] = 55250, - [SMALL_STATE(2105)] = 55258, - [SMALL_STATE(2106)] = 55266, - [SMALL_STATE(2107)] = 55274, - [SMALL_STATE(2108)] = 55282, - [SMALL_STATE(2109)] = 55290, - [SMALL_STATE(2110)] = 55298, - [SMALL_STATE(2111)] = 55306, - [SMALL_STATE(2112)] = 55314, - [SMALL_STATE(2113)] = 55322, - [SMALL_STATE(2114)] = 55330, - [SMALL_STATE(2115)] = 55338, - [SMALL_STATE(2116)] = 55346, - [SMALL_STATE(2117)] = 55354, - [SMALL_STATE(2118)] = 55362, - [SMALL_STATE(2119)] = 55370, - [SMALL_STATE(2120)] = 55378, - [SMALL_STATE(2121)] = 55386, - [SMALL_STATE(2122)] = 55394, - [SMALL_STATE(2123)] = 55402, - [SMALL_STATE(2124)] = 55410, - [SMALL_STATE(2125)] = 55418, - [SMALL_STATE(2126)] = 55426, - [SMALL_STATE(2127)] = 55434, - [SMALL_STATE(2128)] = 55442, - [SMALL_STATE(2129)] = 55450, - [SMALL_STATE(2130)] = 55458, - [SMALL_STATE(2131)] = 55466, - [SMALL_STATE(2132)] = 55474, - [SMALL_STATE(2133)] = 55482, - [SMALL_STATE(2134)] = 55490, - [SMALL_STATE(2135)] = 55498, - [SMALL_STATE(2136)] = 55506, - [SMALL_STATE(2137)] = 55514, - [SMALL_STATE(2138)] = 55522, - [SMALL_STATE(2139)] = 55530, - [SMALL_STATE(2140)] = 55538, - [SMALL_STATE(2141)] = 55546, - [SMALL_STATE(2142)] = 55554, - [SMALL_STATE(2143)] = 55562, - [SMALL_STATE(2144)] = 55570, - [SMALL_STATE(2145)] = 55578, - [SMALL_STATE(2146)] = 55586, - [SMALL_STATE(2147)] = 55594, - [SMALL_STATE(2148)] = 55602, - [SMALL_STATE(2149)] = 55610, - [SMALL_STATE(2150)] = 55618, - [SMALL_STATE(2151)] = 55626, - [SMALL_STATE(2152)] = 55634, - [SMALL_STATE(2153)] = 55642, - [SMALL_STATE(2154)] = 55650, - [SMALL_STATE(2155)] = 55658, - [SMALL_STATE(2156)] = 55666, - [SMALL_STATE(2157)] = 55674, - [SMALL_STATE(2158)] = 55682, - [SMALL_STATE(2159)] = 55690, - [SMALL_STATE(2160)] = 55698, - [SMALL_STATE(2161)] = 55706, - [SMALL_STATE(2162)] = 55714, - [SMALL_STATE(2163)] = 55722, - [SMALL_STATE(2164)] = 55730, - [SMALL_STATE(2165)] = 55738, - [SMALL_STATE(2166)] = 55746, - [SMALL_STATE(2167)] = 55754, - [SMALL_STATE(2168)] = 55762, - [SMALL_STATE(2169)] = 55770, - [SMALL_STATE(2170)] = 55778, - [SMALL_STATE(2171)] = 55786, - [SMALL_STATE(2172)] = 55794, - [SMALL_STATE(2173)] = 55802, - [SMALL_STATE(2174)] = 55810, - [SMALL_STATE(2175)] = 55818, - [SMALL_STATE(2176)] = 55826, - [SMALL_STATE(2177)] = 55834, - [SMALL_STATE(2178)] = 55842, - [SMALL_STATE(2179)] = 55850, - [SMALL_STATE(2180)] = 55858, - [SMALL_STATE(2181)] = 55866, - [SMALL_STATE(2182)] = 55874, - [SMALL_STATE(2183)] = 55882, - [SMALL_STATE(2184)] = 55890, + [SMALL_STATE(490)] = 0, + [SMALL_STATE(491)] = 128, + [SMALL_STATE(492)] = 253, + [SMALL_STATE(493)] = 378, + [SMALL_STATE(494)] = 503, + [SMALL_STATE(495)] = 628, + [SMALL_STATE(496)] = 753, + [SMALL_STATE(497)] = 878, + [SMALL_STATE(498)] = 944, + [SMALL_STATE(499)] = 1066, + [SMALL_STATE(500)] = 1188, + [SMALL_STATE(501)] = 1310, + [SMALL_STATE(502)] = 1376, + [SMALL_STATE(503)] = 1442, + [SMALL_STATE(504)] = 1508, + [SMALL_STATE(505)] = 1627, + [SMALL_STATE(506)] = 1746, + [SMALL_STATE(507)] = 1865, + [SMALL_STATE(508)] = 1984, + [SMALL_STATE(509)] = 2103, + [SMALL_STATE(510)] = 2222, + [SMALL_STATE(511)] = 2341, + [SMALL_STATE(512)] = 2456, + [SMALL_STATE(513)] = 2568, + [SMALL_STATE(514)] = 2680, + [SMALL_STATE(515)] = 2792, + [SMALL_STATE(516)] = 2904, + [SMALL_STATE(517)] = 3016, + [SMALL_STATE(518)] = 3128, + [SMALL_STATE(519)] = 3240, + [SMALL_STATE(520)] = 3352, + [SMALL_STATE(521)] = 3464, + [SMALL_STATE(522)] = 3576, + [SMALL_STATE(523)] = 3688, + [SMALL_STATE(524)] = 3800, + [SMALL_STATE(525)] = 3912, + [SMALL_STATE(526)] = 4021, + [SMALL_STATE(527)] = 4130, + [SMALL_STATE(528)] = 4239, + [SMALL_STATE(529)] = 4348, + [SMALL_STATE(530)] = 4457, + [SMALL_STATE(531)] = 4566, + [SMALL_STATE(532)] = 4675, + [SMALL_STATE(533)] = 4784, + [SMALL_STATE(534)] = 4893, + [SMALL_STATE(535)] = 5002, + [SMALL_STATE(536)] = 5111, + [SMALL_STATE(537)] = 5220, + [SMALL_STATE(538)] = 5329, + [SMALL_STATE(539)] = 5438, + [SMALL_STATE(540)] = 5547, + [SMALL_STATE(541)] = 5656, + [SMALL_STATE(542)] = 5765, + [SMALL_STATE(543)] = 5874, + [SMALL_STATE(544)] = 5983, + [SMALL_STATE(545)] = 6092, + [SMALL_STATE(546)] = 6201, + [SMALL_STATE(547)] = 6310, + [SMALL_STATE(548)] = 6419, + [SMALL_STATE(549)] = 6528, + [SMALL_STATE(550)] = 6637, + [SMALL_STATE(551)] = 6746, + [SMALL_STATE(552)] = 6855, + [SMALL_STATE(553)] = 6964, + [SMALL_STATE(554)] = 7073, + [SMALL_STATE(555)] = 7182, + [SMALL_STATE(556)] = 7291, + [SMALL_STATE(557)] = 7400, + [SMALL_STATE(558)] = 7509, + [SMALL_STATE(559)] = 7618, + [SMALL_STATE(560)] = 7727, + [SMALL_STATE(561)] = 7836, + [SMALL_STATE(562)] = 7945, + [SMALL_STATE(563)] = 8054, + [SMALL_STATE(564)] = 8163, + [SMALL_STATE(565)] = 8272, + [SMALL_STATE(566)] = 8381, + [SMALL_STATE(567)] = 8490, + [SMALL_STATE(568)] = 8599, + [SMALL_STATE(569)] = 8708, + [SMALL_STATE(570)] = 8817, + [SMALL_STATE(571)] = 8926, + [SMALL_STATE(572)] = 9035, + [SMALL_STATE(573)] = 9144, + [SMALL_STATE(574)] = 9253, + [SMALL_STATE(575)] = 9362, + [SMALL_STATE(576)] = 9471, + [SMALL_STATE(577)] = 9580, + [SMALL_STATE(578)] = 9689, + [SMALL_STATE(579)] = 9798, + [SMALL_STATE(580)] = 9907, + [SMALL_STATE(581)] = 10016, + [SMALL_STATE(582)] = 10125, + [SMALL_STATE(583)] = 10234, + [SMALL_STATE(584)] = 10343, + [SMALL_STATE(585)] = 10452, + [SMALL_STATE(586)] = 10561, + [SMALL_STATE(587)] = 10670, + [SMALL_STATE(588)] = 10779, + [SMALL_STATE(589)] = 10888, + [SMALL_STATE(590)] = 10997, + [SMALL_STATE(591)] = 11106, + [SMALL_STATE(592)] = 11215, + [SMALL_STATE(593)] = 11324, + [SMALL_STATE(594)] = 11433, + [SMALL_STATE(595)] = 11542, + [SMALL_STATE(596)] = 11651, + [SMALL_STATE(597)] = 11760, + [SMALL_STATE(598)] = 11869, + [SMALL_STATE(599)] = 11978, + [SMALL_STATE(600)] = 12087, + [SMALL_STATE(601)] = 12196, + [SMALL_STATE(602)] = 12305, + [SMALL_STATE(603)] = 12414, + [SMALL_STATE(604)] = 12523, + [SMALL_STATE(605)] = 12632, + [SMALL_STATE(606)] = 12741, + [SMALL_STATE(607)] = 12850, + [SMALL_STATE(608)] = 12959, + [SMALL_STATE(609)] = 13068, + [SMALL_STATE(610)] = 13177, + [SMALL_STATE(611)] = 13286, + [SMALL_STATE(612)] = 13395, + [SMALL_STATE(613)] = 13504, + [SMALL_STATE(614)] = 13613, + [SMALL_STATE(615)] = 13722, + [SMALL_STATE(616)] = 13831, + [SMALL_STATE(617)] = 13889, + [SMALL_STATE(618)] = 13957, + [SMALL_STATE(619)] = 14025, + [SMALL_STATE(620)] = 14085, + [SMALL_STATE(621)] = 14143, + [SMALL_STATE(622)] = 14200, + [SMALL_STATE(623)] = 14257, + [SMALL_STATE(624)] = 14314, + [SMALL_STATE(625)] = 14379, + [SMALL_STATE(626)] = 14444, + [SMALL_STATE(627)] = 14502, + [SMALL_STATE(628)] = 14560, + [SMALL_STATE(629)] = 14618, + [SMALL_STATE(630)] = 14676, + [SMALL_STATE(631)] = 14738, + [SMALL_STATE(632)] = 14800, + [SMALL_STATE(633)] = 14860, + [SMALL_STATE(634)] = 14915, + [SMALL_STATE(635)] = 14972, + [SMALL_STATE(636)] = 15027, + [SMALL_STATE(637)] = 15082, + [SMALL_STATE(638)] = 15139, + [SMALL_STATE(639)] = 15194, + [SMALL_STATE(640)] = 15251, + [SMALL_STATE(641)] = 15308, + [SMALL_STATE(642)] = 15365, + [SMALL_STATE(643)] = 15422, + [SMALL_STATE(644)] = 15479, + [SMALL_STATE(645)] = 15536, + [SMALL_STATE(646)] = 15591, + [SMALL_STATE(647)] = 15646, + [SMALL_STATE(648)] = 15705, + [SMALL_STATE(649)] = 15760, + [SMALL_STATE(650)] = 15819, + [SMALL_STATE(651)] = 15876, + [SMALL_STATE(652)] = 15931, + [SMALL_STATE(653)] = 15986, + [SMALL_STATE(654)] = 16041, + [SMALL_STATE(655)] = 16096, + [SMALL_STATE(656)] = 16153, + [SMALL_STATE(657)] = 16210, + [SMALL_STATE(658)] = 16265, + [SMALL_STATE(659)] = 16322, + [SMALL_STATE(660)] = 16377, + [SMALL_STATE(661)] = 16450, + [SMALL_STATE(662)] = 16505, + [SMALL_STATE(663)] = 16560, + [SMALL_STATE(664)] = 16617, + [SMALL_STATE(665)] = 16672, + [SMALL_STATE(666)] = 16729, + [SMALL_STATE(667)] = 16784, + [SMALL_STATE(668)] = 16841, + [SMALL_STATE(669)] = 16895, + [SMALL_STATE(670)] = 16949, + [SMALL_STATE(671)] = 17003, + [SMALL_STATE(672)] = 17059, + [SMALL_STATE(673)] = 17131, + [SMALL_STATE(674)] = 17185, + [SMALL_STATE(675)] = 17239, + [SMALL_STATE(676)] = 17293, + [SMALL_STATE(677)] = 17349, + [SMALL_STATE(678)] = 17403, + [SMALL_STATE(679)] = 17457, + [SMALL_STATE(680)] = 17511, + [SMALL_STATE(681)] = 17565, + [SMALL_STATE(682)] = 17619, + [SMALL_STATE(683)] = 17673, + [SMALL_STATE(684)] = 17727, + [SMALL_STATE(685)] = 17781, + [SMALL_STATE(686)] = 17835, + [SMALL_STATE(687)] = 17889, + [SMALL_STATE(688)] = 17943, + [SMALL_STATE(689)] = 18015, + [SMALL_STATE(690)] = 18069, + [SMALL_STATE(691)] = 18123, + [SMALL_STATE(692)] = 18177, + [SMALL_STATE(693)] = 18231, + [SMALL_STATE(694)] = 18285, + [SMALL_STATE(695)] = 18339, + [SMALL_STATE(696)] = 18393, + [SMALL_STATE(697)] = 18447, + [SMALL_STATE(698)] = 18501, + [SMALL_STATE(699)] = 18555, + [SMALL_STATE(700)] = 18609, + [SMALL_STATE(701)] = 18663, + [SMALL_STATE(702)] = 18717, + [SMALL_STATE(703)] = 18771, + [SMALL_STATE(704)] = 18825, + [SMALL_STATE(705)] = 18879, + [SMALL_STATE(706)] = 18933, + [SMALL_STATE(707)] = 18987, + [SMALL_STATE(708)] = 19041, + [SMALL_STATE(709)] = 19095, + [SMALL_STATE(710)] = 19149, + [SMALL_STATE(711)] = 19203, + [SMALL_STATE(712)] = 19257, + [SMALL_STATE(713)] = 19311, + [SMALL_STATE(714)] = 19365, + [SMALL_STATE(715)] = 19419, + [SMALL_STATE(716)] = 19473, + [SMALL_STATE(717)] = 19527, + [SMALL_STATE(718)] = 19581, + [SMALL_STATE(719)] = 19635, + [SMALL_STATE(720)] = 19689, + [SMALL_STATE(721)] = 19743, + [SMALL_STATE(722)] = 19797, + [SMALL_STATE(723)] = 19851, + [SMALL_STATE(724)] = 19905, + [SMALL_STATE(725)] = 19959, + [SMALL_STATE(726)] = 20013, + [SMALL_STATE(727)] = 20067, + [SMALL_STATE(728)] = 20121, + [SMALL_STATE(729)] = 20175, + [SMALL_STATE(730)] = 20231, + [SMALL_STATE(731)] = 20285, + [SMALL_STATE(732)] = 20339, + [SMALL_STATE(733)] = 20393, + [SMALL_STATE(734)] = 20447, + [SMALL_STATE(735)] = 20501, + [SMALL_STATE(736)] = 20555, + [SMALL_STATE(737)] = 20609, + [SMALL_STATE(738)] = 20665, + [SMALL_STATE(739)] = 20719, + [SMALL_STATE(740)] = 20773, + [SMALL_STATE(741)] = 20829, + [SMALL_STATE(742)] = 20883, + [SMALL_STATE(743)] = 20937, + [SMALL_STATE(744)] = 20993, + [SMALL_STATE(745)] = 21047, + [SMALL_STATE(746)] = 21101, + [SMALL_STATE(747)] = 21155, + [SMALL_STATE(748)] = 21209, + [SMALL_STATE(749)] = 21263, + [SMALL_STATE(750)] = 21317, + [SMALL_STATE(751)] = 21371, + [SMALL_STATE(752)] = 21425, + [SMALL_STATE(753)] = 21479, + [SMALL_STATE(754)] = 21562, + [SMALL_STATE(755)] = 21635, + [SMALL_STATE(756)] = 21698, + [SMALL_STATE(757)] = 21767, + [SMALL_STATE(758)] = 21846, + [SMALL_STATE(759)] = 21929, + [SMALL_STATE(760)] = 21986, + [SMALL_STATE(761)] = 22051, + [SMALL_STATE(762)] = 22134, + [SMALL_STATE(763)] = 22221, + [SMALL_STATE(764)] = 22288, + [SMALL_STATE(765)] = 22371, + [SMALL_STATE(766)] = 22446, + [SMALL_STATE(767)] = 22529, + [SMALL_STATE(768)] = 22582, + [SMALL_STATE(769)] = 22663, + [SMALL_STATE(770)] = 22746, + [SMALL_STATE(771)] = 22807, + [SMALL_STATE(772)] = 22868, + [SMALL_STATE(773)] = 22929, + [SMALL_STATE(774)] = 23000, + [SMALL_STATE(775)] = 23053, + [SMALL_STATE(776)] = 23140, + [SMALL_STATE(777)] = 23200, + [SMALL_STATE(778)] = 23260, + [SMALL_STATE(779)] = 23320, + [SMALL_STATE(780)] = 23410, + [SMALL_STATE(781)] = 23500, + [SMALL_STATE(782)] = 23560, + [SMALL_STATE(783)] = 23616, + [SMALL_STATE(784)] = 23672, + [SMALL_STATE(785)] = 23731, + [SMALL_STATE(786)] = 23790, + [SMALL_STATE(787)] = 23849, + [SMALL_STATE(788)] = 23908, + [SMALL_STATE(789)] = 23967, + [SMALL_STATE(790)] = 24050, + [SMALL_STATE(791)] = 24109, + [SMALL_STATE(792)] = 24168, + [SMALL_STATE(793)] = 24227, + [SMALL_STATE(794)] = 24284, + [SMALL_STATE(795)] = 24367, + [SMALL_STATE(796)] = 24421, + [SMALL_STATE(797)] = 24473, + [SMALL_STATE(798)] = 24525, + [SMALL_STATE(799)] = 24581, + [SMALL_STATE(800)] = 24633, + [SMALL_STATE(801)] = 24689, + [SMALL_STATE(802)] = 24775, + [SMALL_STATE(803)] = 24831, + [SMALL_STATE(804)] = 24883, + [SMALL_STATE(805)] = 24969, + [SMALL_STATE(806)] = 25025, + [SMALL_STATE(807)] = 25080, + [SMALL_STATE(808)] = 25135, + [SMALL_STATE(809)] = 25188, + [SMALL_STATE(810)] = 25239, + [SMALL_STATE(811)] = 25328, + [SMALL_STATE(812)] = 25383, + [SMALL_STATE(813)] = 25434, + [SMALL_STATE(814)] = 25487, + [SMALL_STATE(815)] = 25576, + [SMALL_STATE(816)] = 25631, + [SMALL_STATE(817)] = 25684, + [SMALL_STATE(818)] = 25737, + [SMALL_STATE(819)] = 25787, + [SMALL_STATE(820)] = 25839, + [SMALL_STATE(821)] = 25917, + [SMALL_STATE(822)] = 25967, + [SMALL_STATE(823)] = 26015, + [SMALL_STATE(824)] = 26065, + [SMALL_STATE(825)] = 26115, + [SMALL_STATE(826)] = 26163, + [SMALL_STATE(827)] = 26213, + [SMALL_STATE(828)] = 26261, + [SMALL_STATE(829)] = 26311, + [SMALL_STATE(830)] = 26397, + [SMALL_STATE(831)] = 26449, + [SMALL_STATE(832)] = 26535, + [SMALL_STATE(833)] = 26585, + [SMALL_STATE(834)] = 26633, + [SMALL_STATE(835)] = 26714, + [SMALL_STATE(836)] = 26791, + [SMALL_STATE(837)] = 26842, + [SMALL_STATE(838)] = 26891, + [SMALL_STATE(839)] = 26974, + [SMALL_STATE(840)] = 27051, + [SMALL_STATE(841)] = 27126, + [SMALL_STATE(842)] = 27173, + [SMALL_STATE(843)] = 27228, + [SMALL_STATE(844)] = 27283, + [SMALL_STATE(845)] = 27364, + [SMALL_STATE(846)] = 27447, + [SMALL_STATE(847)] = 27524, + [SMALL_STATE(848)] = 27579, + [SMALL_STATE(849)] = 27662, + [SMALL_STATE(850)] = 27745, + [SMALL_STATE(851)] = 27828, + [SMALL_STATE(852)] = 27905, + [SMALL_STATE(853)] = 27962, + [SMALL_STATE(854)] = 28043, + [SMALL_STATE(855)] = 28124, + [SMALL_STATE(856)] = 28207, + [SMALL_STATE(857)] = 28290, + [SMALL_STATE(858)] = 28373, + [SMALL_STATE(859)] = 28456, + [SMALL_STATE(860)] = 28539, + [SMALL_STATE(861)] = 28586, + [SMALL_STATE(862)] = 28669, + [SMALL_STATE(863)] = 28752, + [SMALL_STATE(864)] = 28833, + [SMALL_STATE(865)] = 28880, + [SMALL_STATE(866)] = 28963, + [SMALL_STATE(867)] = 29010, + [SMALL_STATE(868)] = 29091, + [SMALL_STATE(869)] = 29174, + [SMALL_STATE(870)] = 29257, + [SMALL_STATE(871)] = 29338, + [SMALL_STATE(872)] = 29415, + [SMALL_STATE(873)] = 29498, + [SMALL_STATE(874)] = 29581, + [SMALL_STATE(875)] = 29628, + [SMALL_STATE(876)] = 29709, + [SMALL_STATE(877)] = 29790, + [SMALL_STATE(878)] = 29873, + [SMALL_STATE(879)] = 29948, + [SMALL_STATE(880)] = 30031, + [SMALL_STATE(881)] = 30108, + [SMALL_STATE(882)] = 30191, + [SMALL_STATE(883)] = 30272, + [SMALL_STATE(884)] = 30353, + [SMALL_STATE(885)] = 30436, + [SMALL_STATE(886)] = 30519, + [SMALL_STATE(887)] = 30578, + [SMALL_STATE(888)] = 30647, + [SMALL_STATE(889)] = 30730, + [SMALL_STATE(890)] = 30813, + [SMALL_STATE(891)] = 30876, + [SMALL_STATE(892)] = 30959, + [SMALL_STATE(893)] = 31032, + [SMALL_STATE(894)] = 31115, + [SMALL_STATE(895)] = 31162, + [SMALL_STATE(896)] = 31243, + [SMALL_STATE(897)] = 31326, + [SMALL_STATE(898)] = 31409, + [SMALL_STATE(899)] = 31492, + [SMALL_STATE(900)] = 31575, + [SMALL_STATE(901)] = 31650, + [SMALL_STATE(902)] = 31733, + [SMALL_STATE(903)] = 31800, + [SMALL_STATE(904)] = 31883, + [SMALL_STATE(905)] = 31948, + [SMALL_STATE(906)] = 32031, + [SMALL_STATE(907)] = 32080, + [SMALL_STATE(908)] = 32141, + [SMALL_STATE(909)] = 32219, + [SMALL_STATE(910)] = 32291, + [SMALL_STATE(911)] = 32363, + [SMALL_STATE(912)] = 32443, + [SMALL_STATE(913)] = 32523, + [SMALL_STATE(914)] = 32603, + [SMALL_STATE(915)] = 32683, + [SMALL_STATE(916)] = 32763, + [SMALL_STATE(917)] = 32843, + [SMALL_STATE(918)] = 32915, + [SMALL_STATE(919)] = 32995, + [SMALL_STATE(920)] = 33075, + [SMALL_STATE(921)] = 33155, + [SMALL_STATE(922)] = 33235, + [SMALL_STATE(923)] = 33315, + [SMALL_STATE(924)] = 33395, + [SMALL_STATE(925)] = 33475, + [SMALL_STATE(926)] = 33555, + [SMALL_STATE(927)] = 33635, + [SMALL_STATE(928)] = 33715, + [SMALL_STATE(929)] = 33793, + [SMALL_STATE(930)] = 33871, + [SMALL_STATE(931)] = 33951, + [SMALL_STATE(932)] = 34023, + [SMALL_STATE(933)] = 34103, + [SMALL_STATE(934)] = 34183, + [SMALL_STATE(935)] = 34263, + [SMALL_STATE(936)] = 34343, + [SMALL_STATE(937)] = 34421, + [SMALL_STATE(938)] = 34501, + [SMALL_STATE(939)] = 34573, + [SMALL_STATE(940)] = 34653, + [SMALL_STATE(941)] = 34698, + [SMALL_STATE(942)] = 34743, + [SMALL_STATE(943)] = 34820, + [SMALL_STATE(944)] = 34865, + [SMALL_STATE(945)] = 34945, + [SMALL_STATE(946)] = 35025, + [SMALL_STATE(947)] = 35105, + [SMALL_STATE(948)] = 35185, + [SMALL_STATE(949)] = 35265, + [SMALL_STATE(950)] = 35308, + [SMALL_STATE(951)] = 35351, + [SMALL_STATE(952)] = 35394, + [SMALL_STATE(953)] = 35439, + [SMALL_STATE(954)] = 35504, + [SMALL_STATE(955)] = 35569, + [SMALL_STATE(956)] = 35634, + [SMALL_STATE(957)] = 35699, + [SMALL_STATE(958)] = 35764, + [SMALL_STATE(959)] = 35826, + [SMALL_STATE(960)] = 35888, + [SMALL_STATE(961)] = 35950, + [SMALL_STATE(962)] = 36009, + [SMALL_STATE(963)] = 36068, + [SMALL_STATE(964)] = 36104, + [SMALL_STATE(965)] = 36140, + [SMALL_STATE(966)] = 36176, + [SMALL_STATE(967)] = 36219, + [SMALL_STATE(968)] = 36249, + [SMALL_STATE(969)] = 36279, + [SMALL_STATE(970)] = 36309, + [SMALL_STATE(971)] = 36339, + [SMALL_STATE(972)] = 36369, + [SMALL_STATE(973)] = 36396, + [SMALL_STATE(974)] = 36425, + [SMALL_STATE(975)] = 36454, + [SMALL_STATE(976)] = 36481, + [SMALL_STATE(977)] = 36510, + [SMALL_STATE(978)] = 36537, + [SMALL_STATE(979)] = 36566, + [SMALL_STATE(980)] = 36592, + [SMALL_STATE(981)] = 36618, + [SMALL_STATE(982)] = 36644, + [SMALL_STATE(983)] = 36670, + [SMALL_STATE(984)] = 36696, + [SMALL_STATE(985)] = 36722, + [SMALL_STATE(986)] = 36748, + [SMALL_STATE(987)] = 36784, + [SMALL_STATE(988)] = 36810, + [SMALL_STATE(989)] = 36836, + [SMALL_STATE(990)] = 36862, + [SMALL_STATE(991)] = 36898, + [SMALL_STATE(992)] = 36924, + [SMALL_STATE(993)] = 36947, + [SMALL_STATE(994)] = 36970, + [SMALL_STATE(995)] = 36993, + [SMALL_STATE(996)] = 37016, + [SMALL_STATE(997)] = 37039, + [SMALL_STATE(998)] = 37062, + [SMALL_STATE(999)] = 37085, + [SMALL_STATE(1000)] = 37108, + [SMALL_STATE(1001)] = 37131, + [SMALL_STATE(1002)] = 37154, + [SMALL_STATE(1003)] = 37177, + [SMALL_STATE(1004)] = 37200, + [SMALL_STATE(1005)] = 37223, + [SMALL_STATE(1006)] = 37246, + [SMALL_STATE(1007)] = 37269, + [SMALL_STATE(1008)] = 37294, + [SMALL_STATE(1009)] = 37317, + [SMALL_STATE(1010)] = 37340, + [SMALL_STATE(1011)] = 37363, + [SMALL_STATE(1012)] = 37386, + [SMALL_STATE(1013)] = 37409, + [SMALL_STATE(1014)] = 37432, + [SMALL_STATE(1015)] = 37455, + [SMALL_STATE(1016)] = 37478, + [SMALL_STATE(1017)] = 37501, + [SMALL_STATE(1018)] = 37524, + [SMALL_STATE(1019)] = 37547, + [SMALL_STATE(1020)] = 37570, + [SMALL_STATE(1021)] = 37593, + [SMALL_STATE(1022)] = 37616, + [SMALL_STATE(1023)] = 37639, + [SMALL_STATE(1024)] = 37662, + [SMALL_STATE(1025)] = 37685, + [SMALL_STATE(1026)] = 37708, + [SMALL_STATE(1027)] = 37733, + [SMALL_STATE(1028)] = 37756, + [SMALL_STATE(1029)] = 37779, + [SMALL_STATE(1030)] = 37802, + [SMALL_STATE(1031)] = 37825, + [SMALL_STATE(1032)] = 37848, + [SMALL_STATE(1033)] = 37871, + [SMALL_STATE(1034)] = 37898, + [SMALL_STATE(1035)] = 37921, + [SMALL_STATE(1036)] = 37954, + [SMALL_STATE(1037)] = 37977, + [SMALL_STATE(1038)] = 38000, + [SMALL_STATE(1039)] = 38023, + [SMALL_STATE(1040)] = 38046, + [SMALL_STATE(1041)] = 38071, + [SMALL_STATE(1042)] = 38094, + [SMALL_STATE(1043)] = 38117, + [SMALL_STATE(1044)] = 38140, + [SMALL_STATE(1045)] = 38163, + [SMALL_STATE(1046)] = 38186, + [SMALL_STATE(1047)] = 38209, + [SMALL_STATE(1048)] = 38232, + [SMALL_STATE(1049)] = 38255, + [SMALL_STATE(1050)] = 38278, + [SMALL_STATE(1051)] = 38301, + [SMALL_STATE(1052)] = 38324, + [SMALL_STATE(1053)] = 38347, + [SMALL_STATE(1054)] = 38370, + [SMALL_STATE(1055)] = 38393, + [SMALL_STATE(1056)] = 38416, + [SMALL_STATE(1057)] = 38439, + [SMALL_STATE(1058)] = 38462, + [SMALL_STATE(1059)] = 38485, + [SMALL_STATE(1060)] = 38508, + [SMALL_STATE(1061)] = 38531, + [SMALL_STATE(1062)] = 38554, + [SMALL_STATE(1063)] = 38577, + [SMALL_STATE(1064)] = 38600, + [SMALL_STATE(1065)] = 38623, + [SMALL_STATE(1066)] = 38646, + [SMALL_STATE(1067)] = 38669, + [SMALL_STATE(1068)] = 38692, + [SMALL_STATE(1069)] = 38715, + [SMALL_STATE(1070)] = 38738, + [SMALL_STATE(1071)] = 38761, + [SMALL_STATE(1072)] = 38784, + [SMALL_STATE(1073)] = 38807, + [SMALL_STATE(1074)] = 38830, + [SMALL_STATE(1075)] = 38853, + [SMALL_STATE(1076)] = 38876, + [SMALL_STATE(1077)] = 38899, + [SMALL_STATE(1078)] = 38926, + [SMALL_STATE(1079)] = 38949, + [SMALL_STATE(1080)] = 38972, + [SMALL_STATE(1081)] = 38995, + [SMALL_STATE(1082)] = 39018, + [SMALL_STATE(1083)] = 39043, + [SMALL_STATE(1084)] = 39066, + [SMALL_STATE(1085)] = 39089, + [SMALL_STATE(1086)] = 39112, + [SMALL_STATE(1087)] = 39135, + [SMALL_STATE(1088)] = 39158, + [SMALL_STATE(1089)] = 39181, + [SMALL_STATE(1090)] = 39204, + [SMALL_STATE(1091)] = 39227, + [SMALL_STATE(1092)] = 39250, + [SMALL_STATE(1093)] = 39273, + [SMALL_STATE(1094)] = 39296, + [SMALL_STATE(1095)] = 39319, + [SMALL_STATE(1096)] = 39342, + [SMALL_STATE(1097)] = 39365, + [SMALL_STATE(1098)] = 39388, + [SMALL_STATE(1099)] = 39411, + [SMALL_STATE(1100)] = 39434, + [SMALL_STATE(1101)] = 39457, + [SMALL_STATE(1102)] = 39480, + [SMALL_STATE(1103)] = 39503, + [SMALL_STATE(1104)] = 39526, + [SMALL_STATE(1105)] = 39549, + [SMALL_STATE(1106)] = 39576, + [SMALL_STATE(1107)] = 39599, + [SMALL_STATE(1108)] = 39622, + [SMALL_STATE(1109)] = 39645, + [SMALL_STATE(1110)] = 39672, + [SMALL_STATE(1111)] = 39699, + [SMALL_STATE(1112)] = 39722, + [SMALL_STATE(1113)] = 39755, + [SMALL_STATE(1114)] = 39778, + [SMALL_STATE(1115)] = 39801, + [SMALL_STATE(1116)] = 39824, + [SMALL_STATE(1117)] = 39847, + [SMALL_STATE(1118)] = 39872, + [SMALL_STATE(1119)] = 39895, + [SMALL_STATE(1120)] = 39918, + [SMALL_STATE(1121)] = 39941, + [SMALL_STATE(1122)] = 39964, + [SMALL_STATE(1123)] = 39987, + [SMALL_STATE(1124)] = 40010, + [SMALL_STATE(1125)] = 40033, + [SMALL_STATE(1126)] = 40056, + [SMALL_STATE(1127)] = 40087, + [SMALL_STATE(1128)] = 40110, + [SMALL_STATE(1129)] = 40133, + [SMALL_STATE(1130)] = 40156, + [SMALL_STATE(1131)] = 40179, + [SMALL_STATE(1132)] = 40204, + [SMALL_STATE(1133)] = 40227, + [SMALL_STATE(1134)] = 40250, + [SMALL_STATE(1135)] = 40273, + [SMALL_STATE(1136)] = 40298, + [SMALL_STATE(1137)] = 40321, + [SMALL_STATE(1138)] = 40344, + [SMALL_STATE(1139)] = 40367, + [SMALL_STATE(1140)] = 40390, + [SMALL_STATE(1141)] = 40413, + [SMALL_STATE(1142)] = 40436, + [SMALL_STATE(1143)] = 40459, + [SMALL_STATE(1144)] = 40482, + [SMALL_STATE(1145)] = 40505, + [SMALL_STATE(1146)] = 40528, + [SMALL_STATE(1147)] = 40551, + [SMALL_STATE(1148)] = 40574, + [SMALL_STATE(1149)] = 40597, + [SMALL_STATE(1150)] = 40620, + [SMALL_STATE(1151)] = 40643, + [SMALL_STATE(1152)] = 40666, + [SMALL_STATE(1153)] = 40689, + [SMALL_STATE(1154)] = 40712, + [SMALL_STATE(1155)] = 40735, + [SMALL_STATE(1156)] = 40758, + [SMALL_STATE(1157)] = 40781, + [SMALL_STATE(1158)] = 40804, + [SMALL_STATE(1159)] = 40827, + [SMALL_STATE(1160)] = 40850, + [SMALL_STATE(1161)] = 40873, + [SMALL_STATE(1162)] = 40896, + [SMALL_STATE(1163)] = 40919, + [SMALL_STATE(1164)] = 40942, + [SMALL_STATE(1165)] = 40965, + [SMALL_STATE(1166)] = 40988, + [SMALL_STATE(1167)] = 41011, + [SMALL_STATE(1168)] = 41034, + [SMALL_STATE(1169)] = 41057, + [SMALL_STATE(1170)] = 41080, + [SMALL_STATE(1171)] = 41103, + [SMALL_STATE(1172)] = 41126, + [SMALL_STATE(1173)] = 41150, + [SMALL_STATE(1174)] = 41174, + [SMALL_STATE(1175)] = 41202, + [SMALL_STATE(1176)] = 41226, + [SMALL_STATE(1177)] = 41250, + [SMALL_STATE(1178)] = 41274, + [SMALL_STATE(1179)] = 41298, + [SMALL_STATE(1180)] = 41322, + [SMALL_STATE(1181)] = 41346, + [SMALL_STATE(1182)] = 41370, + [SMALL_STATE(1183)] = 41394, + [SMALL_STATE(1184)] = 41418, + [SMALL_STATE(1185)] = 41442, + [SMALL_STATE(1186)] = 41466, + [SMALL_STATE(1187)] = 41490, + [SMALL_STATE(1188)] = 41514, + [SMALL_STATE(1189)] = 41538, + [SMALL_STATE(1190)] = 41562, + [SMALL_STATE(1191)] = 41586, + [SMALL_STATE(1192)] = 41610, + [SMALL_STATE(1193)] = 41634, + [SMALL_STATE(1194)] = 41659, + [SMALL_STATE(1195)] = 41700, + [SMALL_STATE(1196)] = 41741, + [SMALL_STATE(1197)] = 41784, + [SMALL_STATE(1198)] = 41807, + [SMALL_STATE(1199)] = 41830, + [SMALL_STATE(1200)] = 41854, + [SMALL_STATE(1201)] = 41878, + [SMALL_STATE(1202)] = 41902, + [SMALL_STATE(1203)] = 41926, + [SMALL_STATE(1204)] = 41950, + [SMALL_STATE(1205)] = 41974, + [SMALL_STATE(1206)] = 41996, + [SMALL_STATE(1207)] = 42038, + [SMALL_STATE(1208)] = 42062, + [SMALL_STATE(1209)] = 42086, + [SMALL_STATE(1210)] = 42110, + [SMALL_STATE(1211)] = 42134, + [SMALL_STATE(1212)] = 42158, + [SMALL_STATE(1213)] = 42182, + [SMALL_STATE(1214)] = 42203, + [SMALL_STATE(1215)] = 42224, + [SMALL_STATE(1216)] = 42245, + [SMALL_STATE(1217)] = 42266, + [SMALL_STATE(1218)] = 42287, + [SMALL_STATE(1219)] = 42308, + [SMALL_STATE(1220)] = 42329, + [SMALL_STATE(1221)] = 42350, + [SMALL_STATE(1222)] = 42371, + [SMALL_STATE(1223)] = 42392, + [SMALL_STATE(1224)] = 42413, + [SMALL_STATE(1225)] = 42434, + [SMALL_STATE(1226)] = 42455, + [SMALL_STATE(1227)] = 42476, + [SMALL_STATE(1228)] = 42497, + [SMALL_STATE(1229)] = 42518, + [SMALL_STATE(1230)] = 42539, + [SMALL_STATE(1231)] = 42560, + [SMALL_STATE(1232)] = 42581, + [SMALL_STATE(1233)] = 42602, + [SMALL_STATE(1234)] = 42623, + [SMALL_STATE(1235)] = 42644, + [SMALL_STATE(1236)] = 42665, + [SMALL_STATE(1237)] = 42686, + [SMALL_STATE(1238)] = 42707, + [SMALL_STATE(1239)] = 42728, + [SMALL_STATE(1240)] = 42749, + [SMALL_STATE(1241)] = 42770, + [SMALL_STATE(1242)] = 42791, + [SMALL_STATE(1243)] = 42812, + [SMALL_STATE(1244)] = 42833, + [SMALL_STATE(1245)] = 42854, + [SMALL_STATE(1246)] = 42878, + [SMALL_STATE(1247)] = 42900, + [SMALL_STATE(1248)] = 42924, + [SMALL_STATE(1249)] = 42948, + [SMALL_STATE(1250)] = 42986, + [SMALL_STATE(1251)] = 43010, + [SMALL_STATE(1252)] = 43030, + [SMALL_STATE(1253)] = 43054, + [SMALL_STATE(1254)] = 43078, + [SMALL_STATE(1255)] = 43106, + [SMALL_STATE(1256)] = 43130, + [SMALL_STATE(1257)] = 43158, + [SMALL_STATE(1258)] = 43182, + [SMALL_STATE(1259)] = 43204, + [SMALL_STATE(1260)] = 43242, + [SMALL_STATE(1261)] = 43264, + [SMALL_STATE(1262)] = 43286, + [SMALL_STATE(1263)] = 43311, + [SMALL_STATE(1264)] = 43336, + [SMALL_STATE(1265)] = 43353, + [SMALL_STATE(1266)] = 43382, + [SMALL_STATE(1267)] = 43411, + [SMALL_STATE(1268)] = 43438, + [SMALL_STATE(1269)] = 43467, + [SMALL_STATE(1270)] = 43496, + [SMALL_STATE(1271)] = 43525, + [SMALL_STATE(1272)] = 43542, + [SMALL_STATE(1273)] = 43559, + [SMALL_STATE(1274)] = 43584, + [SMALL_STATE(1275)] = 43617, + [SMALL_STATE(1276)] = 43645, + [SMALL_STATE(1277)] = 43675, + [SMALL_STATE(1278)] = 43703, + [SMALL_STATE(1279)] = 43729, + [SMALL_STATE(1280)] = 43761, + [SMALL_STATE(1281)] = 43793, + [SMALL_STATE(1282)] = 43815, + [SMALL_STATE(1283)] = 43845, + [SMALL_STATE(1284)] = 43877, + [SMALL_STATE(1285)] = 43909, + [SMALL_STATE(1286)] = 43939, + [SMALL_STATE(1287)] = 43969, + [SMALL_STATE(1288)] = 43999, + [SMALL_STATE(1289)] = 44025, + [SMALL_STATE(1290)] = 44053, + [SMALL_STATE(1291)] = 44083, + [SMALL_STATE(1292)] = 44109, + [SMALL_STATE(1293)] = 44135, + [SMALL_STATE(1294)] = 44161, + [SMALL_STATE(1295)] = 44187, + [SMALL_STATE(1296)] = 44214, + [SMALL_STATE(1297)] = 44241, + [SMALL_STATE(1298)] = 44264, + [SMALL_STATE(1299)] = 44293, + [SMALL_STATE(1300)] = 44320, + [SMALL_STATE(1301)] = 44349, + [SMALL_STATE(1302)] = 44374, + [SMALL_STATE(1303)] = 44401, + [SMALL_STATE(1304)] = 44428, + [SMALL_STATE(1305)] = 44451, + [SMALL_STATE(1306)] = 44476, + [SMALL_STATE(1307)] = 44501, + [SMALL_STATE(1308)] = 44528, + [SMALL_STATE(1309)] = 44551, + [SMALL_STATE(1310)] = 44576, + [SMALL_STATE(1311)] = 44603, + [SMALL_STATE(1312)] = 44632, + [SMALL_STATE(1313)] = 44657, + [SMALL_STATE(1314)] = 44680, + [SMALL_STATE(1315)] = 44709, + [SMALL_STATE(1316)] = 44736, + [SMALL_STATE(1317)] = 44763, + [SMALL_STATE(1318)] = 44790, + [SMALL_STATE(1319)] = 44817, + [SMALL_STATE(1320)] = 44844, + [SMALL_STATE(1321)] = 44871, + [SMALL_STATE(1322)] = 44894, + [SMALL_STATE(1323)] = 44921, + [SMALL_STATE(1324)] = 44948, + [SMALL_STATE(1325)] = 44975, + [SMALL_STATE(1326)] = 45002, + [SMALL_STATE(1327)] = 45016, + [SMALL_STATE(1328)] = 45032, + [SMALL_STATE(1329)] = 45048, + [SMALL_STATE(1330)] = 45062, + [SMALL_STATE(1331)] = 45076, + [SMALL_STATE(1332)] = 45090, + [SMALL_STATE(1333)] = 45104, + [SMALL_STATE(1334)] = 45128, + [SMALL_STATE(1335)] = 45152, + [SMALL_STATE(1336)] = 45178, + [SMALL_STATE(1337)] = 45202, + [SMALL_STATE(1338)] = 45224, + [SMALL_STATE(1339)] = 45248, + [SMALL_STATE(1340)] = 45274, + [SMALL_STATE(1341)] = 45298, + [SMALL_STATE(1342)] = 45324, + [SMALL_STATE(1343)] = 45348, + [SMALL_STATE(1344)] = 45372, + [SMALL_STATE(1345)] = 45396, + [SMALL_STATE(1346)] = 45420, + [SMALL_STATE(1347)] = 45444, + [SMALL_STATE(1348)] = 45468, + [SMALL_STATE(1349)] = 45492, + [SMALL_STATE(1350)] = 45508, + [SMALL_STATE(1351)] = 45532, + [SMALL_STATE(1352)] = 45552, + [SMALL_STATE(1353)] = 45576, + [SMALL_STATE(1354)] = 45600, + [SMALL_STATE(1355)] = 45624, + [SMALL_STATE(1356)] = 45648, + [SMALL_STATE(1357)] = 45664, + [SMALL_STATE(1358)] = 45690, + [SMALL_STATE(1359)] = 45713, + [SMALL_STATE(1360)] = 45736, + [SMALL_STATE(1361)] = 45759, + [SMALL_STATE(1362)] = 45776, + [SMALL_STATE(1363)] = 45799, + [SMALL_STATE(1364)] = 45816, + [SMALL_STATE(1365)] = 45837, + [SMALL_STATE(1366)] = 45860, + [SMALL_STATE(1367)] = 45883, + [SMALL_STATE(1368)] = 45906, + [SMALL_STATE(1369)] = 45923, + [SMALL_STATE(1370)] = 45940, + [SMALL_STATE(1371)] = 45963, + [SMALL_STATE(1372)] = 45986, + [SMALL_STATE(1373)] = 46007, + [SMALL_STATE(1374)] = 46030, + [SMALL_STATE(1375)] = 46053, + [SMALL_STATE(1376)] = 46068, + [SMALL_STATE(1377)] = 46091, + [SMALL_STATE(1378)] = 46114, + [SMALL_STATE(1379)] = 46137, + [SMALL_STATE(1380)] = 46156, + [SMALL_STATE(1381)] = 46173, + [SMALL_STATE(1382)] = 46196, + [SMALL_STATE(1383)] = 46219, + [SMALL_STATE(1384)] = 46236, + [SMALL_STATE(1385)] = 46259, + [SMALL_STATE(1386)] = 46282, + [SMALL_STATE(1387)] = 46303, + [SMALL_STATE(1388)] = 46326, + [SMALL_STATE(1389)] = 46349, + [SMALL_STATE(1390)] = 46372, + [SMALL_STATE(1391)] = 46395, + [SMALL_STATE(1392)] = 46412, + [SMALL_STATE(1393)] = 46429, + [SMALL_STATE(1394)] = 46452, + [SMALL_STATE(1395)] = 46471, + [SMALL_STATE(1396)] = 46494, + [SMALL_STATE(1397)] = 46517, + [SMALL_STATE(1398)] = 46534, + [SMALL_STATE(1399)] = 46557, + [SMALL_STATE(1400)] = 46580, + [SMALL_STATE(1401)] = 46603, + [SMALL_STATE(1402)] = 46626, + [SMALL_STATE(1403)] = 46649, + [SMALL_STATE(1404)] = 46668, + [SMALL_STATE(1405)] = 46691, + [SMALL_STATE(1406)] = 46714, + [SMALL_STATE(1407)] = 46733, + [SMALL_STATE(1408)] = 46752, + [SMALL_STATE(1409)] = 46769, + [SMALL_STATE(1410)] = 46792, + [SMALL_STATE(1411)] = 46815, + [SMALL_STATE(1412)] = 46838, + [SMALL_STATE(1413)] = 46855, + [SMALL_STATE(1414)] = 46878, + [SMALL_STATE(1415)] = 46901, + [SMALL_STATE(1416)] = 46924, + [SMALL_STATE(1417)] = 46941, + [SMALL_STATE(1418)] = 46964, + [SMALL_STATE(1419)] = 46979, + [SMALL_STATE(1420)] = 46998, + [SMALL_STATE(1421)] = 47017, + [SMALL_STATE(1422)] = 47040, + [SMALL_STATE(1423)] = 47061, + [SMALL_STATE(1424)] = 47084, + [SMALL_STATE(1425)] = 47107, + [SMALL_STATE(1426)] = 47130, + [SMALL_STATE(1427)] = 47153, + [SMALL_STATE(1428)] = 47176, + [SMALL_STATE(1429)] = 47199, + [SMALL_STATE(1430)] = 47220, + [SMALL_STATE(1431)] = 47243, + [SMALL_STATE(1432)] = 47260, + [SMALL_STATE(1433)] = 47283, + [SMALL_STATE(1434)] = 47300, + [SMALL_STATE(1435)] = 47317, + [SMALL_STATE(1436)] = 47333, + [SMALL_STATE(1437)] = 47349, + [SMALL_STATE(1438)] = 47369, + [SMALL_STATE(1439)] = 47387, + [SMALL_STATE(1440)] = 47405, + [SMALL_STATE(1441)] = 47421, + [SMALL_STATE(1442)] = 47437, + [SMALL_STATE(1443)] = 47453, + [SMALL_STATE(1444)] = 47469, + [SMALL_STATE(1445)] = 47489, + [SMALL_STATE(1446)] = 47503, + [SMALL_STATE(1447)] = 47521, + [SMALL_STATE(1448)] = 47541, + [SMALL_STATE(1449)] = 47555, + [SMALL_STATE(1450)] = 47571, + [SMALL_STATE(1451)] = 47591, + [SMALL_STATE(1452)] = 47607, + [SMALL_STATE(1453)] = 47625, + [SMALL_STATE(1454)] = 47641, + [SMALL_STATE(1455)] = 47657, + [SMALL_STATE(1456)] = 47673, + [SMALL_STATE(1457)] = 47689, + [SMALL_STATE(1458)] = 47705, + [SMALL_STATE(1459)] = 47725, + [SMALL_STATE(1460)] = 47741, + [SMALL_STATE(1461)] = 47761, + [SMALL_STATE(1462)] = 47779, + [SMALL_STATE(1463)] = 47799, + [SMALL_STATE(1464)] = 47815, + [SMALL_STATE(1465)] = 47833, + [SMALL_STATE(1466)] = 47853, + [SMALL_STATE(1467)] = 47873, + [SMALL_STATE(1468)] = 47893, + [SMALL_STATE(1469)] = 47909, + [SMALL_STATE(1470)] = 47929, + [SMALL_STATE(1471)] = 47945, + [SMALL_STATE(1472)] = 47965, + [SMALL_STATE(1473)] = 47981, + [SMALL_STATE(1474)] = 48001, + [SMALL_STATE(1475)] = 48017, + [SMALL_STATE(1476)] = 48030, + [SMALL_STATE(1477)] = 48043, + [SMALL_STATE(1478)] = 48058, + [SMALL_STATE(1479)] = 48075, + [SMALL_STATE(1480)] = 48092, + [SMALL_STATE(1481)] = 48109, + [SMALL_STATE(1482)] = 48126, + [SMALL_STATE(1483)] = 48141, + [SMALL_STATE(1484)] = 48154, + [SMALL_STATE(1485)] = 48171, + [SMALL_STATE(1486)] = 48184, + [SMALL_STATE(1487)] = 48201, + [SMALL_STATE(1488)] = 48214, + [SMALL_STATE(1489)] = 48231, + [SMALL_STATE(1490)] = 48244, + [SMALL_STATE(1491)] = 48259, + [SMALL_STATE(1492)] = 48274, + [SMALL_STATE(1493)] = 48291, + [SMALL_STATE(1494)] = 48306, + [SMALL_STATE(1495)] = 48323, + [SMALL_STATE(1496)] = 48340, + [SMALL_STATE(1497)] = 48355, + [SMALL_STATE(1498)] = 48372, + [SMALL_STATE(1499)] = 48389, + [SMALL_STATE(1500)] = 48406, + [SMALL_STATE(1501)] = 48423, + [SMALL_STATE(1502)] = 48438, + [SMALL_STATE(1503)] = 48455, + [SMALL_STATE(1504)] = 48472, + [SMALL_STATE(1505)] = 48489, + [SMALL_STATE(1506)] = 48504, + [SMALL_STATE(1507)] = 48519, + [SMALL_STATE(1508)] = 48536, + [SMALL_STATE(1509)] = 48553, + [SMALL_STATE(1510)] = 48570, + [SMALL_STATE(1511)] = 48587, + [SMALL_STATE(1512)] = 48604, + [SMALL_STATE(1513)] = 48617, + [SMALL_STATE(1514)] = 48634, + [SMALL_STATE(1515)] = 48649, + [SMALL_STATE(1516)] = 48666, + [SMALL_STATE(1517)] = 48681, + [SMALL_STATE(1518)] = 48694, + [SMALL_STATE(1519)] = 48707, + [SMALL_STATE(1520)] = 48722, + [SMALL_STATE(1521)] = 48739, + [SMALL_STATE(1522)] = 48756, + [SMALL_STATE(1523)] = 48771, + [SMALL_STATE(1524)] = 48788, + [SMALL_STATE(1525)] = 48801, + [SMALL_STATE(1526)] = 48814, + [SMALL_STATE(1527)] = 48827, + [SMALL_STATE(1528)] = 48844, + [SMALL_STATE(1529)] = 48859, + [SMALL_STATE(1530)] = 48876, + [SMALL_STATE(1531)] = 48893, + [SMALL_STATE(1532)] = 48906, + [SMALL_STATE(1533)] = 48923, + [SMALL_STATE(1534)] = 48940, + [SMALL_STATE(1535)] = 48955, + [SMALL_STATE(1536)] = 48970, + [SMALL_STATE(1537)] = 48985, + [SMALL_STATE(1538)] = 49002, + [SMALL_STATE(1539)] = 49019, + [SMALL_STATE(1540)] = 49034, + [SMALL_STATE(1541)] = 49049, + [SMALL_STATE(1542)] = 49066, + [SMALL_STATE(1543)] = 49081, + [SMALL_STATE(1544)] = 49098, + [SMALL_STATE(1545)] = 49115, + [SMALL_STATE(1546)] = 49132, + [SMALL_STATE(1547)] = 49149, + [SMALL_STATE(1548)] = 49162, + [SMALL_STATE(1549)] = 49179, + [SMALL_STATE(1550)] = 49194, + [SMALL_STATE(1551)] = 49209, + [SMALL_STATE(1552)] = 49226, + [SMALL_STATE(1553)] = 49239, + [SMALL_STATE(1554)] = 49256, + [SMALL_STATE(1555)] = 49271, + [SMALL_STATE(1556)] = 49288, + [SMALL_STATE(1557)] = 49302, + [SMALL_STATE(1558)] = 49316, + [SMALL_STATE(1559)] = 49330, + [SMALL_STATE(1560)] = 49342, + [SMALL_STATE(1561)] = 49356, + [SMALL_STATE(1562)] = 49370, + [SMALL_STATE(1563)] = 49384, + [SMALL_STATE(1564)] = 49398, + [SMALL_STATE(1565)] = 49408, + [SMALL_STATE(1566)] = 49418, + [SMALL_STATE(1567)] = 49432, + [SMALL_STATE(1568)] = 49444, + [SMALL_STATE(1569)] = 49458, + [SMALL_STATE(1570)] = 49468, + [SMALL_STATE(1571)] = 49478, + [SMALL_STATE(1572)] = 49492, + [SMALL_STATE(1573)] = 49502, + [SMALL_STATE(1574)] = 49516, + [SMALL_STATE(1575)] = 49530, + [SMALL_STATE(1576)] = 49544, + [SMALL_STATE(1577)] = 49558, + [SMALL_STATE(1578)] = 49572, + [SMALL_STATE(1579)] = 49586, + [SMALL_STATE(1580)] = 49600, + [SMALL_STATE(1581)] = 49612, + [SMALL_STATE(1582)] = 49626, + [SMALL_STATE(1583)] = 49640, + [SMALL_STATE(1584)] = 49654, + [SMALL_STATE(1585)] = 49666, + [SMALL_STATE(1586)] = 49680, + [SMALL_STATE(1587)] = 49694, + [SMALL_STATE(1588)] = 49706, + [SMALL_STATE(1589)] = 49720, + [SMALL_STATE(1590)] = 49734, + [SMALL_STATE(1591)] = 49748, + [SMALL_STATE(1592)] = 49762, + [SMALL_STATE(1593)] = 49776, + [SMALL_STATE(1594)] = 49790, + [SMALL_STATE(1595)] = 49804, + [SMALL_STATE(1596)] = 49816, + [SMALL_STATE(1597)] = 49830, + [SMALL_STATE(1598)] = 49844, + [SMALL_STATE(1599)] = 49858, + [SMALL_STATE(1600)] = 49872, + [SMALL_STATE(1601)] = 49884, + [SMALL_STATE(1602)] = 49898, + [SMALL_STATE(1603)] = 49910, + [SMALL_STATE(1604)] = 49924, + [SMALL_STATE(1605)] = 49936, + [SMALL_STATE(1606)] = 49950, + [SMALL_STATE(1607)] = 49964, + [SMALL_STATE(1608)] = 49978, + [SMALL_STATE(1609)] = 49992, + [SMALL_STATE(1610)] = 50006, + [SMALL_STATE(1611)] = 50020, + [SMALL_STATE(1612)] = 50034, + [SMALL_STATE(1613)] = 50048, + [SMALL_STATE(1614)] = 50062, + [SMALL_STATE(1615)] = 50076, + [SMALL_STATE(1616)] = 50090, + [SMALL_STATE(1617)] = 50104, + [SMALL_STATE(1618)] = 50118, + [SMALL_STATE(1619)] = 50132, + [SMALL_STATE(1620)] = 50146, + [SMALL_STATE(1621)] = 50160, + [SMALL_STATE(1622)] = 50170, + [SMALL_STATE(1623)] = 50184, + [SMALL_STATE(1624)] = 50194, + [SMALL_STATE(1625)] = 50208, + [SMALL_STATE(1626)] = 50222, + [SMALL_STATE(1627)] = 50234, + [SMALL_STATE(1628)] = 50244, + [SMALL_STATE(1629)] = 50258, + [SMALL_STATE(1630)] = 50272, + [SMALL_STATE(1631)] = 50284, + [SMALL_STATE(1632)] = 50298, + [SMALL_STATE(1633)] = 50312, + [SMALL_STATE(1634)] = 50326, + [SMALL_STATE(1635)] = 50340, + [SMALL_STATE(1636)] = 50354, + [SMALL_STATE(1637)] = 50368, + [SMALL_STATE(1638)] = 50382, + [SMALL_STATE(1639)] = 50396, + [SMALL_STATE(1640)] = 50410, + [SMALL_STATE(1641)] = 50424, + [SMALL_STATE(1642)] = 50438, + [SMALL_STATE(1643)] = 50452, + [SMALL_STATE(1644)] = 50466, + [SMALL_STATE(1645)] = 50476, + [SMALL_STATE(1646)] = 50486, + [SMALL_STATE(1647)] = 50498, + [SMALL_STATE(1648)] = 50512, + [SMALL_STATE(1649)] = 50526, + [SMALL_STATE(1650)] = 50540, + [SMALL_STATE(1651)] = 50554, + [SMALL_STATE(1652)] = 50568, + [SMALL_STATE(1653)] = 50578, + [SMALL_STATE(1654)] = 50592, + [SMALL_STATE(1655)] = 50602, + [SMALL_STATE(1656)] = 50616, + [SMALL_STATE(1657)] = 50630, + [SMALL_STATE(1658)] = 50640, + [SMALL_STATE(1659)] = 50654, + [SMALL_STATE(1660)] = 50668, + [SMALL_STATE(1661)] = 50682, + [SMALL_STATE(1662)] = 50696, + [SMALL_STATE(1663)] = 50710, + [SMALL_STATE(1664)] = 50722, + [SMALL_STATE(1665)] = 50736, + [SMALL_STATE(1666)] = 50750, + [SMALL_STATE(1667)] = 50764, + [SMALL_STATE(1668)] = 50778, + [SMALL_STATE(1669)] = 50792, + [SMALL_STATE(1670)] = 50806, + [SMALL_STATE(1671)] = 50820, + [SMALL_STATE(1672)] = 50834, + [SMALL_STATE(1673)] = 50848, + [SMALL_STATE(1674)] = 50862, + [SMALL_STATE(1675)] = 50876, + [SMALL_STATE(1676)] = 50890, + [SMALL_STATE(1677)] = 50902, + [SMALL_STATE(1678)] = 50914, + [SMALL_STATE(1679)] = 50928, + [SMALL_STATE(1680)] = 50942, + [SMALL_STATE(1681)] = 50956, + [SMALL_STATE(1682)] = 50970, + [SMALL_STATE(1683)] = 50980, + [SMALL_STATE(1684)] = 50994, + [SMALL_STATE(1685)] = 51006, + [SMALL_STATE(1686)] = 51020, + [SMALL_STATE(1687)] = 51034, + [SMALL_STATE(1688)] = 51048, + [SMALL_STATE(1689)] = 51062, + [SMALL_STATE(1690)] = 51076, + [SMALL_STATE(1691)] = 51090, + [SMALL_STATE(1692)] = 51104, + [SMALL_STATE(1693)] = 51116, + [SMALL_STATE(1694)] = 51130, + [SMALL_STATE(1695)] = 51144, + [SMALL_STATE(1696)] = 51158, + [SMALL_STATE(1697)] = 51172, + [SMALL_STATE(1698)] = 51184, + [SMALL_STATE(1699)] = 51198, + [SMALL_STATE(1700)] = 51212, + [SMALL_STATE(1701)] = 51224, + [SMALL_STATE(1702)] = 51236, + [SMALL_STATE(1703)] = 51250, + [SMALL_STATE(1704)] = 51264, + [SMALL_STATE(1705)] = 51278, + [SMALL_STATE(1706)] = 51290, + [SMALL_STATE(1707)] = 51304, + [SMALL_STATE(1708)] = 51318, + [SMALL_STATE(1709)] = 51330, + [SMALL_STATE(1710)] = 51344, + [SMALL_STATE(1711)] = 51358, + [SMALL_STATE(1712)] = 51370, + [SMALL_STATE(1713)] = 51382, + [SMALL_STATE(1714)] = 51396, + [SMALL_STATE(1715)] = 51410, + [SMALL_STATE(1716)] = 51424, + [SMALL_STATE(1717)] = 51438, + [SMALL_STATE(1718)] = 51452, + [SMALL_STATE(1719)] = 51466, + [SMALL_STATE(1720)] = 51480, + [SMALL_STATE(1721)] = 51492, + [SMALL_STATE(1722)] = 51506, + [SMALL_STATE(1723)] = 51520, + [SMALL_STATE(1724)] = 51534, + [SMALL_STATE(1725)] = 51548, + [SMALL_STATE(1726)] = 51560, + [SMALL_STATE(1727)] = 51574, + [SMALL_STATE(1728)] = 51588, + [SMALL_STATE(1729)] = 51602, + [SMALL_STATE(1730)] = 51616, + [SMALL_STATE(1731)] = 51630, + [SMALL_STATE(1732)] = 51644, + [SMALL_STATE(1733)] = 51658, + [SMALL_STATE(1734)] = 51672, + [SMALL_STATE(1735)] = 51686, + [SMALL_STATE(1736)] = 51696, + [SMALL_STATE(1737)] = 51710, + [SMALL_STATE(1738)] = 51724, + [SMALL_STATE(1739)] = 51734, + [SMALL_STATE(1740)] = 51748, + [SMALL_STATE(1741)] = 51762, + [SMALL_STATE(1742)] = 51776, + [SMALL_STATE(1743)] = 51790, + [SMALL_STATE(1744)] = 51804, + [SMALL_STATE(1745)] = 51814, + [SMALL_STATE(1746)] = 51828, + [SMALL_STATE(1747)] = 51842, + [SMALL_STATE(1748)] = 51852, + [SMALL_STATE(1749)] = 51866, + [SMALL_STATE(1750)] = 51876, + [SMALL_STATE(1751)] = 51886, + [SMALL_STATE(1752)] = 51900, + [SMALL_STATE(1753)] = 51910, + [SMALL_STATE(1754)] = 51924, + [SMALL_STATE(1755)] = 51936, + [SMALL_STATE(1756)] = 51946, + [SMALL_STATE(1757)] = 51960, + [SMALL_STATE(1758)] = 51972, + [SMALL_STATE(1759)] = 51986, + [SMALL_STATE(1760)] = 52000, + [SMALL_STATE(1761)] = 52010, + [SMALL_STATE(1762)] = 52024, + [SMALL_STATE(1763)] = 52038, + [SMALL_STATE(1764)] = 52052, + [SMALL_STATE(1765)] = 52066, + [SMALL_STATE(1766)] = 52080, + [SMALL_STATE(1767)] = 52092, + [SMALL_STATE(1768)] = 52106, + [SMALL_STATE(1769)] = 52120, + [SMALL_STATE(1770)] = 52134, + [SMALL_STATE(1771)] = 52148, + [SMALL_STATE(1772)] = 52162, + [SMALL_STATE(1773)] = 52176, + [SMALL_STATE(1774)] = 52188, + [SMALL_STATE(1775)] = 52200, + [SMALL_STATE(1776)] = 52214, + [SMALL_STATE(1777)] = 52228, + [SMALL_STATE(1778)] = 52240, + [SMALL_STATE(1779)] = 52254, + [SMALL_STATE(1780)] = 52268, + [SMALL_STATE(1781)] = 52282, + [SMALL_STATE(1782)] = 52296, + [SMALL_STATE(1783)] = 52308, + [SMALL_STATE(1784)] = 52322, + [SMALL_STATE(1785)] = 52334, + [SMALL_STATE(1786)] = 52348, + [SMALL_STATE(1787)] = 52360, + [SMALL_STATE(1788)] = 52374, + [SMALL_STATE(1789)] = 52388, + [SMALL_STATE(1790)] = 52402, + [SMALL_STATE(1791)] = 52416, + [SMALL_STATE(1792)] = 52430, + [SMALL_STATE(1793)] = 52444, + [SMALL_STATE(1794)] = 52456, + [SMALL_STATE(1795)] = 52470, + [SMALL_STATE(1796)] = 52484, + [SMALL_STATE(1797)] = 52498, + [SMALL_STATE(1798)] = 52512, + [SMALL_STATE(1799)] = 52526, + [SMALL_STATE(1800)] = 52540, + [SMALL_STATE(1801)] = 52554, + [SMALL_STATE(1802)] = 52565, + [SMALL_STATE(1803)] = 52574, + [SMALL_STATE(1804)] = 52583, + [SMALL_STATE(1805)] = 52594, + [SMALL_STATE(1806)] = 52605, + [SMALL_STATE(1807)] = 52614, + [SMALL_STATE(1808)] = 52625, + [SMALL_STATE(1809)] = 52636, + [SMALL_STATE(1810)] = 52647, + [SMALL_STATE(1811)] = 52658, + [SMALL_STATE(1812)] = 52669, + [SMALL_STATE(1813)] = 52680, + [SMALL_STATE(1814)] = 52691, + [SMALL_STATE(1815)] = 52702, + [SMALL_STATE(1816)] = 52713, + [SMALL_STATE(1817)] = 52724, + [SMALL_STATE(1818)] = 52733, + [SMALL_STATE(1819)] = 52744, + [SMALL_STATE(1820)] = 52755, + [SMALL_STATE(1821)] = 52764, + [SMALL_STATE(1822)] = 52775, + [SMALL_STATE(1823)] = 52786, + [SMALL_STATE(1824)] = 52797, + [SMALL_STATE(1825)] = 52808, + [SMALL_STATE(1826)] = 52819, + [SMALL_STATE(1827)] = 52830, + [SMALL_STATE(1828)] = 52841, + [SMALL_STATE(1829)] = 52852, + [SMALL_STATE(1830)] = 52863, + [SMALL_STATE(1831)] = 52872, + [SMALL_STATE(1832)] = 52883, + [SMALL_STATE(1833)] = 52892, + [SMALL_STATE(1834)] = 52903, + [SMALL_STATE(1835)] = 52912, + [SMALL_STATE(1836)] = 52921, + [SMALL_STATE(1837)] = 52932, + [SMALL_STATE(1838)] = 52941, + [SMALL_STATE(1839)] = 52952, + [SMALL_STATE(1840)] = 52963, + [SMALL_STATE(1841)] = 52974, + [SMALL_STATE(1842)] = 52985, + [SMALL_STATE(1843)] = 52994, + [SMALL_STATE(1844)] = 53003, + [SMALL_STATE(1845)] = 53012, + [SMALL_STATE(1846)] = 53021, + [SMALL_STATE(1847)] = 53030, + [SMALL_STATE(1848)] = 53039, + [SMALL_STATE(1849)] = 53050, + [SMALL_STATE(1850)] = 53061, + [SMALL_STATE(1851)] = 53070, + [SMALL_STATE(1852)] = 53081, + [SMALL_STATE(1853)] = 53092, + [SMALL_STATE(1854)] = 53103, + [SMALL_STATE(1855)] = 53114, + [SMALL_STATE(1856)] = 53123, + [SMALL_STATE(1857)] = 53134, + [SMALL_STATE(1858)] = 53145, + [SMALL_STATE(1859)] = 53156, + [SMALL_STATE(1860)] = 53167, + [SMALL_STATE(1861)] = 53178, + [SMALL_STATE(1862)] = 53189, + [SMALL_STATE(1863)] = 53200, + [SMALL_STATE(1864)] = 53211, + [SMALL_STATE(1865)] = 53222, + [SMALL_STATE(1866)] = 53233, + [SMALL_STATE(1867)] = 53244, + [SMALL_STATE(1868)] = 53255, + [SMALL_STATE(1869)] = 53266, + [SMALL_STATE(1870)] = 53277, + [SMALL_STATE(1871)] = 53288, + [SMALL_STATE(1872)] = 53299, + [SMALL_STATE(1873)] = 53310, + [SMALL_STATE(1874)] = 53319, + [SMALL_STATE(1875)] = 53330, + [SMALL_STATE(1876)] = 53341, + [SMALL_STATE(1877)] = 53350, + [SMALL_STATE(1878)] = 53361, + [SMALL_STATE(1879)] = 53372, + [SMALL_STATE(1880)] = 53383, + [SMALL_STATE(1881)] = 53394, + [SMALL_STATE(1882)] = 53405, + [SMALL_STATE(1883)] = 53416, + [SMALL_STATE(1884)] = 53427, + [SMALL_STATE(1885)] = 53438, + [SMALL_STATE(1886)] = 53449, + [SMALL_STATE(1887)] = 53460, + [SMALL_STATE(1888)] = 53469, + [SMALL_STATE(1889)] = 53478, + [SMALL_STATE(1890)] = 53489, + [SMALL_STATE(1891)] = 53500, + [SMALL_STATE(1892)] = 53511, + [SMALL_STATE(1893)] = 53520, + [SMALL_STATE(1894)] = 53531, + [SMALL_STATE(1895)] = 53542, + [SMALL_STATE(1896)] = 53553, + [SMALL_STATE(1897)] = 53564, + [SMALL_STATE(1898)] = 53575, + [SMALL_STATE(1899)] = 53586, + [SMALL_STATE(1900)] = 53597, + [SMALL_STATE(1901)] = 53608, + [SMALL_STATE(1902)] = 53617, + [SMALL_STATE(1903)] = 53626, + [SMALL_STATE(1904)] = 53635, + [SMALL_STATE(1905)] = 53646, + [SMALL_STATE(1906)] = 53657, + [SMALL_STATE(1907)] = 53666, + [SMALL_STATE(1908)] = 53675, + [SMALL_STATE(1909)] = 53686, + [SMALL_STATE(1910)] = 53695, + [SMALL_STATE(1911)] = 53704, + [SMALL_STATE(1912)] = 53715, + [SMALL_STATE(1913)] = 53726, + [SMALL_STATE(1914)] = 53737, + [SMALL_STATE(1915)] = 53748, + [SMALL_STATE(1916)] = 53759, + [SMALL_STATE(1917)] = 53770, + [SMALL_STATE(1918)] = 53781, + [SMALL_STATE(1919)] = 53792, + [SMALL_STATE(1920)] = 53803, + [SMALL_STATE(1921)] = 53816, + [SMALL_STATE(1922)] = 53827, + [SMALL_STATE(1923)] = 53838, + [SMALL_STATE(1924)] = 53849, + [SMALL_STATE(1925)] = 53860, + [SMALL_STATE(1926)] = 53871, + [SMALL_STATE(1927)] = 53882, + [SMALL_STATE(1928)] = 53893, + [SMALL_STATE(1929)] = 53902, + [SMALL_STATE(1930)] = 53911, + [SMALL_STATE(1931)] = 53922, + [SMALL_STATE(1932)] = 53931, + [SMALL_STATE(1933)] = 53942, + [SMALL_STATE(1934)] = 53953, + [SMALL_STATE(1935)] = 53964, + [SMALL_STATE(1936)] = 53973, + [SMALL_STATE(1937)] = 53982, + [SMALL_STATE(1938)] = 53993, + [SMALL_STATE(1939)] = 54002, + [SMALL_STATE(1940)] = 54013, + [SMALL_STATE(1941)] = 54024, + [SMALL_STATE(1942)] = 54035, + [SMALL_STATE(1943)] = 54046, + [SMALL_STATE(1944)] = 54057, + [SMALL_STATE(1945)] = 54066, + [SMALL_STATE(1946)] = 54077, + [SMALL_STATE(1947)] = 54088, + [SMALL_STATE(1948)] = 54097, + [SMALL_STATE(1949)] = 54108, + [SMALL_STATE(1950)] = 54119, + [SMALL_STATE(1951)] = 54130, + [SMALL_STATE(1952)] = 54141, + [SMALL_STATE(1953)] = 54150, + [SMALL_STATE(1954)] = 54161, + [SMALL_STATE(1955)] = 54172, + [SMALL_STATE(1956)] = 54183, + [SMALL_STATE(1957)] = 54194, + [SMALL_STATE(1958)] = 54205, + [SMALL_STATE(1959)] = 54214, + [SMALL_STATE(1960)] = 54223, + [SMALL_STATE(1961)] = 54234, + [SMALL_STATE(1962)] = 54245, + [SMALL_STATE(1963)] = 54254, + [SMALL_STATE(1964)] = 54265, + [SMALL_STATE(1965)] = 54274, + [SMALL_STATE(1966)] = 54285, + [SMALL_STATE(1967)] = 54296, + [SMALL_STATE(1968)] = 54307, + [SMALL_STATE(1969)] = 54318, + [SMALL_STATE(1970)] = 54329, + [SMALL_STATE(1971)] = 54338, + [SMALL_STATE(1972)] = 54347, + [SMALL_STATE(1973)] = 54358, + [SMALL_STATE(1974)] = 54369, + [SMALL_STATE(1975)] = 54380, + [SMALL_STATE(1976)] = 54391, + [SMALL_STATE(1977)] = 54402, + [SMALL_STATE(1978)] = 54413, + [SMALL_STATE(1979)] = 54422, + [SMALL_STATE(1980)] = 54431, + [SMALL_STATE(1981)] = 54442, + [SMALL_STATE(1982)] = 54453, + [SMALL_STATE(1983)] = 54464, + [SMALL_STATE(1984)] = 54473, + [SMALL_STATE(1985)] = 54482, + [SMALL_STATE(1986)] = 54490, + [SMALL_STATE(1987)] = 54498, + [SMALL_STATE(1988)] = 54506, + [SMALL_STATE(1989)] = 54514, + [SMALL_STATE(1990)] = 54522, + [SMALL_STATE(1991)] = 54530, + [SMALL_STATE(1992)] = 54538, + [SMALL_STATE(1993)] = 54546, + [SMALL_STATE(1994)] = 54554, + [SMALL_STATE(1995)] = 54562, + [SMALL_STATE(1996)] = 54570, + [SMALL_STATE(1997)] = 54578, + [SMALL_STATE(1998)] = 54586, + [SMALL_STATE(1999)] = 54594, + [SMALL_STATE(2000)] = 54602, + [SMALL_STATE(2001)] = 54610, + [SMALL_STATE(2002)] = 54618, + [SMALL_STATE(2003)] = 54626, + [SMALL_STATE(2004)] = 54634, + [SMALL_STATE(2005)] = 54642, + [SMALL_STATE(2006)] = 54650, + [SMALL_STATE(2007)] = 54658, + [SMALL_STATE(2008)] = 54666, + [SMALL_STATE(2009)] = 54674, + [SMALL_STATE(2010)] = 54682, + [SMALL_STATE(2011)] = 54690, + [SMALL_STATE(2012)] = 54698, + [SMALL_STATE(2013)] = 54706, + [SMALL_STATE(2014)] = 54714, + [SMALL_STATE(2015)] = 54722, + [SMALL_STATE(2016)] = 54730, + [SMALL_STATE(2017)] = 54738, + [SMALL_STATE(2018)] = 54746, + [SMALL_STATE(2019)] = 54754, + [SMALL_STATE(2020)] = 54762, + [SMALL_STATE(2021)] = 54770, + [SMALL_STATE(2022)] = 54778, + [SMALL_STATE(2023)] = 54786, + [SMALL_STATE(2024)] = 54794, + [SMALL_STATE(2025)] = 54802, + [SMALL_STATE(2026)] = 54810, + [SMALL_STATE(2027)] = 54818, + [SMALL_STATE(2028)] = 54826, + [SMALL_STATE(2029)] = 54834, + [SMALL_STATE(2030)] = 54842, + [SMALL_STATE(2031)] = 54850, + [SMALL_STATE(2032)] = 54858, + [SMALL_STATE(2033)] = 54866, + [SMALL_STATE(2034)] = 54874, + [SMALL_STATE(2035)] = 54882, + [SMALL_STATE(2036)] = 54890, + [SMALL_STATE(2037)] = 54898, + [SMALL_STATE(2038)] = 54906, + [SMALL_STATE(2039)] = 54914, + [SMALL_STATE(2040)] = 54922, + [SMALL_STATE(2041)] = 54930, + [SMALL_STATE(2042)] = 54938, + [SMALL_STATE(2043)] = 54946, + [SMALL_STATE(2044)] = 54954, + [SMALL_STATE(2045)] = 54962, + [SMALL_STATE(2046)] = 54970, + [SMALL_STATE(2047)] = 54978, + [SMALL_STATE(2048)] = 54986, + [SMALL_STATE(2049)] = 54994, + [SMALL_STATE(2050)] = 55002, + [SMALL_STATE(2051)] = 55010, + [SMALL_STATE(2052)] = 55018, + [SMALL_STATE(2053)] = 55026, + [SMALL_STATE(2054)] = 55034, + [SMALL_STATE(2055)] = 55042, + [SMALL_STATE(2056)] = 55050, + [SMALL_STATE(2057)] = 55058, + [SMALL_STATE(2058)] = 55066, + [SMALL_STATE(2059)] = 55074, + [SMALL_STATE(2060)] = 55082, + [SMALL_STATE(2061)] = 55090, + [SMALL_STATE(2062)] = 55098, + [SMALL_STATE(2063)] = 55106, + [SMALL_STATE(2064)] = 55114, + [SMALL_STATE(2065)] = 55122, + [SMALL_STATE(2066)] = 55130, + [SMALL_STATE(2067)] = 55138, + [SMALL_STATE(2068)] = 55146, + [SMALL_STATE(2069)] = 55154, + [SMALL_STATE(2070)] = 55162, + [SMALL_STATE(2071)] = 55170, + [SMALL_STATE(2072)] = 55178, + [SMALL_STATE(2073)] = 55186, + [SMALL_STATE(2074)] = 55194, + [SMALL_STATE(2075)] = 55202, + [SMALL_STATE(2076)] = 55210, + [SMALL_STATE(2077)] = 55218, + [SMALL_STATE(2078)] = 55226, + [SMALL_STATE(2079)] = 55234, + [SMALL_STATE(2080)] = 55242, + [SMALL_STATE(2081)] = 55250, + [SMALL_STATE(2082)] = 55258, + [SMALL_STATE(2083)] = 55266, + [SMALL_STATE(2084)] = 55274, + [SMALL_STATE(2085)] = 55282, + [SMALL_STATE(2086)] = 55290, + [SMALL_STATE(2087)] = 55298, + [SMALL_STATE(2088)] = 55306, + [SMALL_STATE(2089)] = 55314, + [SMALL_STATE(2090)] = 55322, + [SMALL_STATE(2091)] = 55330, + [SMALL_STATE(2092)] = 55338, + [SMALL_STATE(2093)] = 55346, + [SMALL_STATE(2094)] = 55354, + [SMALL_STATE(2095)] = 55362, + [SMALL_STATE(2096)] = 55370, + [SMALL_STATE(2097)] = 55378, + [SMALL_STATE(2098)] = 55386, + [SMALL_STATE(2099)] = 55394, + [SMALL_STATE(2100)] = 55402, + [SMALL_STATE(2101)] = 55410, + [SMALL_STATE(2102)] = 55418, + [SMALL_STATE(2103)] = 55426, + [SMALL_STATE(2104)] = 55434, + [SMALL_STATE(2105)] = 55442, + [SMALL_STATE(2106)] = 55450, + [SMALL_STATE(2107)] = 55458, + [SMALL_STATE(2108)] = 55466, + [SMALL_STATE(2109)] = 55474, + [SMALL_STATE(2110)] = 55482, + [SMALL_STATE(2111)] = 55490, + [SMALL_STATE(2112)] = 55498, + [SMALL_STATE(2113)] = 55506, + [SMALL_STATE(2114)] = 55514, + [SMALL_STATE(2115)] = 55522, + [SMALL_STATE(2116)] = 55530, + [SMALL_STATE(2117)] = 55538, + [SMALL_STATE(2118)] = 55546, + [SMALL_STATE(2119)] = 55554, + [SMALL_STATE(2120)] = 55562, + [SMALL_STATE(2121)] = 55570, + [SMALL_STATE(2122)] = 55578, + [SMALL_STATE(2123)] = 55586, + [SMALL_STATE(2124)] = 55594, + [SMALL_STATE(2125)] = 55602, + [SMALL_STATE(2126)] = 55610, + [SMALL_STATE(2127)] = 55618, + [SMALL_STATE(2128)] = 55626, + [SMALL_STATE(2129)] = 55634, + [SMALL_STATE(2130)] = 55642, + [SMALL_STATE(2131)] = 55650, + [SMALL_STATE(2132)] = 55658, + [SMALL_STATE(2133)] = 55666, + [SMALL_STATE(2134)] = 55674, + [SMALL_STATE(2135)] = 55682, + [SMALL_STATE(2136)] = 55690, + [SMALL_STATE(2137)] = 55698, + [SMALL_STATE(2138)] = 55706, + [SMALL_STATE(2139)] = 55714, + [SMALL_STATE(2140)] = 55722, + [SMALL_STATE(2141)] = 55730, + [SMALL_STATE(2142)] = 55738, + [SMALL_STATE(2143)] = 55746, + [SMALL_STATE(2144)] = 55754, + [SMALL_STATE(2145)] = 55762, + [SMALL_STATE(2146)] = 55770, + [SMALL_STATE(2147)] = 55778, + [SMALL_STATE(2148)] = 55786, + [SMALL_STATE(2149)] = 55794, + [SMALL_STATE(2150)] = 55802, + [SMALL_STATE(2151)] = 55810, + [SMALL_STATE(2152)] = 55818, + [SMALL_STATE(2153)] = 55826, + [SMALL_STATE(2154)] = 55834, + [SMALL_STATE(2155)] = 55842, + [SMALL_STATE(2156)] = 55850, + [SMALL_STATE(2157)] = 55858, + [SMALL_STATE(2158)] = 55866, + [SMALL_STATE(2159)] = 55874, + [SMALL_STATE(2160)] = 55882, + [SMALL_STATE(2161)] = 55890, + [SMALL_STATE(2162)] = 55898, + [SMALL_STATE(2163)] = 55906, + [SMALL_STATE(2164)] = 55914, + [SMALL_STATE(2165)] = 55922, + [SMALL_STATE(2166)] = 55930, + [SMALL_STATE(2167)] = 55938, + [SMALL_STATE(2168)] = 55946, + [SMALL_STATE(2169)] = 55954, + [SMALL_STATE(2170)] = 55962, + [SMALL_STATE(2171)] = 55970, + [SMALL_STATE(2172)] = 55978, + [SMALL_STATE(2173)] = 55986, + [SMALL_STATE(2174)] = 55994, + [SMALL_STATE(2175)] = 56002, + [SMALL_STATE(2176)] = 56010, + [SMALL_STATE(2177)] = 56018, + [SMALL_STATE(2178)] = 56026, + [SMALL_STATE(2179)] = 56034, + [SMALL_STATE(2180)] = 56042, + [SMALL_STATE(2181)] = 56050, + [SMALL_STATE(2182)] = 56058, + [SMALL_STATE(2183)] = 56066, + [SMALL_STATE(2184)] = 56074, + [SMALL_STATE(2185)] = 56082, + [SMALL_STATE(2186)] = 56090, + [SMALL_STATE(2187)] = 56098, + [SMALL_STATE(2188)] = 56106, + [SMALL_STATE(2189)] = 56114, + [SMALL_STATE(2190)] = 56122, + [SMALL_STATE(2191)] = 56130, + [SMALL_STATE(2192)] = 56138, + [SMALL_STATE(2193)] = 56146, + [SMALL_STATE(2194)] = 56154, + [SMALL_STATE(2195)] = 56162, + [SMALL_STATE(2196)] = 56170, + [SMALL_STATE(2197)] = 56178, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -102514,2333 +105255,2336 @@ 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), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(623), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(287), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(584), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(532), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1870), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(49), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2184), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1628), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1945), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1383), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(622), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(771), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1525), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2144), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1941), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(457), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(55), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(517), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(451), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(118), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1262), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1579), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2129), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2128), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(929), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(48), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1969), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(150), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1966), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(518), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2122), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(97), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(421), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(17), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1965), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(741), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1554), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 128), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 128), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__expression_except_range, 1, .production_id = 2), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 2), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 2), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__expression_except_range, 1, .production_id = 2), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 29), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 29), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 64), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 64), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 32), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 32), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block, 2), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block, 2), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block, 3, .production_id = 116), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block, 3, .production_id = 116), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 4), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 4), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 185), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 185), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_item, 3, .production_id = 34), - [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_item, 3, .production_id = 34), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(623), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(584), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(532), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(42), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(49), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(6), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2184), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1904), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1897), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(622), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(723), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(469), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(62), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(119), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2094), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(52), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(150), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1914), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(518), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2122), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(97), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(421), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(17), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1965), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(741), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1554), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(695), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(697), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(697), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 99), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 99), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 149), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 149), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 56), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 56), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 84), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 84), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 127), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 127), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 56), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 56), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 125), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 125), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 55), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 55), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 56), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 56), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 125), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 125), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 197), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 197), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 5), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 5), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 126), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 126), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 99), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 99), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 198), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 198), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 84), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 84), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 4, .production_id = 50), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 4, .production_id = 50), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 4, .production_id = 50), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 4, .production_id = 50), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_item, 3, .production_id = 14), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_item, 3, .production_id = 14), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 199), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 199), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 192), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 192), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 2), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 2), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 200), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 200), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 4, .production_id = 83), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 4, .production_id = 83), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 3, .production_id = 7), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 3, .production_id = 7), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 125), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 125), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 3, .production_id = 7), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 3, .production_id = 7), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 134), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 134), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 3, .production_id = 17), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 3, .production_id = 17), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 84), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 84), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 201), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 201), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 202), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 202), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 192), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 192), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 5, .production_id = 123), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 5, .production_id = 123), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 85), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 85), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 197), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 197), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 203), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 203), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 204), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 204), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 201), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 201), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 205), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 205), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 4, .production_id = 53), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 4, .production_id = 53), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 4, .production_id = 52), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 4, .production_id = 52), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 139), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 139), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 2, .production_id = 4), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 2, .production_id = 4), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 142), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 142), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 107), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 107), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 3), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 3), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 2), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 2), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 55), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 55), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 5, .production_id = 122), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 5, .production_id = 122), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_item, 4, .production_id = 51), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_item, 4, .production_id = 51), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 193), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 193), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 57), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 57), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 121), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 121), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 147), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 147), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 56), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 56), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 74), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 74), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 55), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 55), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 148), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 148), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 84), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 84), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 120), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 120), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 86), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 86), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 194), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 194), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 70), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 70), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 195), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 195), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 56), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 56), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 153), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 153), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 182), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 182), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 24), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 24), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_type, 4, .production_id = 50), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_type, 4, .production_id = 50), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 26), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 26), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_type, 2), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_type, 2), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 190), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 190), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 73), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 73), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 28), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 28), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 155), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 155), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 72), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 72), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 189), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 189), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 24), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 24), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 156), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 156), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 8), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 8), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 188), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 188), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 70), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 70), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 186), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 186), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 120), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 120), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 157), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 157), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 158), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 158), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 159), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 159), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 160), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 160), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 166), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 166), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 125), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 125), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 57), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 57), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 160), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 160), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 164), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 164), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 31), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 31), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 196), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 196), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 3), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 3), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 165), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 165), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 113), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 113), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_item, 2, .production_id = 4), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_item, 2, .production_id = 4), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configurable_item, 2, .production_id = 4), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_configurable_item, 2, .production_id = 4), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 167), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 167), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 133), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 133), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 168), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 168), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 58), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 58), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 184), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 184), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 183), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 183), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 141), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 141), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 181), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 181), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 171), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 171), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 125), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 125), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 110), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 110), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 180), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 180), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 143), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 143), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 172), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 172), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 173), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 173), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 174), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 174), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 155), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 155), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 4), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 4), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 90), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 90), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 3, .production_id = 40), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 3, .production_id = 40), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 175), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 175), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 5), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 5), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dep_item, 3), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dep_item, 3), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(962), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(973), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(967), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(424), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(422), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1902), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1036), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2093), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(518), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2048), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1239), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(458), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(455), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(454), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1243), - [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1985), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(452), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1196), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1514), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1090), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1577), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1577), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(419), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(488), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(489), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(433), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(432), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(431), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(419), - [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(486), - [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1548), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(490), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2093), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 4), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 4), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 6), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 6), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 22), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 22), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 23), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 23), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 6), REDUCE(sym__expression_except_range, 1), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 6), REDUCE(sym__expression_except_range, 1), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 38), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 39), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 38), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 39), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 48), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 8), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 27), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 27), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 25), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 25), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 18), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 18), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 37), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 42), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 19), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 19), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 48), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 46), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 46), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 16), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 47), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 47), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 140), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 140), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 24), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 24), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 68), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 68), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 68), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 68), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 129), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 129), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 138), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 138), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_call_expression, 3, .production_id = 49), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_call_expression, 3, .production_id = 49), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 11), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 11), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 10), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 10), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 109), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 109), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 118), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 118), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 87), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 87), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_instance_expression, 2, .production_id = 3), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_instance_expression, 2, .production_id = 3), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 65), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 65), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage, 3), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage, 3), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 34), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 13), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 45), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 45), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 45), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 45), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 35), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 35), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 9), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 9), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), - [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), - [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), - [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 149), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 149), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 149), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 99), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 99), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 99), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1), - [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_unit_expression, 2), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unit_type, 2), REDUCE(sym_unit_expression, 2), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameter, 3, .production_id = 82), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 149), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 154), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 99), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content, 3, .production_id = 35), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 115), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 35), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 119), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 99), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2149), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 66), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 66), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 66), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 66), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 66), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 66), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1105), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1516), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1515), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2022), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1859), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(526), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(447), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1262), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2027), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2028), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(928), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1987), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1976), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 112), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 112), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 6), REDUCE(sym__pattern, 1), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 63), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 63), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 59), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 59), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 60), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 60), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deref_pattern, 2), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deref_pattern, 2), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 60), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 60), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 61), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 61), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 60), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 60), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 61), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 61), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 60), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 60), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 60), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 60), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 60), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 60), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 60), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 60), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 61), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 61), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 60), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 60), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 61), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 61), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 70), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 60), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 60), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(514), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2041), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(991), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(188), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 66), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(515), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 2, .production_id = 117), SHIFT_REPEAT(1527), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 2, .production_id = 117), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dep_item_repeat1, 2), - [3721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dep_item_repeat1, 2), SHIFT_REPEAT(2127), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 130), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameter, 1, .production_id = 33), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 3), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 1), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1544), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1547), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 89), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(842), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(448), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 68), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 170), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 169), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(189), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 91), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(481), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(77), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 67), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 62), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_parameters_repeat1, 2), - [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_parameters_repeat1, 2), SHIFT_REPEAT(445), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 90), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_item_repeat1, 2), - [4052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_item_repeat1, 2), SHIFT_REPEAT(955), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 187), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1329), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 177), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_storage_content_list_repeat1, 2), - [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_storage_content_list_repeat1, 2), SHIFT_REPEAT(1474), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1388), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 2), SHIFT_REPEAT(1527), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 2), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(932), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 137), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 30), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 7), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 24), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 67), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 92), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(547), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 110), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 152), - [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 152), SHIFT_REPEAT(503), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 82), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 54), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(427), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1341), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 135), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 131), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dep_item_repeat1, 2), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1353), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(168), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_content, 1), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 136), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1298), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 68), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 1, .production_id = 80), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 3), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 191), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 151), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 5), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 79), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 24), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 151), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 191), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 177), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 176), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 4), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 177), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 24), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 81), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 68), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 176), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 150), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 5), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 4), - [4739] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 3), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 2), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(631), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(230), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(620), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(619), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(44), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1920), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2197), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1674), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(16), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1805), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1379), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(632), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(783), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2184), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2154), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1844), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(465), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(523), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(443), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(149), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1251), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1764), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2149), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2146), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2145), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(910), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(75), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1858), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(168), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1859), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(522), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2133), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(94), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(425), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1864), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(685), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1490), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(670), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(676), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(676), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 19), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 19), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__expression_except_range, 1, .production_id = 2), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 2), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 2), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__expression_except_range, 1, .production_id = 2), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 60), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 60), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 28), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 28), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block, 3, .production_id = 112), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block, 3, .production_id = 112), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 93), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 93), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_item, 3, .production_id = 33), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_item, 3, .production_id = 33), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 4), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 4), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block, 2), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block, 2), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 122), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 122), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 183), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 183), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(631), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(620), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(619), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(44), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(65), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(11), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2197), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1881), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(16), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1883), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(632), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(671), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(451), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(63), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(156), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2109), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(69), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(168), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1977), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(522), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2133), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(94), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(425), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1864), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(685), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1490), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(670), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(676), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(676), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 94), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 94), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 144), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 144), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 199), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 199), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 3), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 3), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 54), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 54), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 184), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 184), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 163), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 163), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 53), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 53), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 143), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 143), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 142), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 142), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 141), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 141), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 102), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 102), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 139), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 139), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 138), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 138), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 23), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 23), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 137), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 137), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 187), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 187), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 136), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 136), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 134), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 134), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 98), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 98), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 69), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 69), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_item, 3, .production_id = 14), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_item, 3, .production_id = 14), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 2), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 2), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 182), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 182), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 160), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 160), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 181), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 181), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 52), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 52), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 3, .production_id = 7), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 3, .production_id = 7), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 148), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 148), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 149), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 149), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 52), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 52), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 7), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 7), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 70), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 70), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 159), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 159), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 52), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 52), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 52), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 52), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 151), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 151), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_item, 2, .production_id = 4), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_item, 2, .production_id = 4), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 3), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 3), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 129), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 129), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_item, 4, .production_id = 49), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_item, 4, .production_id = 49), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 127), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 127), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 152), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 152), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 89), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 89), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 116), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 116), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 179), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 179), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 153), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 153), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 154), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 154), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 178), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 178), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 119), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 119), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 177), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 177), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 155), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 155), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 5), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 5), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 156), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 156), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 79), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 79), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 119), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 119), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 203), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 203), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 156), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 156), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 175), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 175), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 157), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 157), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 156), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 156), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 151), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 151), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 119), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 119), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 4, .production_id = 48), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 4, .production_id = 48), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 118), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 118), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 119), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 119), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 120), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 120), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 118), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 118), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 79), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 79), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 158), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 158), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 119), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 119), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_type, 4, .production_id = 48), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_type, 4, .production_id = 48), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 118), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 118), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 117), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 117), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 116), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 116), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 48), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 48), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 188), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 188), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 79), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 79), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 202), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 202), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 160), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 160), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 201), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 201), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 80), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 80), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 79), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 79), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 25), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 25), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 5), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 5), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 79), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 79), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 81), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 81), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 161), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 161), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 27), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 27), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 172), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 172), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 171), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 171), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 110), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 110), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 162), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 162), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 109), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 109), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 88), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 88), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 8), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 8), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 170), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 170), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 195), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 195), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 108), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 108), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 88), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 88), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 52), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 52), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 200), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 200), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 199), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 199), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 198), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 198), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 190), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 190), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 190), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 190), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 197), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 197), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 4), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 4), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 191), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 191), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 85), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 85), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 169), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 169), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 86), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 86), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 196), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 196), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 106), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 106), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 94), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 94), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 88), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 88), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 105), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 105), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 164), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 164), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 128), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 128), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 165), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 165), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 101), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 101), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 195), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 195), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 99), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 99), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 98), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 98), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 138), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 138), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 168), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 168), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configurable_item, 2, .production_id = 4), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_configurable_item, 2, .production_id = 4), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_type, 2), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_type, 2), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 136), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 136), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 186), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 186), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 194), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 194), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 192), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 192), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 89), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 89), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 90), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 90), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 53), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 53), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 91), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 91), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 180), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 180), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 193), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 193), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(966), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(975), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(968), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(427), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(428), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1866), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1174), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2107), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(522), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2095), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1226), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(463), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(442), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(455), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1225), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1906), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(454), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1198), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1514), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1183), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1677), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1677), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(412), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(480), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(485), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(431), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(432), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(433), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(412), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(481), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1519), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2107), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 4), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 4), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 6), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 6), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 22), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 22), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 38), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 38), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 36), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 26), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 26), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 37), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 37), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 20), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 20), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 18), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 18), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 16), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 6), REDUCE(sym__expression_except_range, 1), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 6), REDUCE(sym__expression_except_range, 1), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 8), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_instance_expression, 2, .production_id = 3), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_instance_expression, 2, .production_id = 3), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage, 3), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage, 3), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 61), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 61), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 114), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 114), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 64), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 64), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 123), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 123), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 64), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 64), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 10), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 10), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 82), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 82), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 83), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 83), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_call_expression, 3, .production_id = 47), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_call_expression, 3, .production_id = 47), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 135), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 135), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 23), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 23), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 11), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 11), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 12), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 12), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 104), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 104), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 133), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 133), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 94), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 94), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 94), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 144), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 144), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 144), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 95), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 95), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 33), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 9), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 9), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 34), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 34), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 13), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameter, 3, .production_id = 78), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_unit_expression, 2), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unit_type, 2), REDUCE(sym_unit_expression, 2), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 115), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2155), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content, 4, .production_id = 125), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 94), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content, 3, .production_id = 34), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 150), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 111), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 34), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 144), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 94), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1098), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1552), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1496), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2023), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2024), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1843), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(520), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(456), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1251), + [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2029), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2030), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2189), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(931), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1976), + [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1857), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 107), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 107), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 6), REDUCE(sym__pattern, 1), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 59), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 59), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 57), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 57), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 56), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 56), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 57), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 57), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 57), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 57), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 57), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 57), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deref_pattern, 2), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deref_pattern, 2), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 56), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 56), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 66), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(506), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 62), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(509), + [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1026), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(189), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1535), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 2, .production_id = 113), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2042), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 3), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(801), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 124), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1528), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 1), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameter, 1, .production_id = 32), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1540), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 84), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(459), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 58), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_storage_content_list_repeat1, 2), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_storage_content_list_repeat1, 2), SHIFT_REPEAT(1325), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 7), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 87), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 72), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 92), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 78), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(563), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 50), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 96), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1429), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 97), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(164), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_content, 1), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(82), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(917), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_item_repeat1, 2), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_item_repeat1, 2), SHIFT_REPEAT(960), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_parameters_repeat1, 2), + [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_parameters_repeat1, 2), SHIFT_REPEAT(434), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 29), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 2), SHIFT_REPEAT(1535), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 2), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 105), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1313), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 126), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1342), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(190), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 130), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 131), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1337), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 132), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(477), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 85), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 23), + [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(439), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 147), + [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 147), SHIFT_REPEAT(498), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1338), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 71), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 73), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 86), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 74), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 166), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 167), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 174), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 64), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 185), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 174), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 4), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 146), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 173), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 173), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 174), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 189), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 64), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 189), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 5), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 146), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 23), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 64), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 75), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 3), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 1, .production_id = 76), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 77), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 23), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 3), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 4), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 2), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 145), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 5), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4738] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), }; #ifdef __cplusplus